2025-01-18 04:24:27 -05:00
2025-01-18 04:24:27 -05:00
2025-01-18 04:24:27 -05:00
2025-01-18 04:24:27 -05:00
2025-01-18 04:24:27 -05:00
2025-01-18 04:24:27 -05:00
2025-01-18 04:25:42 -05:00
2025-01-18 04:24:27 -05:00
2025-01-18 04:24:27 -05:00

Wifi Password Share

Platforms

  • MacOS
        networksetup -listpreferredwirelessnetworks en0
        security find-generic-password -D "AirPort network password" -a $SSID -w
    
  • Windows
    $_, $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
    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
Languages
TypeScript 100%