Pick a depth. Each prompt opens in your AI pre-loaded with the lesson. Click a row to preview the prompt.
Slither is Trail of Bits' static analyser for Solidity — ~80 detectors covering everything from reentrancy to weak randomness to incorrect ERC-20 returns. It's not a fuzzer; it's pattern-matching on the AST. False-positive heavy, but fast and free. Every audit starts with a Slither run before any manual review.
Workflow: slither <repo> produces JSON + console output. Filter by severity (--exclude informational). Triage the High/Critical hits manually. Most are false positives; the few real ones are bugs you'd find in manual review eventually, faster here.
pip install slither-analyzer. Run on a known-vulnerable contract (DamnVulnerableDeFi's UnstoppableVault). Read every High/Critical finding.