IPFinder is a Rest-API that helps you quickly discover the REAL IP
of a website with lightning-fast speed and precision, especially for websites protected by Cloudflare. It's the fastest on GitHub.
Note For the first request, it may take some time to respond due to spin down or inactivity. Remember not all the results are positive.
- Quart - Using Hypercorn or an alternative ASGI server
- CrimeFlare (Real IP) - True by default
- ZoomEye (Real IP) - False by default
- SubWhois (Subdomains) - False by default
- DNS Dumpster (DNS Info) - False by default
- Port Scanner (Scanning port on Real IP) - False by default
Note Enable the Port Scanner only if both CrimeFlare or ZoomEye are set to ‘True’.
domain_info
ip_info (Bonus)
{'query_domain': 'TARGET DOMAIN'}
{
'zoomeye': False,
'subwhois': False,
'dumpster': False,
'port_scan': False
}
import requests
domain = 'streak.com'
url = 'https://async-quart.onrender.com/domain_info'
json_data = {'query_domain': domain}
response = requests.post(url, json=json_data)
print(response.text)
import requests
domain = 'streak.com'
url = 'https://async-quart.onrender.com/domain_info'
json_data = {
'query_domain': domain,
'zoomeye': True,
}
response = requests.post(url, json=json_data)
print(response.text)
Note It is not recommended to run all modes simultaneously.
import requests
domain = 'streak.com'
url = 'https://async-quart.onrender.com/domain_info'
json_data = {
'query_domain': domain,
'zoomeye': True,
'dumpster': True,
'subwhois': True,
'port_scan': True
}
response = requests.post(url, json=json_data)
print(response.text)
To check your current IP
import requests
url = 'https://async-quart.onrender.com/ip_info'
response = requests.get(url)
print(response.text)
To check with custom IP
import requests
custom_ip = '37.19.205.147'
params = {'ip': custom_ip}
url = 'https://async-quart.onrender.com/ip_info'
response = requests.get(url, params=params)
print(response.text)
- Single run results (singlerun)
- Custom switch results (customswitch)
- All modes results (allmodes)
- Current IP results (currentip)
- Custom IP results (customip)
Note This was made for educational purposes only, nobody which directly involved in this project is responsible for any damages caused. You are responsible for your actions.