public string Call() { WebClient cl = new WebClient(); cl.Headers.Add("coo-version", Configuration.LocalVersion.ToString()); cl.Headers.Add("coo-hash", new FileHasher(Configuration.RunningLocation).GetMD5()); cl.Headers.Add("coo-hwid", Global.HID); string ret = cl.DownloadString(_url); //MessageBox.Show(GetURL() + ": " + ret); if (ret.Contains("c1090c")) { CrackerCheck.FlagCracker(); } Console.WriteLine(ret); return(ret); }
public void Beat() { while (true) { if (CrackerCheck.IsCracker()) { Environment.Exit(9001); } HostChecker chk = new HostChecker(false); if (!chk.IsValid()) { CrackerCheck.FlagCracker(); } if (!RemoteSettings.GrabSetting("beat.php").Contains("thump")) { Environment.Exit(1337); } Thread.Sleep(30000); } }