mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
276 B
Plaintext
9 lines
276 B
Plaintext
import python
|
|
import semmle.python.dataflow.new.DataFlow
|
|
|
|
from DataFlow::Node nodeFrom, DataFlow::Node nodeTo
|
|
where
|
|
DataFlow::localFlowStep(nodeFrom, nodeTo) and
|
|
nodeFrom.getEnclosingCallable().getQualifiedName().matches("%\\_with\\_local\\_flow")
|
|
select nodeFrom, nodeTo
|