|
||
---|---|---|
.. | ||
Fork_Bomb.ino | ||
Persistent_Fork_Bomb.ino | ||
README.md |
README.md
Fork_Bomb
This script does the following:
- Starts Command prompt
- Resizes and changes colors of Command prompt
- Executes fork bomb
Persistent_Fork_Bomb
This script does the following:
- Starts Command prompt
- Creates fork.bat in Startup directory
- 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
- Fork_Bomb: BlackBoot
- Persistent_Fork_Bomb: https://github.com/Michyus