We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c34230 commit c2b96b3Copy full SHA for c2b96b3
python/ql/src/experimental/semmle/python/Concepts.qll
@@ -41,6 +41,9 @@ class LDAPQuery extends DataFlow::Node {
41
42
LDAPQuery() { this = range }
43
44
+ /**
45
+ * Gets the argument containing the executed expression.
46
+ */
47
DataFlow::Node getLDAPNode() { result = range.getLDAPNode() }
48
}
49
@@ -71,5 +74,8 @@ class LDAPEscape extends DataFlow::Node {
71
74
72
75
LDAPEscape() { this = range }
73
76
77
78
+ * Gets the argument containing the escaped expression.
79
80
DataFlow::Node getEscapeNode() { result = range.getEscapeNode() }
81
0 commit comments