mirror of
https://github.com/github/codeql.git
synced 2026-03-04 22:56:47 +01:00
11 lines
301 B
Plaintext
11 lines
301 B
Plaintext
import python
|
|
import Util
|
|
import semmle.python.pointsto.PointsTo
|
|
import semmle.python.objects.ObjectInternal
|
|
|
|
from ControlFlowNode f, ControlFlowNode x
|
|
|
|
where PointsTo::pointsTo(f, _, ObjectInternal::unknown(), x)
|
|
|
|
select locate(f.getLocation(), "abchr"), f.toString(), x.getLocation().getStartLine()
|