File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
java/ql/lib/semmle/code/java/security Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ module UrlForwardFlowConfig implements DataFlow::ConfigSig {
12
12
predicate isSource ( DataFlow:: Node source ) {
13
13
source instanceof ThreatModelFlowSource and
14
14
// excluded due to FPs
15
- not exists ( MethodCall mc , Method m | mc . getMethod ( ) = m |
16
- (
17
- m instanceof HttpServletRequestGetRequestUriMethod or
18
- m instanceof HttpServletRequestGetRequestUrlMethod or
19
- m instanceof HttpServletRequestGetPathMethod
20
- ) and
15
+ not exists ( MethodCall mc , Method m |
16
+ m instanceof HttpServletRequestGetRequestUriMethod or
17
+ m instanceof HttpServletRequestGetRequestUrlMethod or
18
+ m instanceof HttpServletRequestGetPathMethod
19
+ |
20
+ mc . getMethod ( ) = m and
21
21
mc = source .asExpr ( )
22
22
)
23
23
}
You can’t perform that action at this time.
0 commit comments