Tool Parameter Abuse
- Category
- Tool Misuse
- Content
if [ $FOUND_SECRETS -eq 1 ]; then echo -e "${RED}⚠️ Secrets detected! Commit blocked.${NC}" echo "Bypass with: git commit --no-verify" exit 1 fi- Confidence
- 95% confidence
- Finding
- --no-verify
Security audit
Security checks across malware telemetry and agentic risk
This is a documentation-only security guide for safer secret and wallet-key handling, with some risky copy-paste examples users should treat carefully.
Before installing, confirm you meant to install the Bagman/Openclaw key-management guide. Use the examples as templates, not drop-in production controls: remove the pre-commit bypass message, prefer server-side secret scanning and push protection, use short-lived least-privilege session keys, test wallet flows with limited funds, and coordinate carefully before any git history rewrite or force-push.
if [ $FOUND_SECRETS -eq 1 ]; then
echo -e "${RED}⚠️ Secrets detected! Commit blocked.${NC}"
echo "Bypass with: git commit --no-verify"
exit 1
fi66/66 vendors flagged this skill as clean.
Detected: suspicious.exposed_secret_literal, suspicious.prompt_injection_instructions