File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
java/ql/src/experimental/Security/CWE/CWE-555 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11
11
12
12
import java
13
13
14
- /* Holds if the attribute value is not a cleartext password */
14
+ /** Holds if the attribute value is not a cleartext password */
15
15
bindingset [ value]
16
16
predicate isNotPassword ( string value ) {
17
17
value = "" // Empty string
@@ -21,7 +21,7 @@ predicate isNotPassword(string value) {
21
21
value .matches ( "%=" ) // A basic check of encrypted passwords ending with padding characters, which could be improved to be more accurate.
22
22
}
23
23
24
- /* Holds if the attribute value has an embedded password */
24
+ /** Holds if the attribute value has an embedded password */
25
25
bindingset [ value]
26
26
predicate hasEmbeddedPassword ( string value ) {
27
27
exists ( string password |
You can’t perform that action at this time.
0 commit comments