Skip to content

hac4allofficial/WI-FI-PASSWORD-DUMPER-WITH-POWERSHELL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

WI-FI PASSWORD DUMPER WITH POWERSHELL THIS SIMPLE COMMAND WILL HELP YOU TO SEE YOUR WIFI PASSWORD'S WI-FI PASSWORDS =DUMP ANDROID HOTSPOT PASSWORD =DUMP

Dump All Wi-Fi Passwords with Windows PowerShell

Command: (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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published