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 }