Developing an Extensive Reverse IP Host Retrieval Script: Overcoming Limitations of Existing Python Libraries

uya

Newbie
Joined
May 10, 2024
Messages
1
Reaction score
0
How do tools like Hackertarget and ViewDNS.info retrieve multiple results for reverse IP hosts, considering that current Python libraries often provide only a single result for a given IP address? I'm interested in writing a script that retrieve all possible host names associated with a specific IP address by providing the IP as input.
 
am intrested in a tool that can give me bulk domain list using ip ranges
 
Tools like Hackertarget and ViewDNS.info retrieve multiple reverse DNS records by performing a reverse DNS lookup on the given IP address and then querying for all associated hostnames. To retrieve multiple hostnames in Python, you can use socket.gethostbyaddr() to get the PTR (Pointer) record, but to find all associated hostnames, you'd typically need to query multiple sources or DNS servers
 
Back
Top