Skip to content

Commit

Permalink
Add Args struct to cmd package for command-line argument handling
Browse files Browse the repository at this point in the history
Signed-off-by: HAHWUL <[email protected]>
  • Loading branch information
hahwul committed Dec 9, 2024
1 parent fb1819b commit 60f1d46
Show file tree
Hide file tree
Showing 2 changed files with 176 additions and 127 deletions.
57 changes: 57 additions & 0 deletions cmd/args.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
package cmd

type Args struct {
Header []string
P []string
IgnoreParams []string
Config string
Cookie string
Data string
CustomPayload string
CustomAlertValue string
CustomAlertType string
UserAgent string
Blind string
Output string
Format string
FoundAction string
FoundActionShell string
Proxy string
Grep string
IgnoreReturn string
MiningWord string
Method string
CookieFromRaw string
RemotePayloads string
RemoteWordlists string
OnlyPoC string
PoCType string
ReportFormat string
HarFilePath string
Timeout int
Delay int
Concurrence int
OnlyDiscovery bool
Silence bool
Mining bool
FindingDOM bool
FollowRedirect bool
NoColor bool
NoSpinner bool
UseBAV bool
SkipBAV bool
SkipMiningDom bool
SkipMiningDict bool
SkipMiningAll bool
SkipXSSScan bool
OnlyCustomPayload bool
SkipGrep bool
Debug bool
SkipHeadless bool
UseDeepDXSS bool
OutputAll bool
WAFEvasion bool
ReportBool bool
OutputRequest bool
OutputResponse bool
}
Loading

0 comments on commit 60f1d46

Please sign in to comment.