mirror of
https://github.com/github/codeql.git
synced 2026-04-12 18:44:00 +02:00
A SystemCommandExecution is a method call or builtin that executes a system command, either directly or via a subshell.
12 lines
403 B
Plaintext
12 lines
403 B
Plaintext
import codeql.ruby.frameworks.StandardLibrary
|
|
|
|
query predicate subshellLiteralExecutions(SubshellLiteralExecution e) { any() }
|
|
|
|
query predicate kernelSystemCallExecutions(KernelSystemCall c) { any() }
|
|
|
|
query predicate kernelExecCallExecutions(KernelExecCall c) { any() }
|
|
|
|
query predicate kernelSpawnCallExecutions(KernelSpawnCall c) { any() }
|
|
|
|
query predicate open3CallExecutions(Open3Call c) { any() }
|