package main // Hide stores what requests to hide type Hide struct { HideCode, HideLine, HideWord, HideChar string } // Show stores what requests to show type Show struct { ShowCode, ShowLine, ShowWord, ShowChar string } // Config stores the overall config type Config struct { // show / hide config Show Show Hide Hide // misc config Color bool Verbose bool Printer string Dryrun bool Proxy string Concurrent int Delay int FollowRedirect bool URL string Payload string Wordlist string PostData string Headers string Basicauth string } // Response defines the http response type Response struct { StatusCode int FuzzWord string }