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

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

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

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

工具目录

分类

查看所有分类
Loading categories
certstreamcatcher — 该工具基于正则表达式,运用有效标准通过certstream实时检测钓鱼网站,并且还能检测punycode(IDNA)攻击。 | Kitploit
工具/GitHubGitHub/jimywork/certstreamcatcher
OSINT (开源情报)钓鱼工具信息收集钓鱼攻击Web安全
GitHubjimywork/certstreamcatcher

certstreamcatcher

该工具基于正则表达式,运用有效标准通过certstream实时检测钓鱼网站,并且还能检测punycode(IDNA)攻击。

查看仓库
811967年前Kitploit 审核通过

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
网站

Certstreamcatcher

通过观察证书透明日志来捕获钓鱼网站。此工具基于正则表达式,使用有效标准实时检测钓鱼站点,利用certstream实现,同时也能检测例如 https://www.ṁyetḣerwallet.com 的punycode(IDNA)攻击。

钓鱼示例

Phishing

安装

root@kitploit:~
$ cd /opt/
$ git clone https://github.com/6IX7ine/certstreamcatcher.git
$ cd certstreamcatcher
$ npm install

npm 包

使用 npm 安装 certstreamcatcher 执行:

root@kitploit:~
npm install --save certstreamcatcher
   

在 npm runkit 上试用

这是一个用于测试 certstreamcatcher 的游乐场

https://npm.runkit.com/certstreamcatcher

使用方法

certstreamcatcher 极其简单,你只需导入 certstreamcatcher 和 certstream 库,注册回调函数,然后调用 certstreamClientPhishing 并将回调参数传递给它。

root@kitploit:~
const certstreamcatcher = require('certstreamcatcher'); 
const certstream = require("certstream");

const regex = /(wellsfargo|paypal|login|sign-in|secure|update|money|sslsecure|amazon)/gi; # 关键词

const tlds = ['.io','.gq','.ml','.cf','.tk','.xyz','.pw','.cc']; # 顶级域名

var client = new certstream(function(certstream) {  
	certstreamcatcher.certstreamClientPhishing(certstream, regex, tlds, {tlds: true});
});

client.connect();

要运行程序,将上述代码保存并使用以下命令执行:

root@kitploit:~
$ node certstreamcatcher.js

捐赠

  • XMR: 49m12JEEC6HPCHkLMX5QL4SrDQdKwh6eb4Muu8Z9CwA9MwemhzFQ3VcgHwyuR73rC22WCymTUyep7DVrfN3GPt5JBCekPrR
下载工具