Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to get the account and password of the currently used wireless network
#11
also run command prompt as admin and use this code

netsh wlan show profile name=YourWifiName key=clear

change YourWifiName to your SSID Name then paste into cmd window and look under security settings for wifi password



maybe this cant test

Function Get_SSIDandPassword
Code:
Copy      Help
str wlpassword wlname cl="cmd.exe /C NETSH WLAN SHOW INTERFACE | findstr /r ''^....SSID''"
RunConsole2 cl wlname
wlname.trim
findrx(wlname "^.+\:(.+)$" 0 1 _s 1)
_s.trim
wlname=_s
out wlname
cl=F"cmd.exe /C netsh wlan show profile name=''{wlname}'' key=clear | findstr 关键内容"
RunConsole2 cl wlpassword
;out wlpassword;; uncomment this line if findrx line below errors or text is empty to see what ouput is
wlpassword.trim
findrx(wlpassword "^.+\:(.+)$" 0 1 _s 1)
_s.trim
wlpassword=_s
out wlpassword


Messages In This Thread
RE: How to get the account and password of the currently used wireless network - by Kevin - 01-21-2019, 05:41 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)