mirror of
https://github.com/kunkunsh/kunkun-ext-wifi-password.git
synced 2025-04-04 11:16:42 +00:00
25 lines
772 B
Markdown
25 lines
772 B
Markdown
# Wifi Password Share
|
|
|
|
## Platforms
|
|
- MacOS
|
|
```bash
|
|
networksetup -listpreferredwirelessnetworks en0
|
|
security find-generic-password -D "AirPort network password" -a $SSID -w
|
|
```
|
|
- Windows
|
|
```powershell
|
|
$_, $ssid = ((netsh wlan show interface | findstr "Profile" | findstr /v "mode") -split ":",2).trim();
|
|
$_, $pass = ((netsh wlan show profile name=$ssid key=clear | findstr Key) -split ":").trim();
|
|
```
|
|
- Linux
|
|
```bash
|
|
ssid=$(nmcli device wifi show-password | grep SSID | cut -d : -f 2 | xargs)
|
|
password=$(nmcli device wifi show-password | grep Password | cut -d : -f 2 | xargs)
|
|
```
|
|
|
|
## Features
|
|
|
|
- Reveal Wifi Password from current machine
|
|
- Generate Connection QR Code, mobile devices can scan to connect directly
|
|
|