OJ / gobuster

Directory/File, DNS and VHost busting tool written in Go
Apache License 2.0
9.28k stars 1.16k forks source link

[New functionnality] - Insensitive option #466

Closed ggt closed 7 months ago

ggt commented 7 months ago

Hi, First, thanks to have added the option for restarting at an offset!

I think if you have the time, a new good option should be implemented: "-i // insensitive search" to brute-force from a "dict" file and removes duplicate searchs automatically. This options should be cool because we won't have to have multiple files with the same data [a-Z] and [a-z].

Thanks!

firefart commented 7 months ago

That's not really possible as we would need to keep track of every word processed in memory and that would result in enormous memory usage. The best solution for this usecase is to use the stdin wordlist feature like

cat wordlist1 wordlist2 wordlist 3 | sort -u | gobuster dir -w - ....