Borrowing it
Nothing to install: this file belongs to Suzu-Testing/metasploit-cursor-harness. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Suzu-Testing/metasploit-cursor-harness/main/.cursor/skills/blockchain-pentest/SKILL.mdgit clone --depth 1 https://github.com/Suzu-Testing/metasploit-cursor-harnessWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/suzu-testing/metasploit-cursor-harness/blockchain-pentest)<a href="https://agentmods.dev/skills/suzu-testing/metasploit-cursor-harness/blockchain-pentest"><img src="https://agentmods.dev/badge/skills/suzu-testing/metasploit-cursor-harness/blockchain-pentest.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00057 | $0.01627 |
| Opus 5 | $0.00028 | $0.00813 |
| Sonnet 5 | $0.00011 | $0.00325 |
| Haiku 4.5 | $0.00006 | $0.00163 |
Grade A, and why
blockchain-pentest scanned grade A with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Sends data to an external URLlowData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
curl -X POST http://<node_ip>:8545 -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":1}' Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST http://<node_ip>:8545 -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":1}' How it starts
The opening of the file, as written. The whole thing — 233 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Blockchain Pentest
Prerequisites
- Target contract addresses and chains are in scope (
scope/scope-master.txt, engagement ROE). - Use testnet forks or local Anvil/Hardhat before mainnet interaction.
- Flash loan and reentrancy tests may require ROE authorization for live DeFi pools.
Workflow
Task Progress:
- [ ] Map protocol architecture (contracts, oracles, admin keys)
- [ ] Static analysis (Slither, Mythril) and manual review
- [ ] Test reentrancy, access control, and arithmetic edge cases
- [ ] Run mutation testing to validate test coverage
- [ ] Document findings with transaction hashes and PoC scripts
Phase 1: Architecture mapping
Information gathering
MSF: No direct module. Use block explorers and on-chain queries.
CLI fallback:
# Etherscan/Sourcify contract source verification
# Proxy pattern detection (EIP-1967, EIP-1822, beacon proxies)
# cast call, cast storage for on-chain state reads
cast code 0xContractAddress --rpc-url $RPC_URL
cast storage 0xContractAddress 0 --rpc-url $RPC_URL
Key concepts
| Term | Relevance |
|---|---|
| Smart contract | On-chain logic with immutable/deployed code |
| DeFi | Financial primitives (lending, AMM, staking) |
| Flash loan | Uncollateralized loan within single transaction |
| MEV | Miner/validator extractable value from tx ordering |
| Proxy | Upgradeable contract pattern via delegatecall |
Phase 2: Vulnerability classes
Reentrancy
MSF: No direct module. Use Foundry/Slither for testing.
CLI fallback:
// Vulnerable pattern: external call before state update
function withdraw() external {
uint amount = balances[msg.sender];
(bool ok,) = msg.sender.call{value: amount}("");
balances[msg.sender] = 0;
}
Test: single-function, cross-function, read-only (ERC-777 hooks), cross-contract.
Access control
MSF: No direct module. Use Slither detectors.
CLI fallback:
function setOwner(address _new) external { owner = _new; }
require(tx.origin == owner);
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 233 lines · 57 tokens per session scan A 9dcca0c2645d
blockchain-pentest is a skill published in the GitHub repository Suzu-Testing/metasploit-cursor-harness (3 stars, last pushed 14d ago), licensed MIT. It adds 57 tokens to every session and 1,627 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
signature-replay
Signature replay attacks — missing nonces, missing chain ID, ecrecover zero address, signature malleability, cross-chain replay.
official-sui-skills
Pointer to the official Mysten Labs skills for building on Sui — language fundamentals, object model, PTBs, SDKs, publishing, upgrades, frontend integration, accessing on-chain data. Maintained upstream at github.com/MystenLabs/skills; pinned to the same ref the audit catalog derives from (see…
crypto-market-rank
Crypto market rankings and leaderboards. Query trending tokens, top searched tokens, Binance Alpha tokens, tokenized stocks, social hype sentiment ranks, smart money inflow token rankings, top meme token rankings from Pulse launchpad, and top trader PnL leaderboards. Use this skill when users ask about token rankings…
trading-signal
Subscribe and retrieve on-chain Smart Money signals. Monitor trading activities of smart money addresses, including buy/sell signals, trigger price, current price, max gain, and exit rate. Use this skill when users are looking for investment opportunities — smart money signals can serve as valuable references for…
bridge
Cross-chain token transfers using Wormhole and CCTP.
onchainkit
Build onchain apps with Coinbase's OnchainKit React components - wallets, swaps, NFTs, payments.