Open In App

Ipdump – Generate a Report for hostname Ipaddress URL or domain in Kali Linux

Last Updated : 23 Aug, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Ipdump is free and open-source available on GitHub. This tool can retrieve IP or Domain Geolocation, Whois information, closed and open ports details.

Features of Ipdump:

  • Ipdump can be used to retrieve Geolocation information.
  • Ipdump can be used to fetch the SSL certification of a domain.
  • Ipdump can be used to get WHOIS information of IP addresses and domains.
  • Ipdump can be used for port scanning to find open and closed ports of domains and Ipaddress.

Installation:

Step 1: Open your kali Linux operating system and use the following command to install the tool. Use the second command to move into the directory of the tool.

git clone https://github.com/adamdb5/IPDump.git
cd IPDump

Step 2: Now you are in the directory of the tool. Use the following command to install the requirements of the tool.

pip3 install -r requirements.txt

Step 3: All the dependencies have been successfully installed in your kali Linux operating system. Now use the following command to run the tool.

./ipdump.py -h

The tool is running successfully now we will see some examples to use the tool.

Usage

Example 1: Use the Ipdump tool to get the geolocation of an IP address.

./ipdump.py <ip address> -i

Example 2: Use the Ipdump tool to get SSL certificates of a domain.

./ipdump.py <ip address> -s

Example 3: Use the Ipdump tool to get Whois information of a domain.

./ipdump.py <ip address> -w


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads