return false; } if (empty($_POST["accounts"]) == false) { $obj = new stream_get(); $type = $_POST['type']; $_POST["accounts"] = str_replace(" ", "", $_POST["accounts"]); $account = trim($_POST['accounts']); $donate = false; ################################## DONATE ACC real-debrid.com ################################################################# if ($type == "real-debrid") { if (check_account("real-debrid.com", $account) == true) { die("false"); } if (stristr($account, ':')) { list($user, $pass) = explode(':', $account); $data = $obj->curl("https://www.real-debrid.com/ajax/login.php?user="******"&pass="******"", "", ""); //You are blocked for one hour because of too many attempts ! if (strpos($data, "You are blocked")) { die("You are blocked for one hour because of too many attempts !"); } elseif (strpos($data, "Your login informations are incorrect") || strpos($data, "Your account is not active or has been suspended") || strpos($data, "You are blocked")) { die("false"); } else { preg_match('%(auth=.+);%U', $data, $cook); $cookie = $cook[1]; } } else { $cookie = $account; } if (check_account("real-debrid.com", $cookie) == true) { die("false"); }
} return false; } if (empty($_POST["accounts"]) == false) { $obj = new stream_get(); $type = $_POST['type']; $_POST["accounts"] = str_replace(" ", "", $_POST["accounts"]); $account = trim($_POST['accounts']); $donate = false; if ($type == "rapidshare") { if (check_account("rapidshare.com", $account) == true) { die("false"); } if (stristr($account, ':')) { list($user, $pass) = explode(':', $account); $data = $obj->curl("http://api.rapidshare.com/cgi-bin/rsapi.cgi", "", "sub=getaccountdetails&withcookie=1&withpublicid=1&login="******"&cbf=RSAPIDispatcher&cbid=2&password="******"false"); } else { $cookie = $obj->cut_str($data, "ncookie=", "\\n"); } } else { $cookie = $account; } if (check_account("rapidshare.com", $cookie) == true) { die("false"); } $cookie = preg_replace("/(enc=|Enc=|ENC=)/", "", $cookie); $data = $obj->curl("http://api.rapidshare.com/cgi-bin/rsapi.cgi", "", "sub=getaccountdetails&withcookie=1&withpublicid=1&withsession=1&cookie=" . $cookie . "&cbf=RSAPIDispatcher&cbid=1"); if (preg_match('/billeduntil=([0-9]+)/', $data, $matches)) { if (time() < $matches[1]) {
<?php ob_start(); ob_implicit_flush(TRUE); ignore_user_abort(0); if (!ini_get('safe_mode')) { set_time_limit(30); } define('vinaget', 'yes'); date_default_timezone_set('Asia/Jakarta'); require_once 'class.php'; $obj = new stream_get(); // This debug code should be available only to admins. if ($obj->Deny || !$obj->isadmin()) { setcookie('msg', 'debug.php :: Access Violation'); header('Location: index.php'); ob_end_flush(); exit; } elseif (!empty($_REQUEST['link'])) { if (!empty($_REQUEST['proxy'])) { $obj->proxy = $_REQUEST['proxy']; } echo '<pre>' . htmlspecialchars($obj->curl($_REQUEST['link'], !empty($_REQUEST['cookie']) ? $_REQUEST['cookie'] : 0, !empty($_REQUEST['post']) ? $_REQUEST['post'] : 0)) . '</pre>'; } else { echo '<center><br /><br /><br /><br /><br /><h2>DEBUG RESULT</h2></center>'; } ob_end_flush();
if (count($obj->acc["bitshare.com"]["accounts"]) > 0) { echo '<table id="tableBS" class="filelist" align="left" cellpadding="3" cellspacing="1" width="100%"> <tr class="flisttblhdr" valign="bottom"> <td width="30%"><B>accounts bitshare.com</B></td> <td width="15%"><b>Type</b></td> <td><b>Validity</b></td> <td width="20%"><b>Report</b></td> </tr> '; for ($i = 0; $i < count($obj->acc["bitshare.com"]["accounts"]); $i++) { $account = $obj->acc["bitshare.com"]["accounts"][$i]; if (stristr($account, ':')) { list($user, $pass) = explode(':', $account); $account = substr($account, 0, 5) . '****'; $type = "account"; $data = $obj->curl("http://bitshare.com/login.html", "", "user={$user}&password={$pass}&rememberlogin=&submit=Login"); if (strpos($data, "Click here to login")) { echo '<tr class="flistmouseoff" align="center"> <td><B>' . $account . '</B></td><td>' . $type . '</td> <td id="unknownBS"><font color=#CCFF00><b>Login failed !!!</b></font></td> <td id="unknownBS"><font color=green><B>Removed</B></font></td></tr>'; $delacc[] = $i; continue; } else { $cookie = $obj->GetCookies($data); } } else { $type = "cookie"; $cookie = $account; $account = substr($account, 0, 15) . '****'; }