--- DumbForce-1.7.3.1 2009-03-26 02:27:15 +0000 +++ DumbForce-alpha-fr 2009-07-26 13:08:42 +0000 @@ -1,4 +1,4 @@ -[List.External:DumbForce] +[List.External:DumbForce-alpha-fr] int maxlength; // Maximum password length to try int last; // Last character position, zero-based int lastid; // Character index in the last position @@ -11,42 +11,17 @@ void init() int i, c; minlength = 1; // Initial password length to try, must be at least 1 - maxlength = 7; // Must be at least same as minlength + maxlength = 8; // Must be at least same as minlength -/* - * This defines the character set. - * - * Let's say, we want to try TAB, all non-control ASCII characters, and all - * 8-bit characters, including the 8-bit terminal controls range (as these are - * used as regular national characters with some 8-bit encodings), but except - * for known terminal controls (risky for the terminal we may be running on). - * - * Also, let's say our hashes are case-insensitive, so skip lowercase letters - * (this is right for LM hashes). - */ +/* This defines the character set */ i = 0; - charset[i++] = 9; // Add horizontal TAB (ASCII 9), then - c = ' '; // start with space (ASCII 32) and - while (c < 'a') // proceed till lowercase 'a' - charset[i++] = c++; - c = 'z' + 1; // Skip lowercase letters and - while (c <= 0x7e) // proceed for all printable ASCII - charset[i++] = c++; - c++; // Skip DEL (ASCII 127) and - while (c < 0x84) // proceed over 8-bit codes till IND - charset[i++] = c++; - charset[i++] = 0x86; // Skip IND (84 hex) and NEL (85 hex) - charset[i++] = 0x87; - c = 0x89; // Skip HTS (88 hex) - while (c < 0x8d) // Proceed till RI (8D hex) - charset[i++] = c++; - c = 0x91; // Skip RI, SS2, SS3, DCS - while (c < 0x96) // Proceed till SPA (96 hex) - charset[i++] = c++; - charset[i++] = 0x99; // Skip SPA, EPA, SOS - c = 0xa0; // Skip DECID, CSI, ST, OSC, PM, APC - while (c <= 0xff) // Proceed with the rest of 8-bit codes + c = 'a'; + while (c <= 'z') charset[i++] = c++; + charset[i++] = 'é'; + charset[i++] = 'è'; + charset[i++] = 'à'; + charset[i++] = 'ç'; /* Zero-terminate it, and cache the first character */ charset[i] = 0;