Retrieve Windows Wifi Passwords Save

Retreives the SSID names and passwords in cleartext for each Wifi network stored on the computer running this powershell script and output to JSON.

Project README

Retrieve-Windows-Wifi-Passwords

Retreives the SSID names and passwords in cleartext for each Wifi network stored on the computer running the script. Will work with any user in Windows 10 but will need to be run as an administrator for Windows 7/8.

Twitter

Synopsis

Windows networks allow you to print the passwords of historical wifi networks that you have joined in cleartext with the following:

netsh wlan show profiles

netsh wlan show profile name= key=clear

This script aims to take that information and output only the ssid and passwords in json format to allow for better integration with blue team operations, or for use with bash bunnies / rubber ducky like devices.

Example Usage / Output

PS C:\> .\WifiInfo.ps1
[
    {
        "Password":  "password1",
        "SSID":  "The lan before time"
    },
    {
        "Password":  "hunter2",
        "SSID":  "Pretty fly for a wifi"
    }
]
Open Source Agenda is not affiliated with "Retrieve Windows Wifi Passwords" Project. README Source: codingo/Retrieve-Windows-Wifi-Passwords

Open Source Agenda Badge

Open Source Agenda Rating