From c762351a01cb4ce7a031acabb612c2848aa59ffb Mon Sep 17 00:00:00 2001 From: carsonchan12345 <44266907+carsonchan12345@users.noreply.github.com> Date: Wed, 22 Jul 2026 15:46:50 +0100 Subject: [PATCH] Fix gobuster command by removing unnecessary '-z' option --- autorecon/default-plugins/http/dirbuster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autorecon/default-plugins/http/dirbuster.py b/autorecon/default-plugins/http/dirbuster.py index 429086d..f9aaeb2 100644 --- a/autorecon/default-plugins/http/dirbuster.py +++ b/autorecon/default-plugins/http/dirbuster.py @@ -48,7 +48,7 @@ class DirBuster(ServiceScan): await service.execute('feroxbuster -u {http_scheme}://{addressv6}:{port}/ -t ' + str(self.get_option('threads')) + ' -w ' + wordlist + ' -x "' + self.get_option('ext') + '" -k ' + ('' if self.get_option('recursive') else '-n ') + '-q -e -r -o "{scandir}/{protocol}_{port}_{http_scheme}_feroxbuster_' + name + '.txt"' + (' ' + self.get_option('extras') if self.get_option('extras') else '')) elif self.get_option('tool') == 'gobuster': - await service.execute('gobuster dir -u {http_scheme}://{addressv6}:{port}/ -t ' + str(self.get_option('threads')) + ' -w ' + wordlist + ' -e -k -x "' + self.get_option('ext') + '" -z -r -o "{scandir}/{protocol}_{port}_{http_scheme}_gobuster_' + name + '.txt"' + (' ' + self.get_option('extras') if self.get_option('extras') else '')) + await service.execute('gobuster dir -u {http_scheme}://{addressv6}:{port}/ -t ' + str(self.get_option('threads')) + ' -w ' + wordlist + ' -e -k -x "' + self.get_option('ext') + '" -r -o "{scandir}/{protocol}_{port}_{http_scheme}_gobuster_' + name + '.txt"' + (' ' + self.get_option('extras') if self.get_option('extras') else '')) elif self.get_option('tool') == 'dirsearch': if service.target.ipversion == 'IPv6':