Skip to content

Instantly share code, notes, and snippets.

@GoruAkiba
Created July 15, 2021 14:41
Show Gist options
  • Save GoruAkiba/ae04323e304229c7c785900542c9c583 to your computer and use it in GitHub Desktop.
Save GoruAkiba/ae04323e304229c7c785900542c9c583 to your computer and use it in GitHub Desktop.
just a short script to mine a network profile with a clear key (network password visible)
@echo off
Rem NETWORK PROFILES CRAWLER
Rem @author GB_Sources
Rem @version v1.0.0
Rem @license MIT
echo ...........................................................
echo . __________ _____
echo . / ____/ __ ) / ___/____ __ _______________ _____
echo . / / __/ __ ) \__ \/ __ \/ / / / ___/ ___/ _ \/ ___/
echo ./ /_/ / /_/ / ___/ / /_/ / /_/ / / / /__/ __(__ )
echo .\____/_____/____/____/\____/\__,_/_/ \___/\___/____/
echo . /_____/
echo ...........................................................
echo [ (C) GB_Sources allrights reserved. ]
echo '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
echo :: Network Profile Crawler
set PWPW= key\%username%
echo %PWPW%
mkdir %PWPW%
netsh wlan show profiles key=clear > %PWPW%\key.txt
for /F "skip=9 tokens=5,6,7" %%i in (%PWPW%\key.txt) do netsh wlan show profiles name=%%i*%%j* key=clear > %PWPW%\%%i_%%j_%%k.txt
exit
@UNKNOWTROLLERHASNOTBEENSEEN

good code man

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment