forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python: Minimal compilation of shared dataflow
- Loading branch information
Showing
15 changed files
with
7,302 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Provides classes for performing local (intra-procedural) and | ||
* global (inter-procedural) data flow analyses. | ||
*/ | ||
|
||
import python | ||
|
||
module DataFlow { | ||
import semmle.code.python.dataflow.internal.DataFlowImpl | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Provides classes for performing local (intra-procedural) and | ||
* global (inter-procedural) data flow analyses. | ||
*/ | ||
|
||
import python | ||
|
||
module DataFlow2 { | ||
import semmle.code.python.dataflow.internal.DataFlowImpl2 | ||
} |
10 changes: 10 additions & 0 deletions
10
python/ql/src/semmle/code/python/dataflow/TaintTracking.qll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Provides classes for performing local (intra-procedural) and | ||
* global (inter-procedural) taint-tracking analyses. | ||
*/ | ||
|
||
import python | ||
|
||
module TaintTracking { | ||
import semmle.code.python.dataflow.internal.tainttracking1.TaintTrackingImpl | ||
} |
Oops, something went wrong.