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

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

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

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

工具目录

分类

查看所有分类
Loading categories
disclo — 联系人搜索引擎 | Kitploit
工具/GitHubGitHub/chaelsoo/disclo
OSINT (开源情报)侦察信息收集社会工程学威胁情报子域名枚举电子邮件收集网络爬虫DNS 分析
GitHubchaelsoo/disclo

disclo

联系人搜索引擎

查看仓库
263个月前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

disclo

域名联系人查找工具。输入一个域名,就能通过12个被动来源并行获取与之关联的所有邮箱、用户名和线索。

root@kitploit:~
$ python disclo.py gitlab.com

disclo -> gitlab.com
----------------------------------------------------------------------

  [hackerone]
    https://hackerone.com/gitlab  (url)  <- Direct H1 handle match

  [nvd_cve]
    [email protected]  (email)  <- CVE sourceIdentifier (CVE-2021-22262)

  [security.txt]
    https://hackerone.com/gitlab/  (url)
    https://about.gitlab.com/security/disclosure/  (url)

  [twitter]
    https://twitter.com/gitlab  (twitter)  <- GitLab - Build software faster...

  Total: 30 contacts found

安装

root@kitploit:~
git clone https://github.com/Chaelsoo/disclo
cd disclo
pip install -r requirements.txt

使用

root@kitploit:~
python disclo.py <domain>

示例:

root@kitploit:~
python disclo.py example.com
python disclo.py tawk.to
python disclo.py speakylink.com

数据来源


可选环境变量

自动读取,无需额外标志。

变量作用
GITHUB_TOKEN提高 GitHub API 速率限制(5000 请求/小时 对比 60)
LINKEDIN_USER + LINKEDIN_PASS通过会话 API 启用 LinkedIn 联系人丰富
TWITTER_BEARER_TOKEN启用 Twitter v2 API 搜索
root@kitploit:~
export GITHUB_TOKEN=ghp_xxxxxxxxxxxx
python disclo.py target.com

输出类型

  • email - 邮箱地址
  • url - 平台或公告链接
  • twitter - Twitter/X 用户名
  • linkedin - LinkedIn 个人资料
  • github - GitHub 个人资料
  • other - 人员姓名

项目结构

root@kitploit:~
disclo/
├── disclo.py
├── requirements.txt
├── disclo/
│   ├── core/
│   │   ├── runner.py      # 异步编排器
│   │   ├── store.py       # 联系人去重
│   │   └── utils.py       # 邮箱验证
│   ├── sources/           # 每个数据源一个文件
│   │   ├── security_txt.py
│   │   ├── security_page.py
│   │   ├── dns_records.py
│   │   ├── crtsh.py
│   │   ├── hackerone.py
│   │   ├── github.py
│   │   ├── npm.py
│   │   ├── jobs.py
│   │   ├── nvd.py
│   │   ├── twitter.py
│   │   ├── sitecrawl.py
│   │   └── appstore.py
│   └── output/
│       └── printer.py

新增来源:在 disclo/sources/mysource.py 中创建一个 async def run(client, domain, store) 函数,然后将其导入并添加到 disclo/core/runner.py 中。

下载工具
来源获取内容
security.txt联系邮箱和网址
security_page从 /security、/contact、/about 页面提取的邮箱
dns_dmarc从 DMARC rua/ruf 记录中提取的邮箱
crtsh嵌入在证书 CN/签发者字段中的邮箱
hackeroneHackerOne 和 Bugcrowd 项目页面
github组织成员邮箱、SECURITY.md 链接
npm / pypi包维护者邮箱
job_postingLever 和 Greenhouse 上的职位链接
nvd_cveCVE sourceIdentifier 邮箱、HackerOne/Bugcrowd 引用
twitter通过 syndication API(无需认证)获取的用户名
sitecrawl基于站点地图爬取得到的邮箱和作者姓名
appstore通过包 ID 匹配的 App Store 开发者信息