Password Cracking Challenge/Game
Posted: 28 Feb 2013 14:42
Hello, I have made a batch file with a fairly secure password, see if you can crack it?
EDITED: Link removed and code posted here by Squashman
Code: Select all
@echo off
setlocal enabledelayedexpansion
for /f "tokens=1" %%a in (securepassword.bat) do set pass=%%a
:getpassword
cls
echo.
echo If you can crack the password, leave your name, then try again.
echo.
set /p upass=Password:
if "%upass%"=="%pass%" goto getname
cls
echo Incorrect Password!
pause
goto getpassword
:getname
cls
echo.
set /p name=Name:
if "%name%"=="" exit
echo %name% >> securepassword.bat
exit
----------------------------------
People who have cracked the password:
EDITED: Link removed and code posted here by Squashman