Hacker Passwords generator - free open source
http://www.igprogram.tkhttp://www.youtube.com/watch?v=RfS9ECnpePkHacker password generator is software program for passwords generation based on set of symbols.
For brute force attack hackers use list of common used passwords, or passwords created from set of symbols with password generator.
Password generator is also used for creation of rainbow tables, these are composed of combinations of passwords and corresponding hash values, and are very efficient for password cracking.
Features:
- Password length and creation delay configurable
- Password symbols configuration and selection
- Combinations current and total calculation
- Time current and total calculation
- Passwords also writable to file
Files:
- Hacker Passwords.doc – documentation
- HackerPasswords.exe – program executable
- HackerPasswords.txt – contains passwords symbols
- HackerPasswords folder – source code
- Passwords.cs – contains class Passwords
- Form1.cs – contains class Form1
Code Example:
/// <summary>
/// Increment to next password combination
/// </summary>
/// <returns></returns>
public bool Next()
{
// If reached the end
if (Combination >= Combinations) { return false; }
// Increment current combination, first index, and eventual sucessive indexes
Combination++;
indexes[0]++; // Increment first index
for (int index = 0; index < indexes.GetLength(0); index++) // For each index in indexes
{
if (indexes[index] == symbols.Length) // If current index has reached the end
{
indexes[index] = 0; // Reset the index to 0
if (index < (indexes.GetLength(0) - 1)) // If not the last index
{
indexes[index + 1]++; // Increment the next index
}
}
}// for
return true;
}
Requirements:
- Net Framework 2.0
- Windows 2000 or more (XP, 2003 …)
- Visual Studio 2005 or more
History:
- 2010/12/22 Ver. 1.1 Performance bugs fixed, now it is faster.
Note:
The tutorial is also translated in Macedonian.
Овој туторијал е преведен и на Македонски.
Author:
Ivica Gjorgjievski - IGProgram
http://www.igprogram.tk