LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

dmitry

information gathering reconnaissance tool

TLDR

Perform whois lookup
$ dmitry -w [domain.com]
copy
Get netcraft info
$ dmitry -n [domain.com]
copy
Search for subdomains
$ dmitry -s [domain.com]
copy
Search for email addresses
$ dmitry -e [domain.com]
copy
Perform TCP port scan
$ dmitry -p [domain.com]
copy
Port scan with banner grabbing
$ dmitry -pb [domain.com]
copy
Run all information gathering
$ dmitry -winsepo [output.txt] [domain.com]
copy

SYNOPSIS

dmitry [options] host

DESCRIPTION

dmitry (Deepmagic Information Gathering Tool) is a UNIX command-line application for information gathering during penetration testing. It collects data about a host through various passive and active techniques.The tool combines multiple reconnaissance functions: whois lookups, Netcraft queries, subdomain enumeration, email harvesting, and TCP port scanning. Results can be consolidated into a single report file.dmitry is designed for the information gathering phase of security assessments, helping testers understand the target environment before more active testing.

PARAMETERS

HOST

Target domain or IP address.
-w
Perform whois lookup.
-n
Retrieve Netcraft information.
-s
Search for subdomains.
-e
Search for email addresses.
-p
Perform TCP port scan.
-b
Read banner from discovered ports (requires -p).
-f
Report filtered ports (requires -p).
-t SECONDS
Set TTL for the portscan module (default 2 seconds).
-o FILE
Save output to file.
-i
Perform Internet number whois lookup.
-h
Display help information.

CAVEATS

Some queries may be rate-limited. Port scanning should only be performed with authorization. Email harvesting depends on public data availability. Results may vary based on target configuration.

HISTORY

dmitry was developed for security professionals as a reconnaissance tool. It consolidates multiple information gathering techniques into a single utility, streamlining the initial phases of penetration testing engagements.

SEE ALSO

nmap(1), whois(1), dig(1), theHarvester(1)

Copied to clipboard
Kai