We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5be75e9 + 4dde1fb commit 8e43c5cCopy full SHA for 8e43c5c
1 file changed
go/ql/lib/semmle/go/security/SensitiveActions.qll
@@ -233,6 +233,7 @@ module PasswordHeuristics {
233
predicate isDummyPassword(string password) {
234
password.length() < 4
235
or
236
+ password.length() <= 100 and
237
count(password.charAt(_)) <= 2 // aaaaaaaa or bBbBbB or ghghghghghgh or the like
238
239
password
0 commit comments