File tree Expand file tree Collapse file tree
java/ql/src/semmle/code/java/dataflow Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/**
22 * Provides classes for performing local (intra-procedural) and
33 * global (inter-procedural) taint-tracking analyses.
4- *
5- * We define _taint propagation_ informally to mean that a substantial part of
6- * the information from the source is preserved at the sink. For example, taint
7- * propagates from `x` to `x + 100`, but it does not propagate from `x` to `x >
8- * 100` since we consider a single bit of information to be too little.
94 */
105import semmle.code.java.dataflow.DataFlow
116import semmle.code.java.dataflow.DataFlow2
Original file line number Diff line number Diff line change 11/**
22 * Provides classes for performing local (intra-procedural) and
33 * global (inter-procedural) taint-tracking analyses.
4- *
5- * We define _taint propagation_ informally to mean that a substantial part of
6- * the information from the source is preserved at the sink. For example, taint
7- * propagates from `x` to `x + 100`, but it does not propagate from `x` to `x >
8- * 100` since we consider a single bit of information to be too little.
94 */
105module TaintTracking2 {
116 import semmle.code.java.dataflow.internal.tainttracking2.TaintTrackingImpl
You can’t perform that action at this time.
0 commit comments