diff --git a/AutoRecon.py b/AutoRecon.py index ee335be..c31fb79 100644 --- a/AutoRecon.py +++ b/AutoRecon.py @@ -24,11 +24,11 @@ def main(): dig_cmd = ['dig', '-t', 'txt', '+short', domain] wpscan_cmd = ['wpscan', '--force', '--update', '--url', domain] nmap_hosts_cmd = ['nmap', '-sn', ip_address + '/24'] - nmap_script_names = ('banner, dns-brute, ftp-anon, hostmap-ip2hosts,' + nmap_script_names = ('*-brute, banner, ftp-*, hostmap-ip2hosts,' 'http-config-backup, http-cross*, http-devframework,' 'http-enum, http-headers, http-methods, http-robots.txt,' 'http-shellshock, http-sitemap-generator, http-waf-fingerprint,' - 'http-xssed, smtp-open-relay, ssl-cert, ssl-enum-ciphers,' + 'http-xssed, smtp-*, ssl-cert, ssl-enum-ciphers,' 'ssl-heartbleed, ssl-poodle') nmap_full_cmd = ['nmap', '-sV', '-sS', '-A', '-Pn', '--script', nmap_script_names, domain]