mirror of
https://github.com/github/codeql.git
synced 2026-05-12 18:29:30 +02:00
10 lines
308 B
Plaintext
10 lines
308 B
Plaintext
import semmle.code.cpp.ir.dataflow.DefaultTaintTracking
|
|
|
|
class SourceConfiguration extends TaintedWithPath::TaintTrackingConfiguration {
|
|
override predicate isSink(Element e) { any() }
|
|
}
|
|
|
|
from Expr source, Element tainted
|
|
where TaintedWithPath::taintedWithPath(source, tainted, _, _)
|
|
select source, tainted
|