DMitry – Information Gathering Tool
DMitry – Information Gathering Tool
DMitry (Deepmagic Information Gathering Tool) is a command-line utility in Kali Linux used for gathering information about a target host. It helps security professionals collect data such as subdomains, email addresses, open ports, and more. This tool is useful for reconnaissance in penetration testing and ethical hacking.
- Performs WHOIS lookups to gather domain information.
- Scans for open ports on the target host.
- Retrieves subdomains associated with the target domain.
- Performs email address enumeration.
Install DMitry
DMitry comes pre-installed in Kali Linux. If it is not available, you can install it using the following command:
$ sudo apt-get install dmitry
Example Usage
To perform a basic scan on a target domain:
$ sudo dmitry -iwns example.com
This command collects WHOIS information, performs a subdomain search, and retrieves Netcraft data.
DMitry Options
DMitry provides various options to customize the scanning process:
-i
– Perform WHOIS lookup on the target domain.-w
– Perform a WHOIS lookup on the IP address of the target.-n
– Retrieve Netcraft information about the target.-s
– Search for subdomains of the target domain.-e
– Search for email addresses associated with the target domain.-p
– Perform a basic TCP port scan.
To scan a target for email addresses and open ports:
sudo dmitry -e -p example.com
This will retrieve email addresses and perform a TCP port scan on the target.
Stopping DMitry
To stop DMitry during execution, press:
CTRL + C
DMitry is a powerful reconnaissance tool that helps ethical hackers gather crucial information about a target domain. By using different options, users can perform deep scans and enhance their penetration testing efforts.