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

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

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

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

工具目录

分类

查看所有分类
Loading categories
nuclei-wordfence-cve — 80k+ WordPress Nuclei 模板,每日从 Wordfence 情报更新——按严重性/标签/CVE 筛选,并用一行命令扫描。🚀🔒 | Kitploit
工具/GitHubGitHub/topscoder/nuclei-wordfence-cve
漏洞扫描器漏洞分析漏洞利用信息收集Web安全网络爬虫
GitHubtopscoder/nuclei-wordfence-cve

nuclei-wordfence-cve

80k+ WordPress Nuclei 模板,每日从 Wordfence 情报更新——按严重性/标签/CVE 筛选,并用一行命令扫描。🚀🔒

查看仓库
1.3k15428小时51分前Kitploit 审核通过

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

Nuclei + Wordfence = ♥

77,636 个用于 WordPress 安全扫描的 Nuclei 模板 🥳

GitHub Workflow Status pre-commit Templates added
项目演示

让你的 WordPress 安全水平更上一层楼!本项目汇集了海量全新的 Nuclei 模板,用于 WordPress 扫描。扫描核心(Core)、插件和主题中的弱点——全部基于 Wordfence.com 的最新情报。

为什么说它是你的新好朋友:

  • 海量模板库:无需再四处寻找单个模板,整个武器库尽在你的指尖。
  • 始终与时俱进:这些模板会随最新威胁持续更新,让你永远不会落后于形势。
  • 开源魔法:需要针对特定场景调整模板?没问题,你拥有完全的控制权。

如果你正在守护 WordPress 网站,这个项目就是你的秘密武器,能在攻击者得手之前识别漏洞。别再浪费时间,像专业人士一样保护你的网站吧!


[!TIP] 如果你觉得这个项目有帮助,不妨考虑请我喝杯咖啡。

Buy Me A Coffee

✨ 里面有什么?!

🚀 快速开始

要安装这个 nuclei-wordfence-cve 仓库以供 Nuclei 使用,你可以运行以下命令:

root@kitploit:~
export GITHUB_TEMPLATE_REPO=topscoder/nuclei-wordfence-cve
nuclei -update-templates

使用上述命令安装此模板仓库后,你可以运行以下命令,使用 Nuclei 扫描漏洞:

root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -u https://target.com

Wordfence 提供两个独立的漏洞订阅源。第一个订阅源仅包含生产漏洞,每个漏洞都已分配 CVE。第二个订阅源包含候选漏洞,这些漏洞尚未分配 CVE,并且可能会被提升到生产订阅源,也可能不会。为了区分由这些订阅源生成的模板,每个模板都会被打上一个标签——production 或 candidate——使你可以使用标签过滤器进行精准筛选。

仅包含生产模板:

root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -tags production -u https://target.com

仅包含候选模板:

root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -tags candidate -u https://target.com

💻 示例

以下是一些如何使用这些模板的示例:

  • 要扫描 WordPress 中的所有已知漏洞,你可以运行以下命令:
root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -u https://target.com
  • 要扫描特定 CVE 的漏洞,你可以运行以下命令:
root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -template-id cve-2023-32961 -u https://target.com
  • 要仅扫描严重漏洞,你可以运行以下命令:
root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -severity critical -u https://target.com
  • 要仅扫描 WordPress 核心漏洞,你可以运行以下命令:
root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -tags wp-core -u https://target.com
  • 要仅扫描 WordPress 插件漏洞,你可以运行以下命令:
root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -tags wp-plugin -u https://target.com
  • 要仅扫描 WordPress 主题漏洞,你可以运行以下命令:
root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -tags wp-theme -u https://target.com
  • 想玩得更大胆?你可以不断地组合、组合、再组合:
root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -tags wp-plugin,wp-theme -severity critical,high
  • 想玩得更疯狂?你可以使用模板条件标志(-tc),它支持如下所示的复杂表达式:
root@kitploit:~
nuclei -t github/topscoder/nuclei-wordfence-cve -template-condition "contains(to_lower(name),'cross-site scripting') || contains(to_upper(name),'XSS')" -u https://target.com

nuclei -t github/topscoder/nuclei-wordfence-cve -template-condition "contains(to_lower(name),'sql injection') || contains(to_lower(description),'sql injection')" -u https://target.com

nuclei -t github/topscoder/nuclei-wordfence-cve -template-condition "contains(to_lower(name),'file inclusion') || contains(to_lower(description),'file inclusion')" -u https://target.com

nuclei -t github/topscoder/nuclei-wordfence-cve -template-condition "contains(to_upper(name),'CSRF') || contains(to_upper(description),'CSRF')" -u https://target.com

🤖 严重级别重新计算

模板的严重级别会由解析器进行调整,以更好地反映真实世界的影响。src/lib/wordfence_api_parser.py 中的 determine_severity 函数会检查漏洞的标题和描述,并将那些仅限于已认证用户(例如需要登录或拥有提升角色)的问题下调严重级别。

示例(简化版):

  • 如果标题或描述中包含单词 authenticated(且不包含 unauthenticated),该函数会将此问题视为较低风险,并返回 Low 而不是更高的 CVSS 标签。

这有助于避免将 Medium/High 严重级别分配给仅影响已登录用户的漏洞,从而在扫描可公开访问的网站时减少噪音。

👥 参与贡献

如果你愿意为这个项目贡献力量,欢迎 fork 该仓库并提交 pull request。

📚 许可证

本项目基于 MIT 许可证授权。

[!NOTE] ~~ 请负责任地使用它!

下载工具
类别总数
wp-plugins71,166
wp-themes5,745
wp-core731
other0
严重级别总数
critical7,299
high12,455
medium22,341
low35,541
info0