Advertisement
ivandrofly

Wifi Password Finder

Mar 17th, 2015
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.57 KB | None | 0 0
  1. REM by: @Ivandrofly
  2. @echo off && cls
  3. title Wifi-pwd Finder v1 by: Ivandro Ismael
  4. SETLOCAL ENABLEDELAYEDEXPANSION && rem not used
  5. color a
  6. echo.
  7. echo.
  8. echo                           Script by: ^<^< Ivandro Ismael ^>^>
  9. echo.
  10.     for /f "skip=9 tokens=4 delims=: " %%G in ('netsh wlan show profiles') do (
  11.         for /f "tokens=1,3 delims=: " %%I in ('netsh wlan show profiles %%G key^=clear ^|find "Key"') DO (
  12.             if "%%I" == "Key" (
  13.                 echo ===========================
  14.                 ECHO Wifi-SSID: %%G
  15.                 ECHO Password: %%J
  16.                 echo ===========================
  17.             )
  18.         )
  19.     )
  20. echo.
  21. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement