mirror of
https://github.com/github/codeql.git
synced 2026-01-27 13:23:00 +01:00
27 lines
977 B
Plaintext
27 lines
977 B
Plaintext
/**
|
|
* Provides a library for local (intra-procedural) and global (inter-procedural)
|
|
* data flow analysis: deciding whether data can flow from a _source_ to a
|
|
* _sink_.
|
|
*
|
|
* Unless configured otherwise, _flow_ means that the exact value of
|
|
* the source may reach the sink. We do not track flow across pointer
|
|
* dereferences or array indexing. To track these types of flow, where the
|
|
* exact value may not be preserved, import
|
|
* `semmle.python.dataflow.new.TaintTracking`.
|
|
*
|
|
* To use global (interprocedural) data flow, extend the class
|
|
* `DataFlow::Configuration` as documented on that class. To use local
|
|
* (intraprocedural) data flow, call `DataFlow::localFlow` or
|
|
* `DataFlow::localFlowStep` with arguments of type `DataFlow::Node`.
|
|
*/
|
|
|
|
private import python
|
|
|
|
/**
|
|
* Provides classes for performing local (intra-procedural) and
|
|
* global (inter-procedural) data flow analyses.
|
|
*/
|
|
module DataFlow3 {
|
|
import semmle.python.dataflow.new.internal.DataFlowImpl3
|
|
}
|