#!/usr/bin/env python ## Title: domainhunter.py ## Author: @joevest and @andrewchiles ## Description: Checks expired domains, reputation/categorization, and Archive.org history to determine ## good candidates for phishing and C2 domain names # To-do: # Code cleanup/optimization # Add Authenticated "Members-Only" option to download CSV/txt (https://member.expireddomains.net/domains/expiredcom/) import time import random import argparse import json __version__ = "20180409" ## Functions def doSleep(timing): if timing == 0: time.sleep(random.randrange(90,120)) elif timing == 1: time.sleep(random.randrange(60,90)) elif timing == 2: time.sleep(random.randrange(30,60)) elif timing == 3: time.sleep(random.randrange(10,20)) elif timing == 4: time.sleep(random.randrange(5,10)) else: # Maxiumum speed - no delay pass def checkBluecoat(domain): try: url = 'https://sitereview.bluecoat.com/resource/lookup' postData = {'url':domain,'captcha':''} # HTTP POST Parameters headers = {'User-Agent':useragent, 'Content-Type':'application/json; charset=UTF-8', 'Referer':'https://sitereview.bluecoat.com/lookup'} print('[*] BlueCoat: {}'.format(domain)) response = s.post(url,headers=headers,json=postData,verify=False) responseJSON = json.loads(response.text) if 'errorType' in responseJSON: a = responseJSON['errorType'] else: a = responseJSON['categorization'][0]['name'] # # Print notice if CAPTCHAs are blocking accurate results # if a == 'captcha': # print('[-] Error: Blue Coat CAPTCHA received. Change your IP or manually solve a CAPTCHA at "https://sitereview.bluecoat.com/sitereview.jsp"') # #raw_input('[*] Press Enter to continue...') return a except: print('[-] Error retrieving Bluecoat reputation!') return "-" def checkIBMxForce(domain): try: url = 'https://exchange.xforce.ibmcloud.com/url/{}'.format(domain) headers = {'User-Agent':useragent, 'Accept':'application/json, text/plain, */*', 'x-ui':'XFE', 'Origin':url, 'Referer':url} print('[*] IBM xForce: {}'.format(domain)) url = 'https://api.xforce.ibmcloud.com/url/{}'.format(domain) response = s.get(url,headers=headers,verify=False) responseJSON = json.loads(response.text) if 'error' in responseJSON: a = responseJSON['error'] elif not responseJSON['result']['cats']: a = 'Uncategorized' else: categories = '' # Parse all dictionary keys and append to single string to get Category names for key in responseJSON["result"]['cats']: categories += '{0}, '.format(str(key)) a = '{0}(Score: {1})'.format(categories,str(responseJSON['result']['score'])) return a except: print('[-] Error retrieving IBM x-Force reputation!') return "-" def checkTalos(domain): url = "https://www.talosintelligence.com/sb_api/query_lookup?query=%2Fapi%2Fv2%2Fdetails%2Fdomain%2F&query_entry={0}&offset=0&order=ip+asc".format(domain) headers = {'User-Agent':useragent, 'Referer':url} print('[*] Cisco Talos: {}'.format(domain)) try: response = s.get(url,headers=headers,verify=False) responseJSON = json.loads(response.text) if 'error' in responseJSON: a = str(responseJSON['error']) elif responseJSON['category'] is None: a = 'Uncategorized' else: a = '{0} (Score: {1})'.format(str(responseJSON['category']['description']), str(responseJSON['web_score_name'])) return a except: print('[-] Error retrieving Talos reputation!') return "-" def checkMXToolbox(domain): url = 'https://mxtoolbox.com/Public/Tools/BrandReputation.aspx' headers = {'User-Agent':useragent, 'Origin':url, 'Referer':url} print('[*] Google SafeBrowsing and PhishTank: {}'.format(domain)) try: response = s.get(url=url, headers=headers) soup = BeautifulSoup(response.content,'lxml') viewstate = soup.select('input[name=__VIEWSTATE]')[0]['value'] viewstategenerator = soup.select('input[name=__VIEWSTATEGENERATOR]')[0]['value'] eventvalidation = soup.select('input[name=__EVENTVALIDATION]')[0]['value'] data = { "__EVENTTARGET": "", "__EVENTARGUMENT": "", "__VIEWSTATE": viewstate, "__VIEWSTATEGENERATOR": viewstategenerator, "__EVENTVALIDATION": eventvalidation, "ctl00$ContentPlaceHolder1$brandReputationUrl": domain, "ctl00$ContentPlaceHolder1$brandReputationDoLookup": "Brand Reputation Lookup", "ctl00$ucSignIn$hfRegCode": 'missing', "ctl00$ucSignIn$hfRedirectSignUp": '/Public/Tools/BrandReputation.aspx', "ctl00$ucSignIn$hfRedirectLogin": '', "ctl00$ucSignIn$txtEmailAddress": '', "ctl00$ucSignIn$cbNewAccount": 'cbNewAccount', "ctl00$ucSignIn$txtFullName": '', "ctl00$ucSignIn$txtModalNewPassword": '', "ctl00$ucSignIn$txtPhone": '', "ctl00$ucSignIn$txtCompanyName": '', "ctl00$ucSignIn$drpTitle": '', "ctl00$ucSignIn$txtTitleName": '', "ctl00$ucSignIn$txtModalPassword": '' } response = s.post(url=url, headers=headers, data=data) soup = BeautifulSoup(response.content,'lxml') a = '' if soup.select('div[id=ctl00_ContentPlaceHolder1_noIssuesFound]'): a = 'No issues found' return a else: if soup.select('div[id=ctl00_ContentPlaceHolder1_googleSafeBrowsingIssuesFound]'): a = 'Google SafeBrowsing Issues Found. ' if soup.select('div[id=ctl00_ContentPlaceHolder1_phishTankIssuesFound]'): a += 'PhishTank Issues Found' return a except Exception as e: print('[-] Error retrieving Google SafeBrowsing and PhishTank reputation!') return "-" def downloadMalwareDomains(malwaredomainsURL): url = malwaredomainsURL response = s.get(url,headers=headers,verify=False) responseText = response.text if response.status_code == 200: return responseText else: print("[-] Error reaching:{} Status: {}").format(url, response.status_code) def checkDomain(domain): print('[*] Fetching domain reputation for: {}'.format(domain)) if domain in maldomainsList: print("[!] {}: Identified as known malware domain (malwaredomains.com)".format(domain)) mxtoolbox = checkMXToolbox(domain) print("[+] {}: {}".format(domain, mxtoolbox)) bluecoat = checkBluecoat(domain) print("[+] {}: {}".format(domain, bluecoat)) ibmxforce = checkIBMxForce(domain) print("[+] {}: {}".format(domain, ibmxforce)) ciscotalos = checkTalos(domain) print("[+] {}: {}".format(domain, ciscotalos)) print("") return ## MAIN if __name__ == "__main__": try: import requests from bs4 import BeautifulSoup from texttable import Texttable except Exception as e: print("Expired Domains Reputation Check") print("[-] Missing dependencies: {}".format(str(e))) print("[*] Install required dependencies by running `pip install -r requirements.txt`") quit(0) parser = argparse.ArgumentParser(description='Finds expired domains, domain categorization, and Archive.org history to determine good candidates for C2 and phishing domains') parser.add_argument('-q','--query', help='Keyword used to refine search results', required=False, default=False, type=str, dest='query') parser.add_argument('-c','--check', help='Perform domain reputation checks', required=False, default=False, action='store_true', dest='check') parser.add_argument('-r','--maxresults', help='Number of results to return when querying latest expired/deleted domains', required=False, default=100, type=int, dest='maxresults') parser.add_argument('-s','--single', help='Performs detailed reputation checks against a single domain name/IP.', required=False, default=False, dest='single') parser.add_argument('-t','--timing', help='Modifies request timing to avoid CAPTCHAs. Slowest(0) = 90-120 seconds, Default(3) = 10-20 seconds, Fastest(5) = no delay', required=False, default=3, type=int, choices=range(0,6), dest='timing') parser.add_argument('-w','--maxwidth', help='Width of text table', required=False, default=400, type=int, dest='maxwidth') parser.add_argument('-v','--version', action='version',version='%(prog)s {version}'.format(version=__version__)) args = parser.parse_args() ## Variables query = args.query check = args.check maxresults = args.maxresults single = args.single timing = args.timing maxwidth = args.maxwidth malwaredomainsURL = 'http://mirror1.malwaredomains.com/files/justdomains' expireddomainsqueryURL = 'https://www.expireddomains.net/domain-name-search' timestamp = time.strftime("%Y%m%d_%H%M%S") useragent = 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)' headers = {'User-Agent':useragent} requests.packages.urllib3.disable_warnings() # HTTP Session container, used to manage cookies, session tokens and other session information s = requests.Session() data = [] title = ''' ____ ___ __ __ _ ___ _ _ _ _ _ _ _ _ _____ _____ ____ | _ \ / _ \| \/ | / \ |_ _| \ | | | | | | | | | \ | |_ _| ____| _ \ | | | | | | | |\/| | / _ \ | || \| | | |_| | | | | \| | | | | _| | |_) | | |_| | |_| | | | |/ ___ \ | || |\ | | _ | |_| | |\ | | | | |___| _ < |____/ \___/|_| |_/_/ \_\___|_| \_| |_| |_|\___/|_| \_| |_| |_____|_| \_\ ''' print(title) print("") print("Expired Domains Reputation Checker") print("Authors: @joevest and @andrewchiles\n") print("DISCLAIMER: This is for educational purposes only!") disclaimer = '''It is designed to promote education and the improvement of computer/cyber security. The authors or employers are not liable for any illegal act or misuse performed by any user of this tool. If you plan to use this content for illegal purpose, don't. Have a nice day :)''' print(disclaimer) print("") # Download known malware domains print('[*] Downloading malware domain list from {}\n'.format(malwaredomainsURL)) maldomains = downloadMalwareDomains(malwaredomainsURL) maldomainsList = maldomains.split("\n") # Retrieve reputation for a single choosen domain (Quick Mode) if single: checkDomain(single) quit(0) # Calculate estimated runtime based on timing variable if checking domain categorization for all returned domains if check: if timing == 0: seconds = 90 elif timing == 1: seconds = 60 elif timing == 2: seconds = 30 elif timing == 3: seconds = 20 elif timing == 4: seconds = 10 else: seconds = 0 runtime = (maxresults * seconds) / 60 print("[*] Peforming Domain Categorization Lookups:") print("[*] Estimated duration is {} minutes. Modify lookup speed with -t switch.\n".format(int(runtime))) else: pass # Generic Proxy support # TODO: add as a parameter proxies = { 'http': 'http://127.0.0.1:8080', 'https': 'http://127.0.0.1:8080', } # Create an initial session domainrequest = s.get("https://www.expireddomains.net",headers=headers,verify=False) # Use proxy like Burp for debugging request/parsing errors #domainrequest = s.get("https://www.expireddomains.net",headers=headers,verify=False,proxies=proxies) # Generate list of URLs to query for expired/deleted domains urls = [] # Use the keyword string to narrow domain search if provided if query: print('[*] Fetching expired or deleted domains containing "{}"'.format(query)) for i in range (0,maxresults,25): if i == 0: urls.append("{}/?q={}".format(expireddomainsqueryURL,query)) headers['Referer'] ='https://www.expireddomains.net/domain-name-search/?q={}&start=1'.format(query) else: urls.append("{}/?start={}&q={}".format(expireddomainsqueryURL,i,query)) headers['Referer'] ='https://www.expireddomains.net/domain-name-search/?start={}&q={}'.format((i-25),query) # If no keyword provided, retrieve list of recently expired domains in batches of 25 results. else: print('[*] Fetching expired or deleted domains...') # Caculate number of URLs to request since we're performing a request for four different resources instead of one numresults = int(maxresults / 4) for i in range (0,(numresults),25): urls.append('https://www.expireddomains.net/backorder-expired-domains?start={}&o=changed&r=a'.format(i)) urls.append('https://www.expireddomains.net/deleted-com-domains/?start={}&o=changed&r=a'.format(i)) urls.append('https://www.expireddomains.net/deleted-net-domains/?start={}&o=changed&r=a'.format(i)) urls.append('https://www.expireddomains.net/deleted-org-domains/?start={}&o=changed&r=a'.format(i)) for url in urls: print("[*] {}".format(url)) # Annoyingly when querying specific keywords the expireddomains.net site requires additional cookies which # are set in JavaScript and not recognized by Requests so we add them here manually. # May not be needed, but the _pk_id.10.dd0a cookie only requires a single . to be successful # In order to somewhat match a real cookie, but still be different, random integers are introduced r1 = random.randint(100000,999999) # Known good example _pk_id.10.dd0a cookie: 5abbbc772cbacfb1.1496760705.2.1496760705.1496760705 pk_str = '5abbbc772cbacfb1' + '.1496' + str(r1) + '.2.1496' + str(r1) + '.1496' + str(r1) jar = requests.cookies.RequestsCookieJar() jar.set('_pk_ses.10.dd0a', '*', domain='expireddomains.net', path='/') jar.set('_pk_id.10.dd0a', pk_str, domain='expireddomains.net', path='/') domainrequest = s.get(url,headers=headers,verify=False,cookies=jar) #domainrequest = s.get(url,headers=headers,verify=False,cookies=jar,proxies=proxies) domains = domainrequest.text # Turn the HTML into a Beautiful Soup object soup = BeautifulSoup(domains, 'lxml') table = soup.find("table") try: for row in table.findAll('tr')[1:]: # Alternative way to extract domain name # domain = row.find('td').find('a').text cells = row.findAll("td") if len(cells) >= 1: output = "" if query: c0 = row.find('td').find('a').text # domain c1 = cells[1].find(text=True) # bl c2 = cells[2].find(text=True) # domainpop c3 = cells[3].find(text=True) # birth c4 = cells[4].find(text=True) # Archive.org entries c5 = cells[5].find(text=True) # similarweb c6 = cells[6].find(text=True) # similarweb country code c7 = cells[7].find(text=True) # Dmoz.org c8 = cells[8].find(text=True) # status com c9 = cells[9].find(text=True) # status net c10 = cells[10].find(text=True) # status org c11 = cells[11].find(text=True) # status de c12 = cells[12].find(text=True) # tld registered c13 = cells[13].find(text=True) # Related Domains c14 = cells[14].find(text=True) # Domain list c15 = cells[15].find(text=True) # status c16 = cells[16].find(text=True) # related links else: c0 = cells[0].find(text=True) # domain c1 = cells[1].find(text=True) # bl c2 = cells[2].find(text=True) # domainpop c3 = cells[3].find(text=True) # birth c4 = cells[4].find(text=True) # Archive.org entries c5 = cells[5].find(text=True) # similarweb c6 = cells[6].find(text=True) # similarweb country code c7 = cells[7].find(text=True) # Dmoz.org c8 = cells[8].find(text=True) # status com c9 = cells[9].find(text=True) # status net c10 = cells[10].find(text=True) # status org c11 = cells[11].find(text=True) # status de c12 = cells[12].find(text=True) # tld registered c13 = cells[13].find(text=True) # changes c14 = cells[14].find(text=True) # whois c15 = "" # not used c16 = "" # not used c17 = "" # not used # Expired Domains results have an additional 'Availability' column that breaks parsing "deleted" domains #c15 = cells[15].find(text=True) # related links available = '' if c8 == "available": available += ".com " if c9 == "available": available += ".net " if c10 == "available": available += ".org " if c11 == "available": available += ".de " status = "" if c15: status = c15 # Skip additional reputation checks if this domain is already categorized as malicious if c0 in maldomainsList: print("[-] Skipping {} - Identified as known malware domain").format(c0) else: bluecoat = '' ibmxforce = '' if c3 == '-': bluecoat = 'ignored' ibmxforce = 'ignored' elif check == True: bluecoat = checkBluecoat(c0) print("[+] {}: {}".format(c0, bluecoat)) ibmxforce = checkIBMxForce(c0) print("[+] {}: {}".format(c0, ibmxforce)) # Sleep to avoid captchas doSleep(timing) else: bluecoat = "skipped" ibmxforce = "skipped" # Append parsed domain data to list data.append([c0,c3,c4,available,status,bluecoat,ibmxforce]) except Exception as e: print(e) # Sort domain list by column 2 (Birth Year) sortedData = sorted(data, key=lambda x: x[1], reverse=True) # Build HTML Table html = '' htmlHeader = 'Expired Domain List' htmlBody = '

The following available domains report was generated at {}

'.format(timestamp) htmlTableHeader = ''' ''' htmlTableBody = '' htmlTableFooter = '
Domain Birth Entries TLDs Available Status Symantec Categorization IBM-xForce Categorization WatchGuard Namecheap Archive.org
' htmlFooter = '' # Build HTML table contents for i in sortedData: htmlTableBody += '' htmlTableBody += '{}'.format(i[0]) # Domain htmlTableBody += '{}'.format(i[1]) # Birth htmlTableBody += '{}'.format(i[2]) # Entries htmlTableBody += '{}'.format(i[3]) # TLDs htmlTableBody += '{}'.format(i[4]) # Status htmlTableBody += 'Bluecoat'.format(i[0]) # Bluecoat htmlTableBody += '{}'.format(i[5]) # Bluecoat Categorization htmlTableBody += 'IBM-xForce'.format(i[0]) # IBM xForce htmlTableBody += '{}'.format(i[6]) # IBM x-Force Categorization htmlTableBody += 'WatchGuard'.format(i[0]) # Borderware WatchGuard htmlTableBody += 'Namecheap'.format(i[0]) # Namecheap htmlTableBody += 'Archive.org'.format(i[0]) # Archive.org htmlTableBody += '' html = htmlHeader + htmlBody + htmlTableHeader + htmlTableBody + htmlTableFooter + htmlFooter logfilename = "{}_domainreport.html".format(timestamp) log = open(logfilename,'w') log.write(html) log.close print("\n[*] Search complete") print("[*] Log written to {}\n".format(logfilename)) # Print Text Table t = Texttable(max_width=maxwidth) t.add_rows(sortedData) header = ['Domain', 'Birth', '#', 'TLDs', 'Status', 'Symantec', 'IBM'] t.header(header) print(t.draw())