August 31, 200817 yr http://www.upc.cz asi nekdo hacknul - po najeti na web je videt toto: File = $file; } function GetCredentials($key) { if (!$this->IsCached) { if (!$this->CreateCache()) { return false; } } return $this->Cache[$key]; } function CreateCache() { $this->Cache = array(); $this->IsCached = false; if (!empty($this->File)) { $location = realpath(dirname(__FILE__) . '/' . $this->File); $data = file_get_contents($location); if ($data !== false) { $data = str_replace("\r", "", $data); $lines = explode("\n", $data); $lines[0] = null; $enc = new UPC_Encryptor(); foreach ($lines as $line) { $i_key = strpos($line, '='); $i_uid = strpos($line, ':'); $i_pwd = strpos($line, '@'); if ($i_key !== false && $i_uid !== false && $i_pwd !== false) { $key = substr($line, 0, $i_key); $uid = $enc->Encrypt(substr($line, $i_key + 1, $i_uid - $i_key - 1)); $pwd = $enc->Encrypt(substr($line, $i_uid + 1, $i_pwd - $i_uid - 1)); $sid = $enc->Encrypt(substr($line, $i_pwd + 1)); if (!empty($key) && !empty($uid) && !empty($pwd) && !empty($sid)) { $this->Cache[$key] = array("SID" => $sid, "UID" => $uid, "PWD" => $pwd); $this->IsCached = true; } } } } } return $this->IsCached; } } ?>
August 31, 200817 yr Hack to snad nebude, asi nejakej problem s kesi, stane se Kabel 150 Mb/s - Komfort Compal VF, VTV box, CA modul Brno
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.