diff --git a/DO NOT DELETE OR RENAME ANY FILES b/DO NOT DELETE OR RENAME ANY FILES new file mode 100644 index 0000000..945c9b4 --- /dev/null +++ b/DO NOT DELETE OR RENAME ANY FILES @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..e63b536 --- /dev/null +++ b/README.txt @@ -0,0 +1,34 @@ +//////////\\\\\\\\\\ +WiFi Password Viewer V2.1 +Created by SpikeGR +//////////\\\\\\\\\\ + +Did you forget your WiFi password? + +No worries, this program can show you the WiFi password +easily as long as you already connected to it at least one time +before, because the way this program works is by looking at the +saved WiFi which you already entered the password in the past. + +WARNING: + +DO NOT DELETE/RENAME OR EDIT ANY OF THE FILES. DOING SO MIGHT COMPLETELY BREAK THE PROGRAM! +YOU HAVE BEEN WARNED! + +//////////\\\\\\\\\\ +WiFi Password Viewer V2.1 +Created by SpikeGR +//////////\\\\\\\\\\ + +----- +If you want to get in touch with me, below are my Social Media! + +►YouTube: +youtube.com/spikegreece + +►Instagram: +instagram.com/spikegr_official + +►TikTok: +tiktok.com/@spikegr_yt +----- \ No newline at end of file diff --git a/V2.1 Changelog.txt b/V2.1 Changelog.txt new file mode 100644 index 0000000..a262163 --- /dev/null +++ b/V2.1 Changelog.txt @@ -0,0 +1,12 @@ +WiFi Password Viewer +Version: 2.1 +Released on: 15/6/2022 + +WiFi Password Viewer has been updated to version 2.1 +Below you can see what changed in this update: + +------------------- +1) Removed "WhatTheseFilesDo.txt" +2) Added another note to the WiFi list. +3) Improved how the list shows +------------------- \ No newline at end of file diff --git a/WiFi-Password-Viewer-V2.1.bat b/WiFi-Password-Viewer-V2.1.bat new file mode 100644 index 0000000..9002f7c --- /dev/null +++ b/WiFi-Password-Viewer-V2.1.bat @@ -0,0 +1,135 @@ +@echo off +title WiFi Password Viewer V2.1 + +:checkforupdates +echo. +echo WiFi Password Viewer V2.1 +echo -------------------------------- +echo Created by SpikeGR +echo YouTube: https://youtube.com/spikegreece +echo -------------------------------- +echo. +timeout 3 > nul +echo Checking for Updates... +timeout 5 > nul +set local=2.1 +set localtwo=%local% +set link=https://pastebin.com/raw/rJkzYy7S + +:check +IF EXIST "version.bat" DEL /Q "version.bat" +goto :download +pause + +:download +download %link% version.bat +CALL "version.bat" +goto check-2 + +:check-2 +IF "%local%"=="%localtwo%" goto :yes +IF NOT "%local%"=="%localtwo%" goto :no + +:yes +cls +echo. +echo WiFi Password Viewer V%localtwo% +echo -------------------------------- +echo Created by SpikeGR +echo YouTube: https://youtube.com/spikegreece +echo -------------------------------- +echo. +echo No updates found. +echo You are using the latest version! +timeout 4 > nul +echo WiFi Password Viewer will now start. +goto start + +:no +cls +echo. +echo WiFi Password Viewer V%localtwo% +echo -------------------------------- +echo Created by SpikeGR +echo YouTube: https://youtube.com/spikegreece +echo -------------------------------- +echo. +echo New Update found! +echo. +echo Version: %local% is available! +echo You currently have version %localtwo% installed +echo. +echo Do you want to download the new Update? +echo 1 - Yes, download the update now. +echo 2 - No, maybe later. +echo. +set /p num="Enter Number: " +if %num%==1 goto downloadupdate +if %num%==2 goto start + +:downloadupdate +echo Your browser will now open and download the latest update! +echo WiFi Password Viewer will close automatically. +timeout 5 > nul +start "" https://rebrand.ly/WiFiPasswordViewer +exit + +:start +cls +echo. +echo WiFi Password Viewer V%localtwo% +echo -------------------------------- +echo Created by SpikeGR +echo YouTube: https://youtube.com/spikegreece +echo -------------------------------- +goto getpass + +:getpass +cls +echo. +echo WiFi Password Viewer V%localtwo% +echo -------------------------------- +echo Created by SpikeGR +echo YouTube: https://youtube.com/spikegreece +echo -------------------------------- +echo. +echo WARNING: "WiFi Password Viewer" DOES NOT steal/crack the password. +echo This program finds the password from the saved WiFi which you already connected before! +echo. +timeout 5 > nul +echo Below you can see all the saved WiFi. +echo If your WiFi is not listed below, then this program can't show you the password! +echo. +timeout 3 > nul +echo. +echo ----WiFi List---- +echo. +netsh wlan show profiles | findstr /R /C:"[ ]:[ ]" +echo. +echo ----End of List---- +echo. +echo If the list is empty, then this program won't work. +echo. +set /p ssid="Enter SSID Name: " +cls +echo. +echo WiFi Password Viewer V%localtwo% +echo -------------------------------- +echo Created by SpikeGR +echo YouTube: https://youtube.com/spikegreece +echo -------------------------------- +echo. +echo SSID Name: +netsh wlan show profile name="%ssid%" key=clear | findstr /a:4 "name" +echo. +echo Security mode: +netsh wlan show profile name="%ssid%" key=clear | findstr /a:4 "Authentication" +echo. +echo WiFi Password: +netsh wlan show profile name="%ssid%" key=clear | findstr /a:4 "Key" +echo. +echo If results are empty, run this program as Administrator and check if you entered SSID name correctly. +pause>nul +goto start + +:end \ No newline at end of file diff --git a/download.exe b/download.exe new file mode 100644 index 0000000..0768573 Binary files /dev/null and b/download.exe differ diff --git a/version.bat b/version.bat new file mode 100644 index 0000000..1375299 --- /dev/null +++ b/version.bat @@ -0,0 +1 @@ +set local=2.0 \ No newline at end of file