Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codingo/Retrieve-Windows-Wifi-Passwords
Retreives the SSID names and passwords in cleartext for each Wifi network stored on the computer running this powershell script and output to JSON.
https://github.com/codingo/Retrieve-Windows-Wifi-Passwords
bash-bunny network-analysis penetration-testing powershell-adminscripts powershell-script security security-tools wifi wifi-hotspot wifi-network wifi-password wifi-security wireless wireless-hotspot wireless-network
Last synced: about 2 months ago
JSON representation
Retreives the SSID names and passwords in cleartext for each Wifi network stored on the computer running this powershell script and output to JSON.
- Host: GitHub
- URL: https://github.com/codingo/Retrieve-Windows-Wifi-Passwords
- Owner: codingo
- Created: 2017-07-03T04:36:21.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-25T23:27:39.000Z (over 7 years ago)
- Last Synced: 2024-11-30T13:56:06.236Z (about 2 months ago)
- Topics: bash-bunny, network-analysis, penetration-testing, powershell-adminscripts, powershell-script, security, security-tools, wifi, wifi-hotspot, wifi-network, wifi-password, wifi-security, wireless, wireless-hotspot, wireless-network
- Language: PowerShell
- Homepage:
- Size: 3.91 KB
- Stars: 79
- Watchers: 4
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - codingo/Retrieve-Windows-Wifi-Passwords - Retreives the SSID names and passwords in cleartext for each Wifi network stored on the computer running this powershell script and output to JSON. (PowerShell)
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](https://img.shields.io/badge/twitter-@codingo__-blue.svg)](https://twitter.com/codingo_)
# 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"
}
]
```