File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ import experimental.adaptivethreatmodeling.TaintedPathATM as TaintedPathATM
4
4
import experimental.adaptivethreatmodeling.XssATM as XssATM
5
5
import experimental.adaptivethreatmodeling.AdaptiveThreatModeling
6
6
7
- from string query , ATMConfig c , EndpointType e
7
+ from string queryName , ATMConfig c , EndpointType e
8
8
where
9
9
(
10
- query = "SqlInjectionATM.ql" and
10
+ queryName = "SqlInjectionATM.ql" and
11
11
c instanceof SqlInjectionATM:: SqlInjectionATMConfig
12
12
or
13
- query = "NosqlInjectionATM.ql" and
13
+ queryName = "NosqlInjectionATM.ql" and
14
14
c instanceof NosqlInjectionATM:: NosqlInjectionATMConfig
15
15
or
16
- query = "TaintedPathInjectionATM.ql" and
16
+ queryName = "TaintedPathInjectionATM.ql" and
17
17
c instanceof TaintedPathATM:: TaintedPathATMConfig
18
18
or
19
- query = "XssATM.ql" and c instanceof XssATM:: DomBasedXssATMConfig
19
+ queryName = "XssATM.ql" and c instanceof XssATM:: DomBasedXssATMConfig
20
20
) and
21
21
e = c .getASinkEndpointType ( )
22
- select query , e .toString ( ) as name , e . getEncoding ( ) as encoding
22
+ select queryName , e .toString ( ) as endpointType
You can’t perform that action at this time.
0 commit comments