Skip to content

Commit

Permalink
Add more NSE scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSobky committed Feb 28, 2017
1 parent 684a02e commit fd2145d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions AutoRecon.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +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 = ('*-brute, banner, ftp-*, hostmap-ip2hosts,'
'http-config-backup, http-cross*, http-devframework,'
'http-enum, http-headers, http-methods, http-robots.txt,'
nmap_script_names = ('*-vuln*, banner, default, dns-brute,'
'dns-zone-transfer, ftp-*, hostmap-ip2hosts, http-config-backup,'
'http-cross*, http-devframework, http-enum, http-headers,'
'http-shellshock, http-sitemap-generator, http-waf-fingerprint,'
'http-xssed, smtp-*, ssl-cert, ssl-enum-ciphers,'
'ssl-heartbleed, ssl-poodle')
'http-xssed, smtp-*, ssl-*, version')
nmap_full_cmd = ['nmap', '-sV', '-sS', '-A', '-Pn', '--script',
nmap_script_names, domain]
cmds = {'TXT Records': dig_cmd, 'WHOIS Info': whois_cmd,
Expand Down

0 comments on commit fd2145d

Please sign in to comment.