Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use this skill when identifying security threats, designing secure systems, thinking like an attacker, performing security assessments, or applying STRIDE threat modeling. Trigger on keywords: threat model, security design, attack surface, STRIDE, vulnerabilities by design, security review, who can attack this, what could go wrong security-wise.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-08 | ✗→✓ | ▲ Improved | -22% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 22% | 0% |
| case-02 | ✓→✓ | = Same ✓ | 21% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 111% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 95% | 0% |
Think like an attacker, build like a defender.
Threat modeling is done BEFORE building, not after. Security retrofitted is always weaker and more expensive than security designed in.
For every component, ask: can an attacker do this?
| Threat | Definition | Example | |---|---|---| | Spoofing | Pretend to be someone else | Forged JWT token | | Tampering | Modify data in transit or at rest | SQL injection, request body modification | | Repudiation | Deny performing an action | No audit log of who deleted a record | | Information Disclosure | Access data they shouldn't | Over-fetching API, verbose error messages | | Denial of Service | Make system unavailable | No rate limiting on auth endpoint | | Elevation of Privilege | Gain unauthorized access level | IDOR (accessing other users' data) |
1. DEFINE SCOPE — What are we modeling? (feature, service, system)
2. IDENTIFY ASSETS — What are we protecting? (data, services, credentials)
3. DRAW DATA FLOWS — How does data move through the system?
4. IDENTIFY THREATS — Apply STRIDE to each component and data flow
5. ASSESS RISK — Likelihood × Impact for each threat
6. MITIGATE — For each high-risk threat, define a control
7. VERIFY — Confirm controls are implemented and workingFor any new feature, identify:
| # | Threat | Quick Check | |---|---|---| | A01 | Broken Access Control | Is every endpoint checking authorization? | | A02 | Cryptographic Failures | Is sensitive data encrypted at rest and in transit? | | A03 | Injection | Are all queries parameterized? All inputs validated? | | A04 | Insecure Design | Was security considered in the design phase? | | A05 | Security Misconfiguration | Are defaults hardened? Are secrets in env vars? | | A06 | Vulnerable Components | Are dependencies up to date? Any known CVEs? | | A07 | Auth Failures | Is auth implemented correctly? Session management secure? | | A08 | Software Integrity | Are supply chain and build pipeline trusted? | | A09 | Logging Failures | Are security events logged? Are logs protected? | | A10 | SSRF | Can users cause server to make requests to internal resources? |
Other measured skills in the registry, with their headline benchmark lift.