From 2e780998707cebfb4145571d12e280ba5e7b77a8 Mon Sep 17 00:00:00 2001 From: BasemMohamed Date: Sat, 24 Jul 2021 02:29:53 +0200 Subject: [PATCH] Update service-scans-default.toml This is an update in the Dirsearch report's option syntax. --- src/autorecon/config/service-scans-default.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/autorecon/config/service-scans-default.toml b/src/autorecon/config/service-scans-default.toml index 55197e4..99fe492 100644 --- a/src/autorecon/config/service-scans-default.toml +++ b/src/autorecon/config/service-scans-default.toml @@ -145,8 +145,8 @@ ignore-service-names = [ [[http.manual]] description = '(dirsearch) Multi-threaded recursive directory/file enumeration for web servers using various wordlists:' commands = [ - 'dirsearch -u {scheme}://{address}:{port}/ -t 16 -r -e txt,html,php,asp,aspx,jsp -f -w /usr/share/seclists/Discovery/Web-Content/big.txt --plain-text-report="{scandir}/{protocol}_{port}_{scheme}_dirsearch_big.txt"', - 'dirsearch -u {scheme}://{address}:{port}/ -t 16 -r -e txt,html,php,asp,aspx,jsp -f -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt --plain-text-report="{scandir}/{protocol}_{port}_{scheme}_dirsearch_dirbuster.txt"' + 'dirsearch -u {scheme}://{address}:{port}/ -t 16 -r -e txt,html,php,asp,aspx,jsp -f -w /usr/share/seclists/Discovery/Web-Content/big.txt --output="{scandir}/{protocol}_{port}_{scheme}_dirsearch_big.txt" --format=plain', + 'dirsearch -u {scheme}://{address}:{port}/ -t 16 -r -e txt,html,php,asp,aspx,jsp -f -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt --output="{scandir}/{protocol}_{port}_{scheme}_dirsearch_dirbuster.txt" --format=plain' ] [[http.manual]]