-
Notifications
You must be signed in to change notification settings - Fork 87
Description
Description:
We installed the ClawSec suite and attempted to install additional recommended skills from the catalog. Two skills triggered ClawHub's security scanner warnings:
clawsec-scanner(v0.0.2) — Blocked as malware (cannot install even with--force)clawsec-clawhub-checker(v0.0.1) — Flagged as suspicious (requires--forceto install)
Both skills are listed in the official catalog at https://clawsec.prompt.security/skills/index.json with trust: null.
ClawHub installation output:
npx clawhub@latest install clawsec-scanner
✖ Blocked: clawsec-scanner is flagged as malicious
Error: This skill has been flagged as malware and cannot be installed.
npx clawhub@latest install clawsec-clawhub-checker
⚠️ Warning: "clawsec-clawhub-checker" is flagged as suspicious by VirusTotal Code Insight.
This skill may contain risky patterns (crypto keys, external APIs, eval, etc.)
Review the skill code before use.
Error: Use --force to install suspicious skills in non-interactive mode
Static analysis of clawsec-clawhub-checker:
We manually reviewed the code after forced installation. Key findings:
- Uses
spawnSyncextensively (to runclawhub inspect, test installs) - Performs file operations (
fs.copyFile,fs.writeFile,fs.readFile) - Patches the suite's hook handler by string manipulation
- No
eval(), no hardcoded credentials, no direct network calls, no base64 obfuscation - All behavior is consistent with documented purpose (reputation checker)
The code appears legitimate, but the process-spawning and file-modification patterns likely trigger VirusTotal heuristics.
Concern:
clawsec-scanneris completely blocked — is this a false positive or a real compromise?clawsec-clawhub-checkerrequires force; are we exposing ourselves by installing it?- Why does the ClawSec catalog recommend skills that fail ClawHub's security scans?
- Are there plans to update these skills to avoid scanner flags?
Question for maintainers:
- Can you confirm whether these skills are safe to use?
- Have you run them through VirusTotal Code Insight? What are the results?
- Should we avoid
clawsec-scannerentirely until resolved? - Is
clawsec-clawhub-checkertrustworthy despite the suspicious flag?
This is urgent because users installing ClawSec protections are being blocked from recommended components, potentially undermining the security posture you're providing.