Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/zeropwn/dnsdmpstr
OSINT (Open Source Intelligence)ReconnaissanceDNS & Subdomain EnumerationInformation GatheringDNS Analysis
GitHubzeropwn/dnsdmpstr

dnsdmpstr

Unofficial API & Client for dnsdumpster.com and hackertarget.com

View Repository
67197 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
dnsdmpstr — Unofficial API & Client for dnsdumpster.com and hackertarget.com | Kitploit

dnsdmpstr

Unofficial API & Client for DNS Dumpster and HackerTarget.com IP tools.

  • https://dnsdumpster.com/
  • https://hackertarget.com/ip-tools/

Installation

root@kitploit:~
git clone https://github.com/zeropwn/dnsdmpstr
cd dnsdmpstr
pip3 install -r requirements.txt
chmod +x ddump.py

Usage

As a command-line utility

root@kitploit:~
target="hackerone.com"
python3 ddump.py -u $target --all

Extended usage

root@kitploit:~
usage: ddump.py [-h] [-u U] [-a] [-r] [-d] [-dd] [--links] [--headers] [--all]

optional arguments:
  -h, --help  show this help message and exit
  -u U        target domain
  -a          host search (DNS A Record lookup)
  -r          reverse dns lookup (accepts IP, IP range or domain name)
  -d          dns lookup
  -dd         classical dns dump format
  --links     grab page links from url
  --headers   grab http headers from url
  --all       grab all information available

As a library

root@kitploit:~
import dnsdmpstr

target = "hackerone.com"

dnsdump = dnsdmpstr()
print(json.dumps(dnsdump.dump(target), indent=1))
print(dnsdump.hostsearch(target))
print(dnsdump.reversedns(target))
print(dnsdump.dnslookup(target))
print(dnsdump.pagelinks(target))
print(dnsdump.httpheaders(target))
Download Tool