mirror of
https://github.com/github/codeql.git
synced 2025-12-28 06:36:33 +01:00
13 lines
333 B
Plaintext
13 lines
333 B
Plaintext
/**
|
|
* @kind path-problem
|
|
*/
|
|
|
|
import codeql.ruby.AST
|
|
import codeql.ruby.DataFlow
|
|
private import TestUtilities.InlineFlowTest
|
|
import DataFlow::PathGraph
|
|
|
|
from DataFlow::PathNode source, DataFlow::PathNode sink, DefaultTaintFlowConf conf
|
|
where conf.hasFlowPath(source, sink)
|
|
select sink, source, sink, "$@", source, source.toString()
|