Post

Windows Kayıtlı Wifi Şifrelerinin Öğrenilmesi

Powershell üzerinde - On Powershell

PS:

netsh wlan show profiles

Bağlandığınız tüm Wi-Fi ağlarının ismini gösterecektir. - Will display the name of all Wifi networks.

PS:

netsh wlan show profile name="istediğim Wifi adı" key=clear

Key Content yazan kısımda şifreniz yazmaktadır. - Your password is written in the section that says Key Content

Bunu tüm ağlar için yapalım - Let's do this for all networks

PS:

(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

Saygılarımla. – Best regards.

This post is licensed under CC BY 4.0 by the author.