You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: javascript/ql/experimental/adaptivethreatmodeling/lib/experimental/adaptivethreatmodeling/EndpointCharacteristics.qll
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -220,7 +220,7 @@ private class DomBasedXssSinkCharacteristic extends EndpointCharacteristic {
220
220
){
221
221
endpointClassinstanceofXssSinkTypeand
222
222
isPositiveIndicator=trueand
223
-
confidence=maximalConfidence()
223
+
confidence=this.maximalConfidence()
224
224
}
225
225
}
226
226
@@ -238,7 +238,7 @@ private class TaintedPathSinkCharacteristic extends EndpointCharacteristic {
238
238
){
239
239
endpointClassinstanceofTaintedPathSinkTypeand
240
240
isPositiveIndicator=trueand
241
-
confidence=maximalConfidence()
241
+
confidence=this.maximalConfidence()
242
242
}
243
243
}
244
244
@@ -256,7 +256,7 @@ private class SqlInjectionSinkCharacteristic extends EndpointCharacteristic {
256
256
){
257
257
endpointClassinstanceofSqlInjectionSinkTypeand
258
258
isPositiveIndicator=trueand
259
-
confidence=maximalConfidence()
259
+
confidence=this.maximalConfidence()
260
260
}
261
261
}
262
262
@@ -274,7 +274,7 @@ private class NosqlInjectionSinkCharacteristic extends EndpointCharacteristic {
274
274
){
275
275
endpointClassinstanceofNosqlInjectionSinkTypeand
276
276
isPositiveIndicator=trueand
277
-
confidence=maximalConfidence()
277
+
confidence=this.maximalConfidence()
278
278
}
279
279
}
280
280
@@ -296,7 +296,7 @@ private class ShellCommandInjectionFromEnvironmentSinkCharacteristic extends End
Copy file name to clipboardExpand all lines: javascript/ql/experimental/adaptivethreatmodeling/lib/experimental/adaptivethreatmodeling/EndpointTypes.qll
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ abstract class EndpointType extends TEndpointType {
24
24
*/
25
25
abstractintgetEncoding();
26
26
27
-
stringtoString(){result=getDescription()}
27
+
stringtoString(){result=this.getDescription()}
28
28
}
29
29
30
30
/** The `Negative` class that can be predicted by endpoint scoring models. */
Copy file name to clipboardExpand all lines: javascript/ql/experimental/adaptivethreatmodeling/lib/experimental/adaptivethreatmodeling/NosqlInjectionATM.qll
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ class NosqlInjectionAtmConfig extends AtmConfig {
33
33
sink.(NosqlInjection::Sink).getAFlowLabel()=label
34
34
or
35
35
// Allow effective sinks to have any taint label
36
-
isEffectiveSink(sink)
36
+
this.isEffectiveSink(sink)
37
37
}
38
38
39
39
overridepredicateisSanitizer(DataFlow::Nodenode){
@@ -49,11 +49,11 @@ class NosqlInjectionAtmConfig extends AtmConfig {
Copy file name to clipboardExpand all lines: javascript/ql/experimental/adaptivethreatmodeling/lib/experimental/adaptivethreatmodeling/TaintedPathATM.qll
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ class TaintedPathAtmConfig extends AtmConfig {
0 commit comments