Christian Mehlmauer

Results 74 comments of Christian Mehlmauer

@OJ this should already be possible https://go-review.googlesource.com/c/go/+/35488/ Have you tried `socks5://host:port` as a proxy url? ```text HTTP_PROXY="socks5://127.0.0.1:1080/" ./gobuster ```

Jeah the source code change only adds socks5:// support. So is it worth to implement socks4 support manually?

Looks like the main problem here is https://godoc.org/golang.org/x/net/proxy not supporting SOCKS4 at all which sucks :/

> Hey, I try to run this command "gobuster dir -p socks5://127.0.0.1:1080 -u http://10.20.115.31/ -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt" but i get " Error: error on parsing arguments: pattern file "socks5://127.0.0.1:1080" does not...

hi @christophetd , can you please share the exact error message? I assume this error comes from the golang source itself as a 301 without a `Location` header is an...

https://tip.golang.org/doc/go1.19 > The HTTP client will handle a 3xx response without a Location header by returning it to the caller, rather than treating it as an error. this will finally...

status progress is implemented in https://github.com/OJ/gobuster/pull/79

> was 7 years enough time? ;P > > gobuster needs pause/resume feature feel free to open a PR based on the `dev` branch

I would prefer this as an extra option, either a case insensitive list or a boolean indicating that the headers should not be normalized to not alter the default behavior...

This works as expected. Everything except 404 is handled a "good hit". The Pre check tries some random urls that do not exist and every one of those result in...