We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2467f08 commit 662d7d5Copy full SHA for 662d7d5
javascript/ql/test/query-tests/Security/CWE-312/CleartextStorage.js
@@ -3,5 +3,5 @@ var express = require('express');
3
var app = express();
4
app.get('/remember-password', function (req, res) {
5
let pw = req.param("current_password");
6
- res.cookie("password", pw); // $ MISSING: Alert - Setting a cookie value with cleartext sensitive data.
+ res.cookie("password", pw); // $ Alert[js/clear-text-storage-of-sensitive-data] - Setting a cookie value with cleartext sensitive data.
7
});
0 commit comments