apex-pipelinelisted
Install: claude install-skill mlvpatel/sentinel-ai-offensive
# AppSec Workflow — Full Pipeline in One Skill
End-to-end application security testing: Intake → Recon → SAST → DAST → Hunt → Chain → Validate → Report.
---
## THE GOLDEN RULE
> **Every finding must answer: "What can an attacker steal, break, or take over RIGHT NOW — with proof?"**
>
> If you can't show a working exploit → it's not a finding. Move on.
---
## PHASE 0: TARGET INTAKE & SCOPE LOCK
### Step 1: Define the Target
```
TARGET_NAME: _______________
TARGET_TYPE: [ ] Web App [ ] API [ ] Mobile Backend [ ] Microservices [ ] Monolith
SOURCE_CODE: [ ] Available [ ] Partial (JS bundles) [ ] None (black-box)
AUTH_MODEL: [ ] Session Cookie [ ] JWT [ ] OAuth/OIDC [ ] API Key [ ] SAML [ ] None
```
### Step 2: Lock Scope
```
IN SCOPE:
- Domain(s): _______________
- API(s): _______________
- Source: _______________
OUT OF SCOPE:
- _______________
RULES:
[ ] No DoS / load testing
[ ] No social engineering
[ ] Rate limit: ___ req/sec
[ ] Test accounts only (no real user data)
```
### Step 3: Crown Jewel Identification
Before touching any tool, determine the highest-value targets:
| App Type | Crown Jewel | Worst Case |
|----------|-------------|------------|
| E-commerce | Payment/billing | Drain funds, steal PII |
| SaaS | Multi-tenancy | Cross-tenant data access |
| Healthcare | Patient data | HIPAA violation, PII leak |
| Auth provider | SSO/tokens | Full SSO chain compromise |
| FinTech | Transactions | Unauthorized transfers |
|