Search found 3 matches

by Reborn
01 Mar 2013 12:13
Forum: DOS Batch Forum
Topic: Password Cracking Challenge/Game
Replies: 5
Views: 4678

Re: Password Cracking Challenge/Game

jeb wrote:Hi Reborn,

do you test my password?

It's the general key, as it uses command injection.

If you want to disable this, you need to switch to delayed expansion instead of percent expansion

jeb

mm, thanks.
by Reborn
01 Mar 2013 01:36
Forum: DOS Batch Forum
Topic: Password Cracking Challenge/Game
Replies: 5
Views: 4678

Re: Password Cracking Challenge/Game

Aacini wrote:If the Batch file is called "securepassword.bat", then the first time the password is "People", the next time is the first name of the person that cracked the password the last time, and so on...

Antonio

Nice. You got it.
by Reborn
28 Feb 2013 14:42
Forum: DOS Batch Forum
Topic: Password Cracking Challenge/Game
Replies: 5
Views: 4678

Password Cracking Challenge/Game

Hello, I have made a batch file with a fairly secure password, see if you can crack it? @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. ...