diff --git a/cmd/httpx/httpx.go b/cmd/httpx/httpx.go index 48795c3..41b491a 100644 --- a/cmd/httpx/httpx.go +++ b/cmd/httpx/httpx.go @@ -389,7 +389,7 @@ func ParseOptions() *Options { flag.StringVar(&options.StoreResponseDir, "store-response-dir", ".", "Store Response Directory (default current directory)") flag.BoolVar(&options.FollowRedirects, "follow-redirects", false, "Follow Redirects") flag.BoolVar(&options.FollowHostRedirects, "follow-host-redirects", false, "Only follow redirects on the same host") - flag.StringVar(&options.HttpProxy, "http-proxy", "", "Http Proxy, eg TOR socks5://127.0.0.1:9050") + flag.StringVar(&options.HttpProxy, "http-proxy", "", "Http Proxy, eg http://127.0.0.1:8080") flag.BoolVar(&options.JSONOutput, "json", false, "JSON Output") flag.StringVar(&options.InputFile, "l", "", "File containing domains") flag.StringVar(&options.Method, "x", "GET", "Request Method")