mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
216 B
Plaintext
9 lines
216 B
Plaintext
import csharp
|
|
import semmle.code.csharp.dataflow.TaintTracking
|
|
|
|
from DataFlow::Node pred, DataFlow::Node succ
|
|
where
|
|
TaintTracking::localTaintStep(pred, succ) and
|
|
not pred.asExpr().fromLibrary()
|
|
select pred, succ
|