Ce produit n'est pas pris en charge par le site Datadog que vous avez sélectionné. ().
Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

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");
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains