Summary: A high-level view of the data flow and execution lifecycle in pwnity.
Workflow
Pwnity follows a logical data flow designed for maximum efficiency and auditability.
The Lifecycle
- Ingestion: Provide raw technical data (IPs, URLs) to a Target.
- Templating: Use Tools to define how your arsenal should interact with that data via placeholders.
- Contextualization: Assemble your current objective into a Session.
- Execution: Run commands. Pwnity handles the job management, logging, and status tracking.
- Refinement: Use Parsers to turn raw stdout into structured finding objects.
- Crystallization: Save your analysis, notes, and loot into a Report.
Visualized Flow
graph LR
T[Target] --> S[Session]
TL[Tool] --> S
W[Wordlist] --> S
S --> E[Execution]
E --> P[Parser]
P --> R[Report]
E --> R
NOTE
This flow is designed to be non-linear. You can update your Target data mid-session, and your Tool commands will dynamically adapt the next time you run
pwn.