Security Bounty Hunter
Constraints
- Apply
@rules/security/backend.md and @rules/security/frontend.md
- If the project uses Laravel, also apply
@rules/laravel/laravel.mdc
- Stack assumed: Laravel 11 / PHP 8.3, Filament, Livewire, Alpine.js, Blade, MySQL, Redis
- Read-only investigation — never modify, stage, commit, or push code; output is the finding report only
- Never run an exploit against infrastructure you are not authorized to test; keep PoCs minimal and safe
- Hard limits: this file stays <= 500 lines and <= 5000 tokens
Purpose
Find unknown, exploitable bugs reachable from a real network or user boundary, and write them up to a standard a bounty program will accept. Bias toward "does this actually pay?" over "is this theoretically unsafe?".
How this differs from neighbors:
@skills/security-review/SKILL.md reviews a diff against best practices; this skill hunts unknown exploitable bugs across the whole reachable surface.
@skills/security-threat-analysis/SKILL.md remediates a known advisory/CVE; this skill discovers the unknown one.
Use when
- Sweeping a repository for exploitable vulnerabilities
- Preparing a Huntr / HackerOne / program submission
- Triage where the question is "is this reportable?" not "is this tidy?"
In-Scope Patterns (mapped to PHP/Laravel sinks)
| Pattern |
CWE |
PHP/Laravel sink to chase |
Impact |
| SSRF via user-controlled URL |
CWE-918 |
Http::get($userUrl), Guzzle, file_get_contents($userUrl) |
internal network / cloud metadata |
| SQL injection |
CWE-89 |
whereRaw/orderByRaw/havingRaw/DB::statement/DB::raw with interpolation |
data exfiltration, auth bypass |
| Auth / access bypass |
CWE-287/639 |
gaps in middleware, policy/gate, Livewire actions, IDOR on route-model binding |
unauthorized data access |
| Unsafe deserialization |
CWE-502 |
unserialize($userInput), unsigned cookie/cache payloads, ShouldQueue from untrusted source |
RCE / object injection |
| Path traversal |
CWE-22 |
Storage::get/disk()->get, file_get_contents, download routes with ../ in path |
arbitrary file read/write |
| Command injection |
CWE-78 |
exec/shell_exec/system/proc_open, Process::run("... {$input}") |
code execution |
| XSS (auto-triggered) |
CWE-79 |
{!! $userInput !!}, Alpine x-html, raw JSON in <script> |
session/admin theft |
| Mass-assignment to privileged column |
CWE-915 |
$guarded = [] or fillable exposing role/is_admin + create($request->all()) |
privilege escalation |
Skip These
Usually low-signal or out of scope unless the program says otherwise:
- Local-only
unserialize/eval/exec with no remote path (CLI tooling, artisan-only)
- Fully hardcoded shell commands with no user input
- Missing security headers on their own
- Generic rate-limiting complaints with no exploit impact
- Self-XSS requiring the victim to paste content manually
- CSRF where Laravel's default protection is intact and the route is in the
web group
- Findings only in demo, example, seeder, test, or vendored code
Workflow
- Scope first — read program rules,
SECURITY.md, disclosure channel, and exclusions. Confirm the target and version are in scope.
- Map entrypoints — routes (
routes/*.php, php artisan route:list), controllers, FormRequests, Livewire/Filament actions, queued jobs, webhooks, console commands reachable via HTTP, and API resources.
- Static triage (optional) — run static triage with semgrep, larastan/phpstan, or psalm where available; treat every hit as a lead, not a finding.
- Trace the path end to end — from the boundary input to the sink. Prove the input is genuinely user-controlled.
- Confirm the sink is meaningful — interpolation reaches the query/command/URL/file path with no escaping or authorization between.
- Prove exploitability — build the smallest safe PoC (a single request or short script) that demonstrates impact.
- Check duplicates — search existing advisories, CVEs, open issues, and prior reports before drafting.
Triage loop example
# optional — any one of these, treat output as leads only
larastan analyse --no-progress
# or: vendor/bin/phpstan analyse
# or: semgrep --config=auto --severity=ERROR --json
Then manually filter: drop tests/demos/fixtures/vendored code and any non-reachable path; keep only findings with a clear network or user-controlled route to a meaningful sink.
Quick grep starters
grep -rnE "whereRaw|orderByRaw|havingRaw|DB::(raw|statement|select)\(" app/
grep -rnE "Http::(get|post)\(|file_get_contents\(|exec\(|shell_exec\(|proc_open\(" app/
grep -rnE "\{!!|unserialize\(|x-html" app/ resources/
grep -rnE "guarded\s*=\s*\[\s*\]|->all\(\)" app/
Report Structure
## Description
[What the vulnerability is and why it matters]
## Vulnerable Code
[File path, line range, and a small snippet]
## Proof of Concept
[Minimal working request or script]
## Impact
[What the attacker can achieve]
## Affected Version
[Version, commit, or deployment target tested]
Quality Gate — before submitting
- The code path is reachable from a real user or network boundary
- The input is genuinely user-controlled, all the way to the sink
- The sink is meaningful and exploitable (not theoretical)
- The PoC works and is the smallest safe demonstration possible
- The issue is not already covered by an advisory, CVE, or open ticket
- The target and version are actually in scope for the program
Done when
- Each finding follows the Report Structure and passes every Quality Gate item
- Out-of-scope and low-signal patterns were filtered out, not reported
- No code was modified and no unauthorized exploit was run
Related Skills
@skills/security-review/SKILL.md — best-practices review of a known change set
@skills/security-threat-analysis/SKILL.md — remediate a referenced advisory/CVE
1---2name: security-bounty-hunter3description: Use when hunting for exploitable, remotely reachable vulnerabilities in a PHP/Laravel codebase for responsible disclosure or a bounty submission, not a general best-practices review. Biases toward user-controlled attack paths that pay and discards low-signal noise.4license: MIT5---67# Security Bounty Hunter89## Constraints10- Apply `@rules/security/backend.md` and `@rules/security/frontend.md`11- If the project uses Laravel, also apply `@rules/laravel/laravel.mdc`12- Stack assumed: Laravel 11 / PHP 8.3, Filament, Livewire, Alpine.js, Blade, MySQL, Redis13- Read-only investigation — never modify, stage, commit, or push code; output is the finding report only14- Never run an exploit against infrastructure you are not authorized to test; keep PoCs minimal and safe15- Hard limits: this file stays <= 500 lines and <= 5000 tokens1617## Purpose18Find unknown, exploitable bugs reachable from a real network or user boundary, and write them up to a standard a bounty program will accept. Bias toward "does this actually pay?" over "is this theoretically unsafe?".1920How this differs from neighbors:21- `@skills/security-review/SKILL.md` reviews a diff against best practices; this skill **hunts unknown exploitable bugs** across the whole reachable surface.22- `@skills/security-threat-analysis/SKILL.md` remediates a **known** advisory/CVE; this skill discovers the unknown one.2324## Use when25- Sweeping a repository for exploitable vulnerabilities26- Preparing a Huntr / HackerOne / program submission27- Triage where the question is "is this reportable?" not "is this tidy?"2829## In-Scope Patterns (mapped to PHP/Laravel sinks)3031| Pattern | CWE | PHP/Laravel sink to chase | Impact |32| --- | --- | --- | --- |33| SSRF via user-controlled URL | CWE-918 | `Http::get($userUrl)`, Guzzle, `file_get_contents($userUrl)` | internal network / cloud metadata |34| SQL injection | CWE-89 | `whereRaw`/`orderByRaw`/`havingRaw`/`DB::statement`/`DB::raw` with interpolation | data exfiltration, auth bypass |35| Auth / access bypass | CWE-287/639 | gaps in middleware, policy/gate, Livewire actions, IDOR on route-model binding | unauthorized data access |36| Unsafe deserialization | CWE-502 | `unserialize($userInput)`, unsigned cookie/cache payloads, `ShouldQueue` from untrusted source | RCE / object injection |37| Path traversal | CWE-22 | `Storage::get`/`disk()->get`, `file_get_contents`, download routes with `../` in path | arbitrary file read/write |38| Command injection | CWE-78 | `exec`/`shell_exec`/`system`/`proc_open`, `Process::run("... {$input}")` | code execution |39| XSS (auto-triggered) | CWE-79 | `{!! $userInput !!}`, Alpine `x-html`, raw JSON in `<script>` | session/admin theft |40| Mass-assignment to privileged column | CWE-915 | `$guarded = []` or `fillable` exposing `role`/`is_admin` + `create($request->all())` | privilege escalation |4142## Skip These43Usually low-signal or out of scope unless the program says otherwise:44- Local-only `unserialize`/`eval`/`exec` with no remote path (CLI tooling, artisan-only)45- Fully hardcoded shell commands with no user input46- Missing security headers on their own47- Generic rate-limiting complaints with no exploit impact48- Self-XSS requiring the victim to paste content manually49- CSRF where Laravel's default protection is intact and the route is in the `web` group50- Findings only in demo, example, seeder, test, or vendored code5152## Workflow531. **Scope first** — read program rules, `SECURITY.md`, disclosure channel, and exclusions. Confirm the target and version are in scope.542. **Map entrypoints** — routes (`routes/*.php`, `php artisan route:list`), controllers, FormRequests, Livewire/Filament actions, queued jobs, webhooks, console commands reachable via HTTP, and API resources.553. **Static triage (optional)** — run static triage with semgrep, larastan/phpstan, or psalm where available; treat every hit as a lead, not a finding.564. **Trace the path end to end** — from the boundary input to the sink. Prove the input is genuinely user-controlled.575. **Confirm the sink is meaningful** — interpolation reaches the query/command/URL/file path with no escaping or authorization between.586. **Prove exploitability** — build the smallest safe PoC (a single request or short script) that demonstrates impact.597. **Check duplicates** — search existing advisories, CVEs, open issues, and prior reports before drafting.6061### Triage loop example62```bash63# optional — any one of these, treat output as leads only64larastan analyse --no-progress65# or: vendor/bin/phpstan analyse66# or: semgrep --config=auto --severity=ERROR --json67```68Then manually filter: drop tests/demos/fixtures/vendored code and any non-reachable path; keep only findings with a clear network or user-controlled route to a meaningful sink.6970### Quick grep starters71```bash72grep -rnE "whereRaw|orderByRaw|havingRaw|DB::(raw|statement|select)\(" app/73grep -rnE "Http::(get|post)\(|file_get_contents\(|exec\(|shell_exec\(|proc_open\(" app/74grep -rnE "\{!!|unserialize\(|x-html" app/ resources/75grep -rnE "guarded\s*=\s*\[\s*\]|->all\(\)" app/76```7778## Report Structure79```markdown80## Description81[What the vulnerability is and why it matters]8283## Vulnerable Code84[File path, line range, and a small snippet]8586## Proof of Concept87[Minimal working request or script]8889## Impact90[What the attacker can achieve]9192## Affected Version93[Version, commit, or deployment target tested]94```9596## Quality Gate — before submitting97- The code path is reachable from a real user or network boundary98- The input is genuinely user-controlled, all the way to the sink99- The sink is meaningful and exploitable (not theoretical)100- The PoC works and is the smallest safe demonstration possible101- The issue is not already covered by an advisory, CVE, or open ticket102- The target and version are actually in scope for the program103104## Done when105- Each finding follows the Report Structure and passes every Quality Gate item106- Out-of-scope and low-signal patterns were filtered out, not reported107- No code was modified and no unauthorized exploit was run108109## Related Skills110- `@skills/security-review/SKILL.md` — best-practices review of a known change set111- `@skills/security-threat-analysis/SKILL.md` — remediate a referenced advisory/CVE