-
-
Notifications
You must be signed in to change notification settings - Fork 428
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #607 from hahwul/improve-cmd
Add Args struct to cmd package for command-line argument handling
- Loading branch information
Showing
6 changed files
with
197 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.