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
pwndb | Kitploit
Tools/GitHubGitHub/jxlil/pwndb
OSINT (Open Source Intelligence)Password CrackingReconnaissanceData ExfiltrationInformation GatheringThreat IntelligenceArchived
GitHubjxlil/pwndb

pwndb

View Repository
534 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

pwndb

Leaked emails finder. Powered by: pwndb2am4tzkvold.onion

Installation

Prerequisites

root@kitploit:~
sudo apt install tor

Install

root@kitploit:~
git clone https://github.com/jxlil/pwndb.git; cd pwndb

virtualenv venv 
source venv/bin/activate

pip3 install -r requirements.txt

Usage

root@kitploit:~
usage: pwndb.py [-h] -t EMAIL [--password] [-V] [-o NAME_FILE] [--tor-proxy TOR_PROXY] [-v]

Leaked password finder

optional arguments:
  -h, --help                Show this help message and exit
  -t EMAIL, --target EMAIL  Set target email.
  --password                Search by password.
  -V, --verbose             Display results on screen.
  -o NAME_FILE, --output NAME_FILE
                        Save output in JSON format.
  --tor-proxy TOR_PROXY     Set Tor proxy.
  -v, --version             show program's version number and exit

Example

The Tor service needs to be active sudo service tor restart

root@kitploit:~
# It's character % serves as a wildcard
python3 bin/pwndb.py -t john.%@gmail.com -V -o emails.json

# You can also search by password
python3 bin/pwndb.py -t 123456789 --password -V -o passwords.json
Download Tool