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

Скрипт который показывает все пароли от wifi через powershell

Notifications You must be signed in to change notification settings

ve3xone/wifishowpassword_powershell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

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