Skip to content

Commit bfb138d

Browse files
committed
Update qldoc
1 parent 7b44ee5 commit bfb138d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/src/experimental/Security/CWE/CWE-555/PasswordInConfigurationFile.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import java
1313

14-
/* Holds if the attribute value is not a cleartext password */
14+
/** Holds if the attribute value is not a cleartext password */
1515
bindingset[value]
1616
predicate isNotPassword(string value) {
1717
value = "" // Empty string
@@ -21,7 +21,7 @@ predicate isNotPassword(string value) {
2121
value.matches("%=") // A basic check of encrypted passwords ending with padding characters, which could be improved to be more accurate.
2222
}
2323

24-
/* Holds if the attribute value has an embedded password */
24+
/** Holds if the attribute value has an embedded password */
2525
bindingset[value]
2626
predicate hasEmbeddedPassword(string value) {
2727
exists(string password |

0 commit comments

Comments
 (0)