mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
29 lines
468 B
JavaScript
29 lines
468 B
JavaScript
password;
|
|
PassWord;
|
|
myPasswordInCleartext;
|
|
x.password;
|
|
getPassword();
|
|
x.getPassword();
|
|
get("password");
|
|
x.get("password");
|
|
|
|
hashed_password;
|
|
password_hashed;
|
|
password_hash;
|
|
hash_password;
|
|
hashedPassword;
|
|
|
|
var exit = require('exit');
|
|
var e = process.exit;
|
|
e();
|
|
exit();
|
|
|
|
secret;
|
|
|
|
require("process").exit();
|
|
global.process.exit();
|
|
|
|
get("https://example.com/news?password=true")
|
|
get("https://username:password@example.com")
|
|
execute("SELECT * FROM users WHERE password=?")
|