File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
java/ql/lib/semmle/code/java/security Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ deprecated class FragmentInjectionTaintConf extends TaintTracking::Configuration
23
23
}
24
24
}
25
25
26
+ /**
27
+ * A taint-tracking configuration for unsafe user input
28
+ * that is used to create Android fragments dynamically.
29
+ */
26
30
module FragmentInjectionTaintConfig implements DataFlow:: ConfigSig {
27
31
predicate isSource ( DataFlow:: Node source ) { source instanceof RemoteFlowSource }
28
32
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ deprecated class LogInjectionConfiguration extends TaintTracking::Configuration
23
23
}
24
24
}
25
25
26
+ /**
27
+ * A taint-tracking configuration for tracking untrusted user input used in log entries.
28
+ */
26
29
module LogInjectionConfig implements DataFlow:: ConfigSig {
27
30
predicate isSource ( DataFlow:: Node source ) { source instanceof RemoteFlowSource }
28
31
You can’t perform that action at this time.
0 commit comments