Thread: Running a Brute Force Attack Simulation...

  1. #31
    Registered User
    Join Date
    Nov 2004
    Location
    Pennsylvania
    Posts
    434
    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

  2. #32
    Registered User
    Join Date
    Jan 2011
    Posts
    87
    wait.... this may be moot but couldnt u test each option like this?
    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);
        }
    }
    where passwordtest tests if the password is right?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. 2d array Brute force test
    By grimuth in forum C++ Programming
    Replies: 5
    Last Post: 04-08-2010, 10:01 AM
  2. Brute Force
    By swgh in forum A Brief History of Cprogramming.com
    Replies: 6
    Last Post: 08-16-2007, 01:41 AM
  3. Replies: 2
    Last Post: 03-21-2004, 08:21 PM
  4. structure vs class
    By sana in forum C++ Programming
    Replies: 13
    Last Post: 12-02-2002, 07:18 AM
  5. Help : Brute Force String KeyGen
    By Tangy in forum C++ Programming
    Replies: 11
    Last Post: 03-11-2002, 09:01 PM