mirror of
https://github.com/github/codeql.git
synced 2026-04-26 17:25:19 +02:00
JS: Add query IDs
This commit is contained in:
@@ -2,6 +2,6 @@ var express = require('express');
|
||||
|
||||
var app = express();
|
||||
app.get('/remember-password', function (req, res) {
|
||||
let pw = req.param("current_password"); // $ Source
|
||||
res.cookie("password", pw); // $ Alert - Setting a cookie value with cleartext sensitive data.
|
||||
let pw = req.param("current_password"); // $ Source[js/clear-text-storage-of-sensitive-data]
|
||||
res.cookie("password", pw); // $ Alert[js/clear-text-storage-of-sensitive-data] - Setting a cookie value with cleartext sensitive data.
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user