DigiSpark-Scripts/Fork_Bomb
unknown 6b4ab96ca5 Added new fork bomb script and modified existing one 2019-08-24 15:43:03 +02:00
..
Fork_Bomb.ino Added new fork bomb script and modified existing one 2019-08-24 15:43:03 +02:00
Persistent_Fork_Bomb.ino Added new fork bomb script and modified existing one 2019-08-24 15:43:03 +02:00
README.md Added new fork bomb script and modified existing one 2019-08-24 15:43:03 +02:00

README.md

Fork_Bomb

This script does the following:

  1. Starts Command prompt
  2. Resizes and changes colors of Command prompt
  3. Executes fork bomb

Persistent_Fork_Bomb

This script does the following:

  1. Starts Command prompt
  2. Creates fork.bat in Startup directory
  3. Exits

Additional information:

  • the for /l %%x in (0, 0, 0) do start command will run indefinetly if you want to limit number of cmd instances that will be started change like this: for /l %%x in (1, 1, 10) do start
  • When using Persistent_Fork_Bomb it usually takes few seconds to get started, this depends on hw and how many other programs are in Startup directory. Still this might be hard to remove, if are unable to remove it using windows, try to boot another OS(for example debian from live USB https://www.debian.org/CD/live/), then connect it to the disk with Windows installed on it, and you should be able to remove fork.bat from Startup(This won't work if disk with Windows is encrypted).

Credits