diff --git a/main.go b/main.go index 230b959..56b91a8 100644 --- a/main.go +++ b/main.go @@ -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.")