File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
python/ql/src/experimental/semmle/python Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,21 @@ private import semmle.python.dataflow.new.DataFlow
13
13
private import semmle.python.dataflow.new.RemoteFlowSources
14
14
private import semmle.python.dataflow.new.TaintTracking
15
15
private import experimental.semmle.python.Frameworks
16
+
17
+ module LDAPBind {
18
+ abstract class Range extends DataFlow:: Node {
19
+ abstract DataFlow:: Node getPasswordNode ( ) ;
20
+
21
+ abstract DataFlow:: Node getQueryNode ( ) ;
22
+ }
23
+ }
24
+
25
+ class LDAPBind extends DataFlow:: Node {
26
+ LDAPBind:: Range range ;
27
+
28
+ LDAPBind ( ) { this = range }
29
+
30
+ DataFlow:: Node getPasswordNode ( ) { result = range .getPasswordNode ( ) }
31
+
32
+ DataFlow:: Node getQueryNode ( ) { result = range .getQueryNode ( ) }
33
+ }
You can’t perform that action at this time.
0 commit comments