diff --git a/config/service-scans.toml b/config/service-scans.toml index 4c7e554..4f7f47b 100644 --- a/config/service-scans.toml +++ b/config/service-scans.toml @@ -148,7 +148,14 @@ ignore-service-names = [ ] [[http.manual]] - description = '(gobuster) Directory/file enumeration for web servers using various wordlists (same as dirb above):' + description = '(gobuster v3) Directory/file enumeration for web servers using various wordlists (same as dirb above):' + commands = [ + 'gobuster dir -u {scheme}://{address}:{port}/ -w /usr/share/seclists/Discovery/Web-Content/big.txt -e -k -l -s "200,204,301,302,307,403,500" -x "txt,html,php,asp,aspx" -z -o "{scandir}/{protocol}_{port}_{scheme}_gobuster_big.txt"', + 'gobuster dir -u {scheme}://{address}:{port}/ -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -e -k -l -s "200,204,301,302,307,403,500" -x "txt,html,php,asp,aspx" -z -o "{scandir}/{protocol}_{port}_{scheme}_gobuster_dirbuster.txt"' + ] + + [[http.manual]] + description = '(gobuster v1 & v2) Directory/file enumeration for web servers using various wordlists (same as dirb above):' commands = [ 'gobuster -u {scheme}://{address}:{port}/ -w /usr/share/seclists/Discovery/Web-Content/big.txt -e -k -l -s "200,204,301,302,307,403,500" -x "txt,html,php,asp,aspx" -o "{scandir}/{protocol}_{port}_{scheme}_gobuster_big.txt"', 'gobuster -u {scheme}://{address}:{port}/ -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -e -k -l -s "200,204,301,302,307,403,500" -x "txt,html,php,asp,aspx" -o "{scandir}/{protocol}_{port}_{scheme}_gobuster_dirbuster.txt"'