plugins marketplace
← All plugins

dos-griefing-analysis

v1.0.0

Detects Denial of Service and griefing vulnerabilities in smart contracts — OWASP SC10. Covers unbounded loops, block gas limit exhaustion, external call failure DoS, insufficient gas griefing (63/64 rule), storage bloat, timestamp griefing, self-destruct force-feeding, and push vs pull payment pattern analysis.

Claude Code1 skill

by QuillShield117updated 4 months ago

Source

git clone https://github.com/quillai-network/quillshield_skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/dos-griefing-analysis/ inside the repository.

Layout

plugins/dos-griefing-analysis/
├── .claude-plugin/plugin.json
└── skills/dos-griefing-analysis/SKILL.md

Skills1

dos-griefing-analysisskills/dos-griefing-analysis/SKILL.md

Detects Denial of Service and griefing vulnerabilities in smart contracts. Covers unbounded loop DoS, block gas limit exhaustion, external call failure DoS, insufficient gas griefing (63/64 rule), storage bloat attacks, timestamp griefing, self-destruct force-feeding, and push vs pull payment pattern analysis. Use when auditing contracts with batch operations, loops over user data, reward distribution, dividend systems, or any logic that depends on address(this).balance or iterates over growing collections.

Manifests1

plugins/dos-griefing-analysis/.claude-plugin/plugin.json
{
  "name": "dos-griefing-analysis",
  "version": "1.0.0",
  "description": "Detects Denial of Service and griefing vulnerabilities in smart contracts — OWASP SC10. Covers unbounded loops, block gas limit exhaustion, external call failure DoS, insufficient gas griefing (63/64 rule), storage bloat, timestamp griefing, self-destruct force-feeding, and push vs pull payment pattern analysis.",
  "author": {
    "name": "QuillShield",
    "url": "https://github.com/quillai-network"
  }
}