
Originally Posted by
HickDead
Same said the guy that posted a PHX crack here with a virus that made you unable to access the internet and USB flash drives. He was trusted. Had 1k+ posts and pretty nice reputation on the fourm. Rumors says he got paid to do it.
I tested your script on a VM, seems legit.
It's legit. Apart from the phx shit, I will not harm any user on RaGEZONE whether they've been an asshole to me, or not. You could offer me 1 million dollars, and I still wouldn't.
-- By the way - I'm doing ONE last contribution:
Code:
Console.Title = "AutoCracker";
Console.WriteLine("Welcome, " + Environment.UserName + @"! I will now crack the swf in: \swf");
Process pro = new Process();
pro.StartInfo.UseShellExecute = true;
pro.StartInfo.CreateNoWindow = false;
pro.StartInfo.FileName = "decompile.bat";
pro.Start();
pro.WaitForExit();
Console.Write("Do you want RC4 to be patched? Y/n ");
bool patchRC4 = Console.ReadLine().ToLower() == "y";
if (patchRC4 == true)
{
PatchRC4.patchRC4();
}
else
{
RSA.changeRSA();
}
while (true) { Console.Read(); }