Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php class dl_rapidu_net extends Download { public function CheckAcc($cooki..
Decoded Output download
<?php
class dl_rapidu_net extends Download {
public function CheckAcc($cookie){
$data = $this->lib->curl("http://rapidu.net", $cookie, "");
if(stristr($data, 'Konto: <b>Premium')) return array(true, "Until ".$this->lib->cut_str($data, 'Konto: <b>Premium','</b>'));
else if(stristr($data, 'Konto: <b>Free') && !stristr($data, 'Premium account expire'))
{
return array(false, "accfree");
}
else return array(false, "accinvalid");
}
public function Login($user, $pass){
$data = $this->lib->curl("http://rapidu.net/ajax.php?a=getUserLogin", "lang=english", "login={$user}&pass={$pass}&remember=0&_go=");
$cookie = $this->lib->GetCookies($data);
return $cookie;
}
public function Leech($url) {
$data = $this->lib->curl($url, $this->lib->cookie, "");
//echo "<center><form>k1 <textarea id='kkkkkkk1' name='kkkkkkk1' size='100' readonly >".$data."</textarea></form></center><br>";
if (preg_match('/ocation: (.*)/',$data,$match)) return trim($match[1]);
return false;
}
}
/* print($data);
* Open Source Project
* Vinaget by ..::[H]::..
* Version: 2.7.0
* rapidu_net Download Plugin by Mie Kuteteen.Tv [24.03.2014]
*/
?>
Did this file decode correctly?
Original Code
<?php
class dl_rapidu_net extends Download {
public function CheckAcc($cookie){
$data = $this->lib->curl("http://rapidu.net", $cookie, "");
if(stristr($data, 'Konto: <b>Premium')) return array(true, "Until ".$this->lib->cut_str($data, 'Konto: <b>Premium','</b>'));
else if(stristr($data, 'Konto: <b>Free') && !stristr($data, 'Premium account expire'))
{
return array(false, "accfree");
}
else return array(false, "accinvalid");
}
public function Login($user, $pass){
$data = $this->lib->curl("http://rapidu.net/ajax.php?a=getUserLogin", "lang=english", "login={$user}&pass={$pass}&remember=0&_go=");
$cookie = $this->lib->GetCookies($data);
return $cookie;
}
public function Leech($url) {
$data = $this->lib->curl($url, $this->lib->cookie, "");
//echo "<center><form>k1 <textarea id='kkkkkkk1' name='kkkkkkk1' size='100' readonly >".$data."</textarea></form></center><br>";
if (preg_match('/ocation: (.*)/',$data,$match)) return trim($match[1]);
return false;
}
}
/* print($data);
* Open Source Project
* Vinaget by ..::[H]::..
* Version: 2.7.0
* rapidu_net Download Plugin by Mie Kuteteen.Tv [24.03.2014]
*/
?>
Function Calls
None |
Stats
MD5 | ba4b7cc007f7cd9b429e76c777f55ef5 |
Eval Count | 0 |
Decode Time | 95 ms |