ClawAudit verdict
ctf-misc
Reads local files AND makes external network calls
A CTF miscellaneous challenge reference skill covering encoding, steganography, Python/bash jails, and SDR signal analysis; all techniques are documented for legitimate CTF competition use and the installed packages (z3-solver, pwntools, Pillow) are standard CTF tools.
Automated static analysis — not a human review. ClawAudit flags capabilities, not confirmed intent, and can produce false positives. Disagree with this verdict? Use Dispute below.
What it does
These are capability combinations: each listed behavior occurs in the skill, but ClawAudit detects co-occurrence — it does not verify that one flows into another. Read the code to confirm a live chain.
Reads local files AND makes external network calls — the capabilities for data exfiltration co-occur (data-flow not verified)
LLM02 · LLM06 · ASI03
Reads files, encodes data, AND makes external network calls — the obfuscated-exfiltration pattern (data-flow not verified)
LLM02 · ASI03
Permission integrity
network_out
file_read
package_install
Findings (17)
Dynamic __import__('os') — Python OS command execution
SKILL.md · code · __import__('os')
Accesses sensitive system files
SKILL.md · code · /etc/passwd
Bash /dev/tcp — raw TCP connection via shell
bashjails.md · code · /dev/tcp/
Possible hardcoded credential
linux-privesc.md · code · PASSWORD='postgres
Direct __builtins__ access — can invoke any builtin function
pyjails.md · code · __builtins__.
Uses eval() — can execute arbitrary code
pyjails.md · code · eval(
References sudo — requests elevated privileges
SKILL.md · code · Sudo
os.system/popen — direct OS command execution
games-and-vms-3.md · code · os.system(
Pipe to bash — executes piped content as shell commands
bashjails.md · prose · downgraded · | bash
Pipe to sh — executes piped content as shell commands
bashjails.md · prose · downgraded · | sh
subprocess execution — runs system commands from Python
dns.md · code · subprocess.check_output(
HTTP request to bare IP address — common in malicious payloads
linux-privesc.md · code · http://127.0.0.1
Uses exec() — may execute shell commands
pyjails.md · code · exec(
Sets world-executable permissions
linux-privesc.md · code · chmod 4777
Opens WebSocket connection
SKILL.md · prose · downgraded · WebSocket
Base64 encoding/decoding
encodings-advanced.md · prose · downgraded · base64-decode
Python directory traversal
encodings.md · code · os.listdir(
Why the tier is capped
Execution sink present in raw bytes (Hard Floor: class A/B/D). Final tier capped at Caution — cannot be lifted by any downgrade, example-payload opt-in, or allowlist.
Permissions & capabilities
No declared permissions — minimal attack surface.
package_installdata_encodingfile_readnetwork_out Thanks — recorded.