Apply suggestions from code review

Co-authored-by: Rasmus Wriedt Larsen <rasmuswriedtlarsen@gmail.com>
This commit is contained in:
Jorge
2021-08-26 12:20:09 +02:00
committed by GitHub
parent f02b6d60a5
commit d458464e6b
2 changed files with 3 additions and 2 deletions

View File

@@ -7,6 +7,7 @@
* @tags experimental
* security
* external/cwe/cwe-522
* external/cwe/cwe-523
*/
// determine precision above

View File

@@ -167,7 +167,7 @@ module LDAPBind {
abstract DataFlow::Node getPassword();
/**
* Checks if the binding process use SSL.
* Holds if the binding process use SSL.
*/
abstract predicate useSSL();
}
@@ -195,7 +195,7 @@ class LDAPBind extends DataFlow::Node {
DataFlow::Node getPassword() { result = range.getPassword() }
/**
* Checks if the binding process use SSL.
* Holds if the binding process use SSL.
*/
predicate useSSL() { range.useSSL() }
}