mirror of
https://github.com/github/codeql.git
synced 2026-04-19 22:14:01 +02:00
11 lines
348 B
Plaintext
11 lines
348 B
Plaintext
private import codeql.ruby.AST
|
|
private import codeql.ruby.Concepts
|
|
private import codeql.ruby.frameworks.Railties
|
|
private import codeql.ruby.DataFlow
|
|
|
|
query predicate systemCommandExecutions(SystemCommandExecution e) { any() }
|
|
|
|
query predicate shellInterpretedArguments(SystemCommandExecution e, DataFlow::Node arg) {
|
|
e.isShellInterpreted(arg)
|
|
}
|