Jump to content

uploaded.to

- - - - -

[free/premium] Turbobit.net


104 replies to this topic

#91 billgates

    Rapidleecher

  • Members
  • PipPipPipPip
  • 120 posts
  • Gender:Male

Posted 22 February 2012 - 09:49 AM

Error 0x01: Plugin is out of date
http://turbobit.net/hjtormnukdt9.html

#92 Vickey

    Advanced Member

  • Members
  • PipPipPip
  • 81 posts

Posted 05 March 2012 - 02:01 PM

not working :(

File download.xxx (Unknown) Saved!
Time: 0 second
Average Speed: 0 KB/s

Posted Image


#93 vdhdevil

    Rapidleecher

  • Members
  • PipPipPipPip
  • 654 posts
  • Gender:Male
  • Location:Viet Nam

Posted 06 March 2012 - 06:35 AM

View Postbillgates, on 22 February 2012 - 09:49 AM, said:

Error 0x01: Plugin is out of date
http://turbobit.net/hjtormnukdt9.html

Their service is not stable during this time, does it work now

#94 Sotoo

    Member

  • Members
  • PipPip
  • 11 posts

Posted 15 March 2012 - 08:16 PM

It's stuck on "Wait 1 sec..."
How to fix?

#95 ahmad3010

    Newbie

  • Members
  • Pip
  • 3 posts

Posted 16 March 2012 - 11:57 AM

Error 0x01: Plugin is out of date

please fix it !!!

#96 Prisim

    Advanced Member

  • Members
  • PipPipPip
  • 45 posts
  • Gender:Male
  • Location:!~phpMyadmin~!

Posted 17 March 2012 - 06:04 AM

Using lates update of RL

update my plugin with lates posted on first page!

but now captcha is not showing properly !

Please fix it

#97 Titeuf

    Rapidleecher

  • Members
  • PipPipPipPip
  • 303 posts
  • Gender:Male

Posted 17 March 2012 - 02:39 PM

Please fix it and access code to !
thank you
Thank you,
Titeuf

My Rapidleech version : Rapidleech Plus 4 rev 4.1 & Rapidleech Plus 4 rev 4.2 & Rapidleech Prenium rev 4.2 & Rapidleech Pro

My Plugin DL : Uptobox Member Prenium | Cloudcache.cc Member Prenium | Bzlink Member Prenium| FiberUpload Member Prenium

My Plugin UL : Bzlink Member | Uptobox Member | Cloudcache Member | FiberUpload Member |

My Pastebin

#98 rapidleechd

    Member

  • Members
  • PipPip
  • 23 posts

Posted 01 April 2012 - 03:58 PM

...

Edited by rapidleechd, 01 April 2012 - 04:02 PM.

www.rapidleechd.info

Public Rapidleech


#99 autonix

    Member

  • Members
  • PipPip
  • 22 posts

Posted 02 April 2012 - 10:07 AM

hello

TS

would you please re-fix the plugin
I've tested on my RL

I found this message

Retrieving download page
Error 0x01: Plugin is out of date

I used this plugin
http://www.box.com/shared/qv7eydlxpv

and here is my DL link

http://turbobit.net/ppcj5uagrcfb.html

Thanks a million

#100 dumpweed

    Advanced Member

  • Members
  • PipPipPip
  • 68 posts
  • Gender:Male
  • Location:Indonesia

Posted 04 April 2012 - 04:06 PM

wating for the fix...

#101 rapidleechd

    Member

  • Members
  • PipPip
  • 23 posts

Posted 13 April 2012 - 05:21 AM

Error 1x01: Plugin is out of date

http://turbobit.net/...review.pdf.html

Rapidleech Version : V2 rev. 43


Need Fix Please :(

www.rapidleechd.info

Public Rapidleech


#102 rapidleechd

    Member

  • Members
  • PipPip
  • 23 posts

Posted 22 April 2012 - 05:37 PM

Experts please fix the plugin...not able to download anything...

Desperately need it....please


Thanks

www.rapidleechd.info

Public Rapidleech


#103 rapidleechd

    Member

  • Members
  • PipPip
  • 23 posts

Posted 27 April 2012 - 12:30 PM

NEED FIX :(

www.rapidleechd.info

Public Rapidleech


#104 dime111

    Newbie

  • Members
  • Pip
  • 1 posts

Posted 28 April 2012 - 06:41 PM

well the problem is plugin by default try to send the request for final link on port 80 but the turbobit web server for final link listens on 9010
i changed the code for premium accounts a little so it must work now (could done cleaner via regex but i was out of time)
replace the private function DownloadPremium block with following
	private function DownloadPremium($link) {
    	global $premium_acc;
    	$post = array();
    	$post["user[login]"] = $_REQUEST["premium_user"] ? trim($_REQUEST["premium_user"]) : $premium_acc["turbobit_net"]["user"];
    	$post["user[pass]"] = $_REQUEST["premium_user"] ? trim($_REQUEST["premium_user"]) : $premium_acc["turbobit_net"]["pass"];
    	$post["user[memory]"] = "on";
    	$post["user[submit]"] = "Login";
    	$page = $this->GetPage("http://turbobit.net/user/login", 0, $post, $link);
    	preg_match_all("#Set-Cookie: ([^;]+)#", $page, $tmp);
 
     	$Cookies = $tmp[1][1] . "; " . $tmp[1][3] . "; " . $tmp[1][4];
    	$page = $this->GetPage($link, $Cookies, 0, $link);
 
    	$Cookies = $tmp[1][3] . "; " . $tmp[1][4];
    	preg_match_all("#Set-Cookie: ([^;]+)#", $page, $tmp);
    	$Cookies.="; " . $tmp[1][1];
    	if (preg_match("#http.+download/redirect[^']+#", $page, $tmp)) {
        	$page = $this->GetPage($tmp[0], $Cookies, 0, $link);
  
   preg_match("#http:[^']+#",$page,$test);
   $dlink=substr($test[0],0,stripos($test[0],'Content'));
   $laststring=substr_replace($dlink,'.turbobit.ru:9010/dow',strpos($dlink,'.'),strlen('turbobit.ru:9010'));
   $this->RedirectDownload(trim($laststring), "turbobit", $Cookies, 0, $link);
    	} else {           
        	html_error("Error 1x01: Plugin is out of date");
    	}
    	exit;
	}


#105 rapidleechd

    Member

  • Members
  • PipPip
  • 23 posts

Posted 05 May 2012 - 05:10 AM

Thank for working on this ....But still not working :

code:
<?php
if (!defined('RAPIDLEECH')) {
	require_once("index.html");
	exit;
}
class turbobit_net extends DownloadClass {
	public function Download($link) {
    	global $premium_acc, $options;
    	$link=str_replace("www.", "", $link);
    	if (strpos($link, "download/free/")){
        	$link=  str_replace("download/free/", "", $link).".html";
    	}
    	if (($_REQUEST ["premium_acc"] == "on" && $_REQUEST ["premium_user"] && $_REQUEST ["premium_pass"]) || ($_REQUEST ["premium_acc"] == "on" && $premium_acc ["turbobit_net"] ["user"] && $premium_acc ["turbobit_net"] ["pass"])) {
        	$this->DownloadPremium($link);
    	} elseif ($_POST['step'] == "1") {
        	$this->DownloadFree($link);
    	} else {
        	$this->Retrieve($link);
    	}
	}
	private function Retrieve($link) {
    	global $options;
    	$page = $this->GetPage($link, "set_user_lang_change=en", 0, $link);
    	is_present($page, "Please wait, searching file","Link is not available");
    	is_present($page, "This document was not found in System","Link is not available");
    	preg_match_all("#[\w-]+: (\w+)=([^;]+)#", $page, $tmp);
    	$arrCookies = array_combine($tmp[1], $tmp[2]);
    	$Cookies = urldecode(http_build_query($arrCookies, "", "; "));
    	$Cookies = str_replace(array("user_isloggedin=deleted; ", "set_user_lang_change=deleted; "), "", $Cookies);
    	if (!preg_match('#/[a-w+]+/[e-r]{4}/\w+#', $page, $tmp)) {
        	html_error("Error 0x01: Plugin is out of date");
    	}
    	$flink = "http://turbobit.net" . $tmp[0];
    	$page = $this->GetPage($flink, $Cookies, 0, $link);
    	if (preg_match('#(\d+)</span> seconds#', $page, $count)) {
        	html_error("You have reached the limit of connections,try downloading again after " . $count[1] . " seconds");
    	}
    	if (!preg_match("#value = '(.*)' name = 'captcha_type'#", $page, $captcha_type)) {
        	html_error("Error 0x02:Plugin is out of date");
    	}
    	if (!preg_match("#value = '(.*)' name = 'captcha_subtype'#", $page, $captcha_subtype)) {
        	html_error("Error 0x03: Plugin is out of date");
    	}
    	$data = $this->DefaultParamArr($link);
    	$data['step'] = "1";
    	$data['Cookies'] = $Cookies;
    	$data['flink'] = $flink;
    	$data['captcha_type'] = $captcha_type[1];
    	$data['captcha_subtype'] = $captcha_subtype[1];
    	if (!preg_match('#http.+/captcha/[^"]+#', $page, $img)) {
        	if (strpos($page, "http://api.recaptcha.net/noscript?k=6LcTGLoSAAAAAHCWY9TTIrQfjUlxu6kZlTYP50_c")) {
            	$page = $this->GetPage("http://www.google.com/recaptcha/api/challenge?k=6LcTGLoSAAAAAHCWY9TTIrQfjUlxu6kZlTYP50_c");
            	$ch = cut_str($page, "challenge : '", "'");
            	$data["recaptcha_challenge_field"] = $ch;
            	$img = "http://www.google.com/recaptcha/api/image?c=" . $ch;
            	$page = $this->GetPage($img);
            	$headerend = strpos($page, "\r\n\r\n");
            	$pass_img = substr($page, $headerend + 4);
            	write_file($options['download_dir'] . "turbobit_captcha.jpg", $pass_img);
            	$img_src = $options['download_dir'] . "turbobit_captcha.jpg";
        	}else
            	html_error("Error 0x04: Plugin is out of date");
    	} else {
        	$page = $this->GetPage($img[0], $Cookies, 0, $link);
        	$headerend = strpos($page, "\r\n\r\n");
        	$pass_img = (substr($page, $headerend + 4));
        	if (preg_match("#\w{4}\r\n#", $pass_img)) {
            	$t = strpos($pass_img, "P");
            	$pass_img = ltrim(substr($pass_img, $t - 2), "\r\n");
        	}
        	write_file($options['download_dir'] . "turbobit_captcha.png", $pass_img);
        	$img_src = $options['download_dir'] . "turbobit_captcha.png";
    	}
    	$this->EnterCaptcha($img_src, $data, '10');
    	exit;
	}
	private function DownloadFree($link) {
    	$post = array();
    	if (!empty($_POST["recaptcha_challenge_field"])) {
        	$post['recaptcha_challenge_field'] = $_POST["recaptcha_challenge_field"];
        	$post['recaptcha_response_field'] = $_POST['captcha'];
    	} else {
        	$post['captcha_response'] = urlencode($_POST['captcha']);
    	}
    	$post['captcha_type'] = $_POST['captcha_type'];
    	$post['captcha_subtype'] = $_POST['captcha_subtype'];
    	$Cookies = $_POST['Cookies'];
    	$flink = $_POST['flink'];
    	$page = $this->GetPage($flink, $Cookies, $post, $link);
    	is_present($page, "Incorrect, try again!", "Incorrect Captcha");
    	if (!strpos($page, "imit : 60")) {
        	if (preg_match("#limit: (\d+)#", $page, $count)) {
            	html_error("Please wait {$count[1]} for next download");
        	}
        	html_error("Error 0x11: Plugin is out of date");
    	}
    	insert_timer(60);
    	$tmp = cut_str($page, '$("#timeoutBox").load("', '"');
    	$rlink = "http://turbobit.net" . $tmp;
    	$page = $this->GetPage($rlink, $Cookies, 0, $flink . "\r\nX-Requested-With: XMLHttpRequest", 0);
    	if (!preg_match("#/download/[^']+#", $page, $tmp)) {
        	html_error("Error 0x13: Plugin is out of date");
    	}
    	$dlink = "http://turbobit.net" . $tmp[0];
    	$page = $this->GetPage($dlink, $Cookies, 0, $link);
    	if (!preg_match("#Location: (.*)#", $page, $rlink)) {
        	html_error("Error 0x14: Plugin is out of date");
    	}
    	$this->RedirectDownload(trim($rlink[1]), "turbobit", 0, 0, $link);
    	exit;
	}
	private function DownloadPremium($link) {
    	global $premium_acc;
    	$post = array();
    	$post["user[login]"] = $_REQUEST["premium_user"] ? trim($_REQUEST["premium_user"]) : $premium_acc["turbobit_net"]["user"];
    	$post["user[pass]"] = $_REQUEST["premium_user"] ? trim($_REQUEST["premium_user"]) : $premium_acc["turbobit_net"]["pass"];
    	$post["user[memory]"] = "on";
    	$post["user[submit]"] = "Login";
    	$page = $this->GetPage("http://turbobit.net/user/login", 0, $post, $link);
    	preg_match_all("#Set-Cookie: ([^;]+)#", $page, $tmp);

    	$Cookies = $tmp[1][1] . "; " . $tmp[1][3] . "; " . $tmp[1][4];
    	$page = $this->GetPage($link, $Cookies, 0, $link);

    	$Cookies = $tmp[1][3] . "; " . $tmp[1][4];
    	preg_match_all("#Set-Cookie: ([^;]+)#", $page, $tmp);
    	$Cookies.="; " . $tmp[1][1];
    	if (preg_match("#http.+download/redirect[^']+#", $page, $tmp)) {
            	$page = $this->GetPage($tmp[0], $Cookies, 0, $link);
 
 	preg_match("#http:[^']+#",$page,$test);
  $dlink=substr($test[0],0,stripos($test[0],'Content'));
 	$laststring=substr_replace($dlink,'.turbobit.ru:9010/dow',strpos($dlink,'.'),strlen('turbobit.ru:9010'));
 	$this->RedirectDownload(trim($laststring), "turbobit", $Cookies, 0, $link);
    	} else {          
            	html_error("Error 1x01: Plugin is out of date");
    	}
    	exit;
    	}
}
/*
* -- by vdhdevil --
*/
?>


Rapidleech v2 rev. 43

link: http://turbobit.net/...review.pdf.html

Pls fix it

www.rapidleechd.info

Public Rapidleech