ClawAudit verdict
code-security-auditor
Reads local files AND makes external network calls
Code security audit skill running local SAST scans with standard tools (pip-audit, npm audit, trufflehog, gitleaks); all operations are local analysis with no evidence of sending scan results or source code to external hosts.
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
Accesses credentials AND makes external network calls — potential credential theft
LLM02 · ASI03
Permission integrity
network_out
file_read
credential_access
package_install
Findings (14)
Pipe to python — executes piped content as Python code
references/owasp-top10.md · code · |
python
subprocess execution — runs system commands from Python
references/owasp-top10.md · code · subprocess.run(
os.system/popen — direct OS command execution
references/owasp-top10.md · code · os.system(
Uses eval() — can execute arbitrary code
rules/extended-rules.md · prose · downgraded · eval(
Accesses sensitive system files
rules/extended-rules.md · prose · downgraded · /etc/passwd
Possible hardcoded credential
test_vulnerable.py · prose · downgraded · API_KEY = "sk-1234567890abcdefghijklmnopqrstuvwxyz
Python urllib.request — network access
SKILL.md · code · urllib.request
Sets world-executable permissions
SKILL.md · code · chmod 755
Uses exec() — may execute shell commands
rules/extended-rules.md · prose · downgraded · exec(
subprocess with shell=True — command injection vector
rules/extended-rules.md · prose · downgraded · subprocess.call(var, shell=True
Gopher protocol — SSRF attack vector
rules/extended-rules.md · prose · downgraded · gopher://
Popular HTTP library — network access
auditor.py · prose · downgraded · axios
Python os.environ.get — reads environment variable
auditor.py · prose · downgraded · os.environ.get(
Opens WebSocket connection
rules/extended-rules.md · prose · downgraded · WebSocket
Why the tier is capped
Execution sink present in raw bytes (Hard Floor: class 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.
credential_accessnetwork_outfile_readnetwork_inpackage_install Thanks — recorded.