Skip to content

Commit

Permalink
Use wildcard script names
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSobky committed Feb 27, 2017
1 parent 345e1f3 commit 684a02e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AutoRecon.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 684a02e

Please sign in to comment.