Actually, the release version only takes about 1 minute to break a 4 digit one. Prolly an hour to do 5, havent tried it yet. But my laptop crunches about 18,000 keys per second, that's not too bad.
This is a discussion on Running a Brute Force Attack Simulation... within the C++ Programming forums, part of the General Programming Boards category; Actually, the release version only takes about 1 minute to break a 4 digit one. Prolly an hour to do ...
Actually, the release version only takes about 1 minute to break a 4 digit one. Prolly an hour to do 5, havent tried it yet. But my laptop crunches about 18,000 keys per second, that's not too bad.
"Anyone can aspire to greatness if they try hard enough."
- Me
wait.... this may be moot but couldnt u test each option like this?
where passwordtest tests if the password is right?Code:char password[8] char allchars[256] = "abcdefghijklm...."l; \\ and so on; \\then for(int a; a < 8; a++) { for(int b; b < 256; b++) { password[a] = allchars[b]; passwordtest(password); } }