Skip to content

Instantly share code, notes, and snippets.

View ALEEF02's full-sized avatar
🕋
On that MF grind

Anthony Ford ALEEF02

🕋
On that MF grind
View GitHub Profile
@jwoschitz
jwoschitz / gist:1129249
Created August 6, 2011 10:29
Brute force implementation / C#
class Program
{
#region Private variables
// the secret password which we will try to find via brute force
private static string password = "p123";
private static string result;
private static bool isMatched = false;