agent-reproduce-feature
Audited by Socket on Aug 12, 2026
3 alerts found:
AnomalySecurityx2SUSPICIOUS. The skill's capabilities mostly match its stated purpose, but that purpose is to intercept and store highly sensitive agent traffic and local state from official CLIs. Install trust is relatively strong because the referenced agents are official, yet the MITM capture, state-directory access, and potential credential/header exposure make this a medium-high security risk even without clear malicious intent.
This fragment implements a powerful local HTTPS interception and traffic-capture harness: it runs an arbitrary command through mitmdump with TLS decryption enabled (ssl_insecure=true) and forces the wrapped process to trust the MITM CA via exported environment variables. It writes captured HTTP interactions to OUT_DIR/http.jsonl and related logs to OUT_DIR/mitm.log, and records wrapped command output/metadata. There is no visible direct malware/persistence/exfiltration in this snippet, but the capability to collect sensitive data is inherent and the actual capture behavior/extraction is determined by an external llm_dump.py file not included here. Treat as high privacy/security risk until llm_dump.py and usage context are reviewed.
This module is a targeted traffic-capture add-on: it intercepts HTTP request/response data via mitmproxy, applies best-effort redaction for common credential/token patterns, and persists the resulting records to a configurable JSONL file. While there is no visible backdoor, command execution, or outbound network exfiltration in the fragment, the functionality is inherently high privacy/security risk because it can store sensitive headers and bodies (including base64-encoded payloads when decoding fails) and can capture broadly when enabled. Deployment controls (restricting where OUT can write, retention/rotation, and disabling broad capture) are critical to mitigate misuse.