We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f338ded commit 75162bbCopy full SHA for 75162bb
1 file changed
java/ql/test/query-tests/security/CWE-532/Test.java
@@ -28,7 +28,7 @@ void testHashSanitizer(String password, String authToken) {
28
logger.info("hash: " + hashPassword(password)); // Safe - hashed
29
logger.info("hash: " + sha256Digest(authToken)); // Safe - digested
30
logger.info("enc: " + encryptValue(password)); // Safe - encrypted
31
- logger.info("pw: " + password); // $ Alert - not hashed
+ logger.info("pw: " + password); // $ Alert // not hashed
32
}
33
34
static String hashPassword(String input) { return input; }
0 commit comments