Skip to main content

How to find wifi password

 How to find wifi password:

Disclaimer: I have collected this from pentester academy. Do not use this types of task for malicious purpose. I will not be responsible if someone use this for malicious purpose. This is for educational purpose and personal home use only.

netsh wlan show profiles

netsh wlan show profiles name="Avi's World_5G" key=clear

netsh wlan show profiles name="Avi's World_5G" key=clear | findstr /I "key content"

Deleting profile:

netsh wlan delete profile name="Avi's World_5G"


Comments