Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
pwndb — 基于Tor的泄露凭证搜索工具,能够查询pwndb2隐藏服务,查找数据泄露中暴露的电子邮件和密码,支持通配符和基于密码的搜索。 | Kitploit
工具/GitHubGitHub/jxlil/pwndb
OSINT (开源情报)密码破解侦察数据泄露信息收集威胁情报Archived
GitHubjxlil/pwndb

pwndb

基于Tor的泄露凭证搜索工具,能够查询pwndb2隐藏服务,查找数据泄露中暴露的电子邮件和密码,支持通配符和基于密码的搜索。

查看仓库
5355年前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

pwndb

泄露邮箱查找器。基于:pwndb2am4tzkvold.onion

安装

先决条件

root@kitploit:~
sudo apt install tor

安装

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

virtualenv venv 
source venv/bin/activate

pip3 install -r requirements.txt

用法

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

示例

Tor 服务需要处于活动状态 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
下载工具