Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b44ee5 commit bfb138dCopy full SHA for bfb138d
1 file changed
java/ql/src/experimental/Security/CWE/CWE-555/PasswordInConfigurationFile.ql
@@ -11,7 +11,7 @@
11
12
import java
13
14
-/* Holds if the attribute value is not a cleartext password */
+/** Holds if the attribute value is not a cleartext password */
15
bindingset[value]
16
predicate isNotPassword(string value) {
17
value = "" // Empty string
@@ -21,7 +21,7 @@ predicate isNotPassword(string value) {
21
value.matches("%=") // A basic check of encrypted passwords ending with padding characters, which could be improved to be more accurate.
22
}
23
24
-/* Holds if the attribute value has an embedded password */
+/** Holds if the attribute value has an embedded password */
25
26
predicate hasEmbeddedPassword(string value) {
27
exists(string password |
0 commit comments