Intake & Assumption Parser
139 TEMPLATES READYBrowse the 139 static template library (Categories A-O) or use the Claude AI Parser (`assumption_parser.py`) to convert plain-English security claims into structured test cases.
Claude AI Assumption Parser (`assumption_parser.py`)1 Credit / Prompt
State your organizational security assumption in plain English. The AI engine will parse it into a executable test case with structured conditions and router mappings.
139 Security Assumption Catalog
Strict Transport Security (HSTS) Enforced
Verify that HTTP requests receive Strict-Transport-Security header with max-age >= 31536000 and includeSubDomains.
Content Security Policy (CSP) Restrictions
Verify CSP does not contain 'unsafe-inline' or wildcard '*' in script-src directives.
Parameterized Query Immunity on Authentication API
Verify SQL injection payloads in auth request bodies return 400/401 without SQL syntax errors or delay.
Reflected XSS Sanitization on Search & Parameters
Verify GET parameters automatically HTML-entity encode HTML tags in response bodies.
Cloud Metadata (169.254.169.254) Reachability Guard
Verify webhook and fetch parameters reject internal IP ranges and cloud metadata endpoints.
.env & .git Directory Protection
Verify requests to /.env, /.git/config, and /backup.sql are blocked at web server layer.
GraphQL Production Introspection Disabled
Verify introspection query `{ __schema { types { name } } }` is disabled in production.
JWT 'alg: none' Confusion Guard
Verify JWT authentication endpoints reject tokens with algorithm modified to 'none' or asymmetric key swaps.
Login Endpoint Lockout Enforcement
Verify after 5 consecutive failed login attempts HTTP 429 Too Many Requests is triggered.
Dangerous Infrastructure Port Isolation
Verify ports 21 (FTP), 22 (SSH), 3389 (RDP), 6379 (Redis), and 27017 (MongoDB) are not publicly exposed.
Public S3 Bucket Bucket-ACL Restrictions
Verify associated storage buckets reject unauthenticated list and read operations.
File Extension & MIME Type Polyglot Bypass Guard
Verify uploaded files undergo extension validation, SVG script stripping, and execution blocking.
Webhook HMAC-SHA256 Signature Verification
Verify webhook receivers reject payload requests missing valid HMAC-SHA256 signature headers.
Payment Amount Tampering & Negative Balance Prevention
Verify checkout parameters reject negative numbers, floating point manipulation, and currency overrides.
DMARC Policy Enforcement
Verify DNS TXT record for _dmarc has p=reject or p=quarantine policy.
Vertical Escalation Prevention on /admin Routes
Verify standard non-admin session tokens receive HTTP 403 when requesting administrative control routes.