Coder Social home page Coder Social logo

devopsjohndoe / ip-finder Goto Github PK

View Code? Open in Web Editor NEW

This project forked from x404xx/ip-finder

0.0 0.0 0.0 23 KB

Rest-API that helps you quickly discover the REAL IP of a website, especially for websites protected by Cloudflare. It's the fastest on GitHub.

ip-finder's Introduction

IPFinder

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.

Made With

  • Quart - Using Hypercorn or an alternative ASGI server

Methods

  • 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’.

Endpoint (Click this url first to check the server is UP or NOT)

Parameter

domain_info
ip_info (Bonus)

Required (as JSON data)

{'query_domain': 'TARGET DOMAIN'}

Modes (as JSON data)

{
    'zoomeye': False,
    'subwhois': False,
    'dumpster': False,
    'port_scan': False
}

Usage

  • Single Run (CrimeFlare)

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)
  • Custom Switch (CrimeFlare and ZoomEye)

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)
  • All Modes (CrimeFlare, ZoomEye, SubWhois, DNSDumpster) + Port Scanner

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)

IP Checker (Bonus)

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)

JSON Output

Test Found IP

Screenshot (20231025-032657)

Legal Disclaimer

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.

ip-finder's People

Contributors

x404xx avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.