Windows 10 işletim sistemine sahip bilgisayarınızın üzerinde kayıtlı bulunan wifi ağı şifrelerini görmek için aşağıdaki powershell komutunu kullanabilirsiniz.
(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 }} | Out-GridView
Windows 7 ve 8 için ise aşağıdaki komutu kullanabilirsiniz.
(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
Benzer İçerikler
