We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60a4a79 commit 84fd5f7Copy full SHA for 84fd5f7
java/ql/src/Security/CWE/CWE-022/ZipSlip.ql
@@ -34,7 +34,7 @@ class ArchiveEntryNameMethod extends Method {
34
}
35
36
37
-module ZipSlipConfiguration implements DataFlow::ConfigSig {
+module ZipSlipConfig implements DataFlow::ConfigSig {
38
predicate isSource(DataFlow::Node source) {
39
source.asExpr().(MethodAccess).getMethod() instanceof ArchiveEntryNameMethod
40
@@ -44,7 +44,7 @@ module ZipSlipConfiguration implements DataFlow::ConfigSig {
44
predicate isBarrier(DataFlow::Node node) { node instanceof PathInjectionSanitizer }
45
46
47
-module ZipSlipFlow = TaintTracking::Make<ZipSlipConfiguration>;
+module ZipSlipFlow = TaintTracking::Make<ZipSlipConfig>;
48
49
import ZipSlipFlow::PathGraph
50
0 commit comments