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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2019-17240_Bludit-BF-Bypass — Bludit <= 3.9.2 - 身份验证暴力破解缓解绕过漏洞利用/PoC | Kitploit
工具/GitHubGitHub/coldfusionx/cve-2019-17240_bludit-bf-bypass
密码攻击漏洞分析漏洞利用Web应用程序漏洞利用渗透测试学习与教育
GitHubcoldfusionx/cve-2019-17240_bludit-bf-bypass

CVE-2019-17240_Bludit-BF-Bypass

Bludit <= 3.9.2 - 身份验证暴力破解缓解绕过漏洞利用/PoC

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
查看仓库
网站
2325年前尚未审核

CVE-2019-17240 Exploit/PoC - Bludit 暴力破解缓解绕过

针对 CVE-2019-17240(又名 Bludit <= 3.9.2 暴力破解缓解绕过)的漏洞利用代码

漏洞利用链接: [ExploitDB-48942] [PacketStorm]

预期结果:发现登录凭据,绕过运行 Bludit <=3.9.2 的主机上的暴力破解机制。

仅用于企业环境中的教育和测试。

此漏洞利用已在 Python 3.8.6 上测试。

用法

root@kitploit:~
cfx:  ~/bludit 
→ ./exploit.py -h
usage: exploit.py [-h] [-l URL] [-u USERLIST] [-p PASSLIST]

Bludit <= 3.9.2 Auth Bruteforce Mitigation Bypass

optional arguments:
  -h, --help            show this help message and exit
  -l URL, --url URL     Path to Bludit (Example: http://127.0.0.1/admin/login.php)
  -u USERLIST, --userlist USERLIST
                        Username Dictionary
  -p PASSLIST, --passlist PASSLIST
                        Password Dictionary

Exploit Usage : 
./exploit.py -l http://127.0.0.1/admin/login.php -u user.txt -p pass.txt
./exploit.py -l http://127.0.0.1/admin/login.php -u /Directory/user.txt -p /Directory/pass.txt
  • 请确保已安装 Python3,并安装以下附加模块:

额外必需的 Python 模块:

  • requests
  • pwn

安装:

root@kitploit:~
pip3 install pwn
pip3 install requests

概念验证:

此漏洞利用需要三个用户输入:

  • URL :登录页面 URL
  • User.txt :潜在的用户名列表,为演示目的,我们在 user.txt 中放置了单个用户名
  • Pass.txt :包含密码列表的字典

执行漏洞利用

漏洞利用的用法:将 user.txt 中的用户名与 pass.txt 中的每个密码进行匹配,并发送到登录页面:

execute

词语拦截

来自 pass.txt 的值会发送到 X-Forwarded-For 请求头中;如果列表中包含的密码数量较少,则某些词语可能会被服务器拦截,在这种情况下,脚本会在输出中显示被拦截的词语:

block

成功输出

登录成功后,将显示包含有效凭据的以下输出:

success

参考

这是针对 Rastating 在 Bludit CMS 上发现的漏洞的漏洞利用。

漏洞说明:https://rastating.github.io/bludit-brute-force-mitigation-bypass/。

补丁:https://github.com/bludit/bludit/pull/1090

下载工具