We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 576dbcb commit b54ff3bCopy full SHA for b54ff3b
1 file changed
javascript/ql/test/query-tests/Security/CWE-312/CleartextStorage2.js
@@ -4,7 +4,7 @@ var url = require('url');
4
var server = https.createServer(function(req, res) {
5
let pw = url.parse(req.url, true).query.current_password;
6
res.writeHead(200, {
7
- 'Set-Cookie': 'password=' + pw,
+ 'Set-Cookie': 'password=' + pw, // $ Alert[js/clear-text-storage-of-sensitive-data]
8
'Content-Type': 'text/plain'
9
});
10
0 commit comments