import os import sys print "-"*100 print "Trying host command." print "-"*100 os.system("host{}".format(sys.argv[1])) print "-"*100 print "Trying dig command." print "-"*100 os.system("dig{}".format(sys.argv[1])) print "-"*100 print "Trying dnsenum command." print "-"*100 os.system("dnsenum{}".format(sys.argv[1])) print "-"*100 print "Trying nslookup command." print "-"*100 os.system("nslookup{}".format(sys.argv[1])) print "-"*100 print "Trying dnsrecon command." print "-"*100 os.system("dnsrecon{}".format(sys.argv[1])) print "-"*100 print "Trying whois command." print "-"*100 os.system("whois{}".format(sys.argv[1])) print "-"*100 print "Trying tcptraceroute command." print "-"*100 os.system("tcptraceroute{}".format(sys.argv[1]))