Skip to content

InMyMine7/reverseip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

๐Ÿ” Reverse IP Lookup Tool (Multi-threaded)

A simple tool to perform mass reverse IP lookups quickly and efficiently. It uses threading to improve performance and automatically saves results to result.txt.

API used: https://sexreverseipz.vercel.app


โš™๏ธ Features

  • โœ… Input from file or direct terminal entry
  • โœ… Multi-threaded with ThreadPoolExecutor (default: 20 threads)
  • โœ… Automatically saves results to result.txt
  • โœ… Supports mixed domains & IP addresses
  • โœ… No extra dependencies (only requests)

๐Ÿ–ฅ๏ธ How to Use

1. Run the Script

python reverse_ip.py

2. Choose Input Method

  • From file
    Provide a file (e.g., input.txt) containing a list of IPs or domains (one per line).

  • Manual input
    You can input domains or IPs directly using:

    • Commas: 1.1.1.1, 8.8.8.8
    • Spaces: 1.1.1.1 8.8.8.8
    • Newlines

3. Output

Once the process completes, the domain results will be saved to:

result.txt

๐Ÿงช Example

input.txt

1.1.1.1
8.8.8.8
example.com

output (result.txt)

example.net
example.org
google.com

โš™๏ธ Configuration

  • MAX_WORKERS = 20 โ†’ number of threads for parallel execution
  • OUTPUT_FILE = 'result.txt' โ†’ output filename

โš ๏ธ Notes

  • This tool is for educational or authorized penetration testing purposes only.
  • Not all IPs will return domain results.
  • Make sure your internet connection is stable.

๐Ÿ“„ License

MIT License. Free to use, modify, and share. Use responsibly.

Releases

No releases published

Packages

No packages published

Languages