Skip to content

Commit

Permalink
V2.0 UPDATE
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeGR authored May 2, 2022
1 parent 4a4aaa1 commit fa431aa
Show file tree
Hide file tree
Showing 7 changed files with 201 additions and 0 deletions.
1 change: 1 addition & 0 deletions DO NOT DELETE OR RENAME ANY FILES
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.
34 changes: 34 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
//////////\\\\\\\\\\
WiFi Password Viewer V1.0
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 V1.0
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
-----
13 changes: 13 additions & 0 deletions V2.0 Changelog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
WiFi Password Viewer
Version: 2.0
Released on: 2/5/2022

WiFi Password Viewer has been updated to version 2.0 !
Below you can see what changed in this update:

-------------------
1) Now you can see with which WiFi Networks this program can work with.
2) Fixed an issue that was causing the name of the program not showing correctly.
3) Added this changelog file which you are reading now.
4) Added "WhatTheseFilesDo" file so that you know what all these files in WiFi Password Viewer folder do.
-------------------
24 changes: 24 additions & 0 deletions WhatTheseFilesDo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Do you want to know what all these files do?
We will explain in case you think these files are virus.

1) "DO NOT DELETE OR RENAME ANY FILES"
This file is just a warning, it doesn't do anything
if you click it. This file can be deleted if you want.

2) "download.exe"
This file is being used only when WiFi Password Viewer
checks for updates at the beginning before it loads.
download.exe does what it's name says. When WiFi Password Viewer
checks for updates then download.exe will download the file "version.bat"
which contains the latest version number.
Both files "download.exe" and "version.bat" SHOULDN'T be deleted OR renamed.

3) "V2.0 Changelog.txt"
This file contains all the changes the new update made.
It isn't important and you can delete it if you want.

4) "version.bat"
Explained above. But this file SHOULDN'T be deleted or renamed.

5) "WiFi-Password-Viewer-V2.0.bat"
This is the WiFi Password Viewer.
128 changes: 128 additions & 0 deletions WiFi-Password-Viewer-V2.0.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
@echo off
title WiFi Password Viewer V2.0

:checkforupdates
echo.
echo WiFi Password Viewer V2.0
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.0
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!
timeout 3 > nul
echo.
netsh wlan show profiles | findstr /R /C:"[ ]:[ ]"
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
Binary file added download.exe
Binary file not shown.
1 change: 1 addition & 0 deletions version.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
set local=1.0

0 comments on commit fa431aa

Please sign in to comment.