Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Latest commit

 

History

History
8 lines (7 loc) · 791 Bytes

README.md

File metadata and controls

8 lines (7 loc) · 791 Bytes

wifishowpassword_powershell

Скрипт который показывает все пароли от wifi практически на любой версии Windows(7-11), работает через powershell

Просто вставьте это в powershell:

chcp 65001;cls;(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 -Wrap