Avoid SHA1 security protocol
This product is not supported for your selected
Datadog site. (
).
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、
お気軽にご連絡ください。
ID: javascript-node-security/avoid-crypto-sha1
Language: JavaScript
Severity: Warning
Category: Security
CWE: 328
Related CWEs:
Description
Use of insecure encryption or hashing protocols expose your application to vulnerabilities.
Learn More
Non-Compliant Code Examples
var hash = CryptoJS.HmacSHA1("Message", "Secret Passphrase");
var hash = CryptoJS.HmacSHA1("Message", "Secret Passphrase", anotherargument);
Compliant Code Examples
// Safe: using HmacSHA256 instead of HmacSHA1
var hash = CryptoJS.HmacSHA256("Message", "Secret Passphrase");
シームレスな統合。 Datadog Code Security をお試しください