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
- โ 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
)
python reverse_ip.py
-
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
- Commas:
Once the process completes, the domain results will be saved to:
result.txt
1.1.1.1
8.8.8.8
example.com
example.net
example.org
google.com
MAX_WORKERS = 20
โ number of threads for parallel executionOUTPUT_FILE = 'result.txt'
โ output filename
- 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.
MIT License. Free to use, modify, and share. Use responsibly.