mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-24 20:28:06 +02:00
11 lines
352 B
Python
11 lines
352 B
Python
"""File B — middle of the A → B → C chain. Forwards its argument to
|
|||
sinks.exec_cmd in sinks.py. Under k=1 inline analysis, the hop from
|
|||
A into B is context-sensitive; the hop from B into C is resolved via
|
|||
the SsaFuncSummary for exec_cmd (which records param 0 → CMD_EXEC)."""
|
|||
|
|||
from sinks import exec_cmd
|
|||
|
|||
|
|||
def forward(cmd):
|
|||
exec_cmd(cmd)
|