rr-debugger
Pass
Audited by Gen Agent Trust Hub on Aug 27, 2026
Risk Level: SAFECOMMAND_EXECUTIONINDIRECT_PROMPT_INJECTION
Full Analysis
- [COMMAND_EXECUTION]: The script
scripts/crash_trace.pyexecutes therrreplay command viasubprocess.run. The implementation follows security best practices by using a list-based command argument structure to prevent shell injection, sanitizing the environment variables to remove high-risk variables likeLD_PRELOADandPYTHONPATH, and setting a known-safe working directory to prevent the automatic loading of potentially malicious local configuration files. - [INDIRECT_PROMPT_INJECTION]: The skill processes external crash traces and outputs the results, including source code and variable values, to the agent. While these traces represent untrusted external data, the script explicitly disables GDB's automated script-loading features using
set auto-load noandset auto-load python-scripts off. This significantly reduces the risk of malicious code execution during the trace extraction phase. The skill provides clear boundary markers in the output trace to help the agent distinguish between debugger metadata and the trace content.
Audit Metadata