mirror of
https://github.com/github/codeql.git
synced 2026-04-10 17:44:03 +02:00
8 lines
228 B
Plaintext
8 lines
228 B
Plaintext
import semmle.code.cpp.ir.dataflow.DefaultTaintTracking
|
|
|
|
from Expr source, Element tainted, string globalVar
|
|
where
|
|
taintedIncludingGlobalVars(source, tainted, globalVar) and
|
|
globalVar != ""
|
|
select source, tainted, globalVar
|