How to grab Wifi passwords with only 2 commands

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • techsxge
    replied
    Re: How to grab Wifi passwords with only 2 commands

    I mean yeah its a fancy command but not realy practical as you can just click your way through to see the password.

    Anyways, want to do it without user input?
    Code:
    (netsh wlan show profile name="$(netsh wlan show interfaces | Select-String 'SSID' | ForEach-Object { $_ -replace '^\s+SSID\s+: ','' })" key=clear) | Select-String 'Key content'
    Might work, have no wlan to test it out rn. Should grab the currently connected Wlan connection and output the password though.
    Powershell command, wont work in cmd.

    Leave a comment:


  • tsbservice
    replied
    Re: How to grab Wifi passwords with only 2 commands

    Originally posted by BillyCarpenter
    I thought this was pretty cool.

    This first command can show us all the wifi profiles stored on a windows pc.

    netsh wlan show profile


    This second command can show us all the wifi passwords

    netsh wlan show profile name="name of wifi" key=clear


    Give it a try.
    Sometimes users don't have any clue what the wifi password is. It will help, Thanks Billy.

    Leave a comment:


  • slimslob
    replied
    Re: How to grab Wifi passwords with only 2 commands

    I use a freeware WiFi password revealer from magic jelly bean. It allows one to export the results to a text of CSV file. As with all freeware use caution and have a good virus protection software.

    Leave a comment:


  • How to grab Wifi passwords with only 2 commands

    I thought this was pretty cool.

    This first command can show us all the wifi profiles stored on a windows pc.

    netsh wlan show profile


    This second command can show us all the wifi passwords

    netsh wlan show profile name="name of wifi" key=clear


    Give it a try.
Working...