AuthForge is a Burp-driven authorization testing tool that learns actors, roles, tenants, and object relationships from captured HTTP traffic. It uses this information to plan and verify cross-user and cross-tenant authorization tests, with a focus on BOLA/IDOR detection.
Burp Traffic
|
▼
Actor Discovery
|
▼
Object & Ownership Mapping
|
▼
Authorization Model
|
▼
Cross-User / Cross-Tenant Test Planning
|
▼
Control Object Verification
|
▼
Verified BOLA / IDOR Findings
|
▼
Authorization & Attack Graphs
|
▼
Regression Invariants
AuthForge identifies actors from authenticated Burp traffic and reuses captured authentication data. It can detect JWT identity, role, and tenant claims, as well as common identity headers.
Explicit YAML actors can also be provided when automatic discovery is insufficient.
Findings are not based on a single unexpected response. AuthForge compares source and target actors using independent control objects to determine whether an authorization boundary was actually bypassed.
AuthForge builds structured authorization graphs and attack paths showing actors, objects, authorization decisions, and verified attack relationships.
DOT output preserves allow/deny state for easier analysis and visualization.
AuthForge runs in dry-run mode by default. No target requests are made unless execution is explicitly enabled.
Mutating requests such as POST, PUT, PATCH, and DELETE require the additional --allow-mutations flag.
Side-effect verification requires both mutation permission and --verify-side-effects.
Requires Go 1.21+.
go build -o authforgeOr download a prebuilt binary from the Releases page.
The default mode analyzes the Burp capture without making network requests.
./authforge -config examples/init.yamlEnable execution without allowing mutating authorization probes.
./authforge -config examples/init.yaml -executeEnable mutations and side-effect verification explicitly.
./authforge \
-config examples/init.yaml \
-execute \
-allow-mutations \
-verify-side-effectsRun:
./authforge -hto see all available flags.
| File | Description |
|---|---|
authforge-report.json |
Findings, actors, observations, authorization graphs, attack paths, and generated tests |
authforge-report.html |
Human-readable security report |
authforge-graph.dot |
Authorization and attack-path graph |
authforge-baseline.json |
Authorization invariants for regression testing |
For deeper technical details:
AuthForge can only reason about actors, objects, and relationships observed in the supplied Burp traffic.
Broader traffic across users, roles, tenants, and endpoints provides better coverage and more representative authorization analysis.
Use AuthForge only against systems you own or are explicitly authorized to test.