We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcc2b2c commit 4dde1fbCopy full SHA for 4dde1fb
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