Skip to content

Commit d458464

Browse files
jorgectfRasmusWL
andauthored
Apply suggestions from code review
Co-authored-by: Rasmus Wriedt Larsen <[email protected]>
1 parent f02b6d6 commit d458464

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

python/ql/src/experimental/Security/CWE-522/LDAPInsecureAuth.ql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* @tags experimental
88
* security
99
* external/cwe/cwe-522
10+
* external/cwe/cwe-523
1011
*/
1112

1213
// determine precision above

python/ql/src/experimental/semmle/python/Concepts.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ module LDAPBind {
167167
abstract DataFlow::Node getPassword();
168168

169169
/**
170-
* Checks if the binding process use SSL.
170+
* Holds if the binding process use SSL.
171171
*/
172172
abstract predicate useSSL();
173173
}
@@ -195,7 +195,7 @@ class LDAPBind extends DataFlow::Node {
195195
DataFlow::Node getPassword() { result = range.getPassword() }
196196

197197
/**
198-
* Checks if the binding process use SSL.
198+
* Holds if the binding process use SSL.
199199
*/
200200
predicate useSSL() { range.useSSL() }
201201
}

0 commit comments

Comments
 (0)