# Cloudflare Resolver V1
# Coded By Alice
# www.youtube.com/c/exodoteam
# Skype: princesa.alice
import socket
def getsite():
global site
site = raw_input("[#] Enter the URL: ")
if site[:7] == "http://":
site = site[7:]
elif site[:8] == "https://":
site=site[8:]
getsite()
def getip():
list = ["cpanel.","ftp.","mail.","webmail.","direct.","direct-connect.", "record."]
print("[!] Trying to grab the real IP using different protocols./ Tentando pegar o IP real usando protocolos diferentes.")
for item in list:
try:
ip = socket.gethostbyname(item + site)
print "[+] " + item + site + ", " + ip + " found."
except:
print("[-] " + item + site + " not found.")
getip()
# Cloudflare Resolver V1
# Coded By Alice
# www.youtube.com/c/exodoteam
# Skype: princesa.alice
# Coded By Alice
# www.youtube.com/c/exodoteam
# Skype: princesa.alice
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.