ClawAudit verdict
audio-transcribe-zh
Writes files AND executes processes
Sets up a local Chinese audio transcription pipeline using FunASR and ModelScope; all network access is for downloading public model weights from Chinese mirrors, and all file operations serve the local transcription purpose.
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.
Writes files AND executes processes — may drop and execute malicious scripts
LLM05 · LLM06 · ASI05
Reads local files AND makes external network calls — the capabilities for data exfiltration co-occur (data-flow not verified)
LLM02 · LLM06 · ASI03
Enumerates directory contents AND makes external network calls — filesystem reconnaissance
LLM02 · LLM06 · ASI03
Executes processes AND makes external network calls — may exfiltrate command output
LLM02 · LLM06 · ASI03
Installs packages AND executes processes — opaque dependency chain with execution
LLM03 · ASI04
Both reads and writes files — verify scope is limited to intended directories
LLM06 · ASI02
Permission integrity
network_out
package_install
Findings (6)
Pipe-to-shell pattern (curl | sh) — supply chain attack vector
SKILL.md · code · curl -LsSf https://astral.sh/uv/install.sh | sh
Pipe to sh — executes piped content as shell commands
SKILL.md · code · | sh
Recursive delete from root or home — destructive command
SKILL.md · code · rm -rf ~
References sudo — requests elevated privileges
SKILL.md · code · sudo
subprocess execution — runs system commands from Python
SKILL.md · code · subprocess.run(
Python directory traversal
SKILL.md · code · os.walk(
Why the tier is capped
Execution sink present in raw bytes (Hard Floor: class A/B/D/E). 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.
network_outpackage_installfile_readfile_writeprocess_execdir_traversal Thanks — recorded.