XDGe

XDGe It's Tool For Direction Brute Force And Gathering Direction by Dork

IF You Want GoogleDork Function?

def GOscan(URLTARGET,DORKUSERFILE):
	DOKERLIST = []
	GODOKERFILE = open(DORKUSERFILE,"r")
	for CONGODOKER in GODOKERFILE:
		DOKERLIST.append(CONGODOKER)
	for CONDOKERLIST in range(len(DOKERLIST)):
			DORKTARGET = DOKERLIST[CONDOKERLIST].replace(" ","+").replace("\n","")
			SETGODORK  = "site:{URLTARGET}+{DORKTARGET}".format(URLTARGET=URLTARGET, DORKTARGET=DORKTARGET)
			SETGOWEBS  = 'https://www.google.com/search?q='+SETGODORK+'&client=firefox-b-d&start=0'
			REQGODORK  = urllib.request.Request(SETGOWEBS)
			REQGODORK.add_header('User-Agent', 'Mozilla/7000.0 XAR')
			REQGODORK.add_header('Accept', 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8')
			REQGODORK.add_header('Accept-Language', 'en-US,en;q=0.8')
			#---------------------------------------------
			REQGOOGLE  = urllib.request.urlopen(REQGODORK, timeout=10)
			RESGODORK  = REQGOOGLE.read()
			REQGOOGLE.close()
			CLEARREQD  = re.findall('<a.href="/url\?q=(.*?)\&amp', str(RESGODORK))
			for DO in CLEARREQD:
				if "https://support.google.com" in DO or "https://accounts.google.com/" in DO:
					pass
				else:
					print(DO)
			time.sleep(1)

XDG-TEM

GitHub

https://github.com/XZRFMA/XDGe