
यह टूल virustotal में सहेजी गई जानकारी के आधार पर IP address से domains निकालता है।
अद्यतन V2: इसे python 2.7 से 3.8.10 में स्थानांतरित किया गया। अब यह एक इनपुट फ़ाइल और csv आउटपुट फ़ाइल का समर्थन करता है।
विवरण:
यह उपकरण आपको IP रेंज से डोमेन निकालने की अनुमति देता है, जिसमें Virustotal में संग्रहीत ऐतिहासिक जानकारी का उपयोग किया जाता है (API कुंजी का उपयोग करके)। यह उपयोगी है यदि आप जानना चाहते हैं कि इस IP पते के पीछे कौन से डोमेन हैं, उदाहरण के लिए बग बाउंटी कार्यक्रमों में पहले चरणों में से एक है सबडोमेन निकालना, यह उपकरण इस कार्य में मदद कर सकता है... पहले आपको उस IP रेंज का पता लगाना होगा जो किसी कंपनी द्वारा उपयोग की जाती है या आप IP सूची वाली फ़ाइल प्रदान कर सकते हैं। कई बार एक अच्छा प्रारंभिक बिंदु AS (स्वायत्त प्रणाली) नंबर जानना होता है, फिर आप IP रेंज पा सकते हैं।
इस उपकरण का उपयोग करने के लिए आपको कोड में अपनी Virustotal API कुंजी सेट करनी होगी, कृपया Virustotal पर साइन अप करें फिर वे आपको API कुंजी प्रदान करते हैं या मेरी परीक्षण API कुंजी का उपयोग करें।
उदाहरण:
python3 iptodomain3.py -f ips.txt -w output.csv -v
python3 iptodomain.py -l 103.22.201.25 -k 103.22.201.255 -o result.txt
उपयोग:
python3 iptodomain.py
usage: iptodomain.py [-h] [-l FIRST_IP] [-k LAST_IP] [-f INPUT_FILE] [-w FILE2] [-o FILE1] [-v] [-r FILE3]
-h, --help show this help message and exit
-l FIRST_IP The First IP of the range that you want to scan
-k LAST_IP The Last IP of the range that you want to scan.
-f INPUT_FILE Input file with IPs.
-w FILE2 Please enter the output file name, it will save a report with all domains and its IPs in .csv format
-o FILE1 Please enter the file name where the all IPs and domains found are going to save in txt format.
-v It shows more information while you are scanning.
-r FILE3 Please enter the output file name, it will save a report without duplicate domains results
This tool allow to extract domains from IP information on Virustotal and save
the output in a file(txt, csv). You have to set up the IP range where you like to
extract domain or subdomain or provide an IP list. Additionally it is neccesary set up your
VirusTotal API key in the code.
यह उपकरण निम्न द्वारा बनाया गया था:
Juan Esteban Valencia Pantoja