mirror of
https://github.com/The-Art-of-Hacking/h4cker.git
synced 2024-10-01 01:25:43 -04:00
30 lines
614 B
Python
30 lines
614 B
Python
|
#quick_recon_Cli
|
||
|
#Coded by Adnane X Tebbaa
|
||
|
#Github : https://www.github.com/adnane-x-tebbaa/quick_recon
|
||
|
#Twitter : @TebbaaX
|
||
|
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
import time
|
||
|
import requests
|
||
|
import random
|
||
|
from googlesearch import search
|
||
|
from termcolor import colored, cprint
|
||
|
from http import cookiejar
|
||
|
|
||
|
|
||
|
|
||
|
TLD = ["com","ru","com.hk"]
|
||
|
beta = random.choice(TLD)
|
||
|
s = requests.Session()
|
||
|
|
||
|
|
||
|
print("")
|
||
|
key = input (colored('[+] Set Query : ', 'white' ))
|
||
|
print("")
|
||
|
print(colored ('[>] Running...' ,'green'))
|
||
|
query = key
|
||
|
for gamma in search(query, tld=beta, num=30 , stop=90 , pause=2):
|
||
|
print("" + gamma)
|