Skip to content

Commit

Permalink
Make public, v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Sto committed Jun 21, 2018
1 parent 7f84ad0 commit 1dd15fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ func main() {
flag.Float64Var(&cfg.Ratio404, "ratio", 0.95, "Similarity ratio to the 404 canary page.")
flag.StringVar(&cfg.BlacklistLocation, "blacklist", "", "Blacklist of prefixes to not check. Will not check on exact matches.")
flag.BoolVar(&cfg.NoSpider, "spider", false, "Search the page body for links, and directories to add to the spider queue.")
flag.IntVar(&cfg.Timeout, "T", 20, "Timouet (seconds) for HTTP/TCP connections")
flag.IntVar(&cfg.Timeout, "timeout", 20, "Timeout (seconds) for HTTP/TCP connections")
flag.BoolVar(&cfg.Debug, "debug", false, "Enable debugging")
flag.BoolVar(&cfg.NoGet, "noget", false, "Do not perform a GET request (only use HEAD request/response)")
flag.IntVar(&cfg.MaxDirs, "dirs", 1, "Maximum directories to perform busting on concurrently NOTE: directories will still be brute forced, this setting simply directs how many should be concurrently bruteforced")
flag.BoolVar(&cfg.ShowAll, "all", false, "Show and write result of all checks")
flag.BoolVar(&cfg.ShowLen, "len", false, "Show and write the length of the response")
flag.StringVar(&cfg.WhitelistLocation, "whitelist", "", "Whitelist of domains to include in brute-force")
flag.BoolVar(&cfg.FollowRedirects, "Redirect", false, "Follow redirects")
flag.BoolVar(&cfg.FollowRedirects, "redirect", false, "Follow redirects")
flag.StringVar(&cfg.BadResponses, "bad", "404", "Responses to consider 'bad' or 'not found'. Comma-separated This works the opposite way of gobuster!")
flag.BoolVar(&cfg.CleanOutput, "clean", false, "Output clean urls to output file for easy loading into other tools and whatnot.")
flag.StringVar(&cfg.Cookies, "cookies", "", "Any cookies to include with requests. This is smashed into the cookies header, so copy straight from burp I guess.")
Expand Down

0 comments on commit 1dd15fa

Please sign in to comment.