ClawAudit verdict
memory-manager
pupper0601-memory-manager
Reads local files AND makes external network calls
Skill's own security_note warns it reads all users' profile.md files for multi-user identification and modifies shell RC files, and Method 3 installation uses curl|bash from GitHub; the broad file access scope across all users' private data represents a genuine concern beyond standard memory management.
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
Enumerates directory contents AND makes external network calls — filesystem reconnaissance
LLM02 · LLM06 · ASI03
Accesses credentials AND makes external network calls — potential credential theft
LLM02 · ASI03
Permission integrity
network_out
credential_access
package_install
Findings (12)
Pipe to bash — executes piped content as shell commands
SKILL.md · frontmatter · |bash
Pipe-to-shell pattern (curl | sh) — supply chain attack vector
SKILL.md · code · curl -fsSL https://raw.githubusercontent.com/Pupper0601/memory-manager/main/inst
Pipe to python — executes piped content as Python code
README.md · prose · downgraded · | Python
Accesses shell history/config
README.md · code · ~/.zshrc
Accesses sensitive system files
tests/memory_embed_test.py · prose · downgraded · /etc/passwd
Python os.environ.get — reads environment variable
SKILL.md · code · os.environ.get(
References sudo — requests elevated privileges
README.md · prose · downgraded · sudo
yum install — installs system packages
README.md · prose · downgraded · yum install
subprocess execution — runs system commands from Python
scripts/memory_init.py · prose · downgraded · subprocess.run(
os.system/popen — direct OS command execution
tests/run_all_tests.py · prose · downgraded · os.system(
Python directory traversal
SKILL.md · code · os.listdir(
Python shutil file operation — copies/moves/deletes files
scripts/memory_compress.py · prose · downgraded · shutil.rmtree(
Why the tier is capped
Execution sink present in raw bytes (Hard Floor: class A/B/D/E/F). Final tier capped at Caution — cannot be lifted by any downgrade, example-payload opt-in, or allowlist.
Permissions & capabilities
Requires 2 system binaries. (1 elevated: git).
network_outpackage_installfile_readcredential_accessdir_traversal Thanks — recorded.