private static void Main(string[] args)
{
string a;
for (;;)
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.Title = "Advanced CrackMe by Rainbow";
Console.WriteLine(" Wellcome to Rainbow CrackMe");
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("1)Easy CrackMe");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("2)Hard CrackMe");
Console.ForegroundColor = ConsoleColor.Red;
Console.Write("Type 1 / 2 -- ");
a = Console.ReadLine();
if (!(a != "1") || !(a != "2"))
{
break;
}
Console.WriteLine("\n Try again");
Console.Clear();
}
if (a == "1")
{
Console.Clear();
Console.WriteLine(" Wellcome to EZ CrackMe");
Console.Write("Enter Username-- ");
Console.ReadLine();
Console.Write("Enter Password-- ");
if (Console.ReadLine() == "0238274")
{
Console.WriteLine("Good Password");
}
else
{
Console.WriteLine("Wrong Password");
}
}
if (a == "2")
{
Console.Clear();
for (;;)
{
Console.WriteLine(" Wellcome to Hard CrackMe");
Console.Write("Enter Username -- ");
if (!(Console.ReadLine() != "Admin"))
{
break;
}
Console.WriteLine("\n Wrong Username ");
Console.Clear();
}
Console.Write("Enter Password -- ");
string a2 = Console.ReadLine();
string str = "Ja8j";
string str2 = "8nJQWs";
string str3 = "Koqi";
string str4 = "9s81j";
if (!(a2 == str2 + str3 + str4 + str))
{
Console.WriteLine("\nWrong Password ");
}
else
{
Console.WriteLine("Good Password");
}
}
Console.ReadLine();
}
} |
==> |
friend, don't post other people's apps here on the site, be careful next time :D |
==> |
**my first crack on the site**
[MethodImpl(MethodImplOptions.NoInlining)]
private static void SDLZVSZTW(string[] \u0020)
{
new Timer(new TimerCallback(RCjX12gfYnpZlae1W5.vK7NKGCLE), null, 0, 1500);
ColorConsole.WriteLine(new ColorToken[]
{
"CrackMe v1".Cyan(),
" | ".White(),
"by c0d3x94".Green()
});
Thread.Sleep(1500);
Console.WriteLine("");
ColorConsole.Write(new ColorToken[]
{
"You Username: "
});
string text = Console.ReadLine();
Console.WriteLine("");
ColorConsole.Write(new ColorToken[]
{
"You Key: "
});
string a = Console.ReadLine();
if (text == "Crack" && a == "Cracked")
{
Console.WriteLine("");
ColorConsole.WriteLine(new ColorToken[]
{
"Your key is correct".Green(),
" ",
text.Cyan()
});
}
else
{
Console.WriteLine("");
ColorConsole.WriteLine(new ColorToken[]
{
"Your key is wrong".Red(),
" ",
text.Cyan()
});
}
Console.Read();
} |
==> |