Jump to content

uploaded.to

Vinaget Download Plugins


517 replies to this topic

#1 afterburn

    Rapidleecher

  • Members
  • PipPipPipPip
  • 338 posts
  • Gender:Male
  • Location:Singapore

Posted 09 September 2011 - 09:43 AM

What is Vinaget?
Vinaget is a variant of the famous rapidleech script. The main feature of Vinaget is the ability to stream files to end user without downloading the files to the server first.

Where to download Vinaget?
You can download Vinaget at the official site below
http://vinaget.us/

The purpose of this topic is to extend the file hosts supported by the official Vinaget
Updated plugins will be post here
New plugins will be post here

List of Unofficial Plugins
1. wupload.com (Updated: 4 Sep 2011)
2. uploaded.to (Updated: 24 Oct 2011)
3. megaporn.com (Updated: 16 Sep 2011)
4. bitshare.com (Updated: 22 Sep 2011)
5. turbobit.net (Updated: 22 Sep 2011)
6. youtube.com (Updated: 7 Sep 2011)
7. filepost.com (Updated: 28 Oct 2011)
8. alldebrid.com (Updated: 18 Dec 2011)
9. mediafire.com (Updated: 17 Dec 2011)
10. letitbit.net (Updated: 28 Oct 2011)
11. filesmonster.com (Updated: 28 Oct 2011)

Edited by afterburn, 21 December 2011 - 12:19 AM.

Posted Image

PS: I do not make or update vinaget plugins for free anymore as I am too busy with my site and my daily job.

However, I do take requests at USD5 per plugin via PayPal. PM me premium account and sample links and

I will put aside my time to fulfil your requests.


#2 _R_V_T_™

    Rapidleecher

  • Super MOD
  • PipPipPipPip
  • 1,927 posts
  • Gender:Male
  • Location:Indonesia

Awards

Contributer Altruistic

Posted 09 September 2011 - 10:11 AM

View Postafterburn, on 09 September 2011 - 09:43 AM, said:

What is Vinaget?
Vinaget is a variant of the famous rapidleech script. The main feature of Vinaget is the ability to stream files to end user without downloading the files to the server first.

Where to download Vinaget?
You can download Vinaget at the official site below
http://vinaget.blogspot.com/

The purpose of this topic is to extend the file hosts supported by the official Vinaget
Updated plugins will be post here
New plugins will be post here


thx mate ;)

HOW TO REPORT BROKEN DOWNLOAD PLUGIN, CLICK THIS



USE YOUR EYES, YOUR BRAIN, YOUR HAND, MOVE YOUR FINGER AND TYPE ANYTHING YOU NEED IN SEARCH FUNCTION BEFORE YOU REQUEST SOME FEATURE, FIX OR ANYTHING RELATED TO RAPIDLEECH SCRIPT! IF YOU CAN'T FIND THINGS YOU NEED FOR, THEN YOU CAN POST THE THREAD ABOUT YOUR REQUEST/PROBLEM IN FORUM!


#3 afterburn

    Rapidleecher

  • Members
  • PipPipPipPip
  • 338 posts
  • Gender:Male
  • Location:Singapore

Posted 09 September 2011 - 10:41 AM

View Post_R_V_T_™, on 09 September 2011 - 10:11 AM, said:

thx mate ;)


you are welcome bro. :-)

Posted Image

PS: I do not make or update vinaget plugins for free anymore as I am too busy with my site and my daily job.

However, I do take requests at USD5 per plugin via PayPal. PM me premium account and sample links and

I will put aside my time to fulfil your requests.


#4 afterburn

    Rapidleecher

  • Members
  • PipPipPipPip
  • 338 posts
  • Gender:Male
  • Location:Singapore

Posted 09 September 2011 - 11:03 AM

Attached is the Updated wupload.com plugin as of 4 Sep 2011
credits to djkristoph for providing me a wuploading premium account to fix this plugin

wupload_com.php
<?php
if (preg_match('#^http://([a-z0-9]+)\.wupload\.com/#', $url) || preg_match('#^http://wupload\.com/#', $url)){
	list($login, $password) = explode(':', $this->get_account('wupload.com'));
	if(empty($login)==false && empty($password)==false){

		#####################################
		# Prepare our ids(Link ID) variable #
		#####################################
	
		$regex = '|/file/(([a-z][0-9]+/)?[0-9]+)(/.*)?$|';
		$matches = array();
		preg_match($regex, $url, $matches);
		$ids = str_replace('/', '-', $matches[1]);
		//echo "<br><br>ids = " . $ids;

		############################################################################
		# Post our u(Username),p(Password) & ids(Link ID) variables to wupload API #
		############################################################################

		$data = $this->curl("http://api.wupload.com/link?method=getDownloadLink","","u=$login&p=$password&ids=$ids");
		//echo "<br><br>data = " . $data;		# <-- remove // to see error message if plugin is not working properly

		####################################################################
		# Extract URL, filename and filesize variables from generated page #
		####################################################################
		preg_match('/"url":"(.*?)"}]},"status"/', $data, $matches);
		$URL = $matches[1];
		$URL = str_replace('\/','/',$URL);
		//echo "<br><br>URL = " . $URL;

		preg_match('/"filename":"(.*?)","url":"/', $data, $matches);
		$filename = $matches[1];
		$filename = str_replace('\/','/',$filename);
		//echo "<br><br>filename = " . $filename;

		$filesize = JTools::remote_size($URL, "");
		//echo "<br><br>filesize = " . $filesize;

	}
}
# plugin by ..:: [H] ::..
# updated by afterburnerleech.com (4 Sep 2011)
?>

Attached File(s)


Posted Image

PS: I do not make or update vinaget plugins for free anymore as I am too busy with my site and my daily job.

However, I do take requests at USD5 per plugin via PayPal. PM me premium account and sample links and

I will put aside my time to fulfil your requests.


#5 afterburn

    Rapidleecher

  • Members
  • PipPipPipPip
  • 338 posts
  • Gender:Male
  • Location:Singapore

Posted 09 September 2011 - 01:00 PM

Attached is the Updated uploaded.to plugin as of 24 Oct 2011
credits to BlackWorld89 for providing me a uploaded.to premium account to fix this plugin

uploaded_to.php
 
<?php
 
if (preg_match('#^http://([a-z0-9]+)\.uploaded\.to/#', $url) || preg_match('#^http://uploaded\.to/#', $url)){
    list($user, $pass)  = explode(':', $this->get_account('uploaded.to'));
    if(empty($user)==false && empty($pass)==false){
 
        ############################################################################
        # Post our id(Username) & pw(Password) variables to uploaded.to Login Form #
        ############################################################################
 
        $data = $this->curl("http://uploaded.to/io/login",'',"id=$user&pw=$pass");
        //echo "<br><br>data = " . $data;
 
        ########################
        # Retrieve our cookies #
        ########################
        
        $cookie = $this->GetCookies($data);
        //echo "<br><br>cookie = " . $cookie;
        $this->cookies .= $cookie;
 
        ####################################################################
        # Extract URL, filename and filesize variables from generated page #
        ####################################################################
 
        $data = $this->curl($url,$this->cookies,"");
        //error_log($data, 3, "uploaded.to.txt");
       	     
        $URL = $this->cut_str($data, "<form method=\"post\" action=\"http://", "\" style=\"width:290px;margin-left:-2px\">");
        $URL = trim("http://" . $URL);
        //echo "<br><br>URL = " . $URL;
   	     
        $ch = curl_init($URL);
        curl_setopt($ch, CURLOPT_NOBODY, true);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_HEADER, true);
        curl_setopt($ch, CURLOPT_COOKIE, $this->cookies);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($ch, CURLOPT_TIMEOUT, 60);
        curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 60);
        $data = curl_exec($ch);
        curl_close($ch);
 
        //echo "<br><br>data = " . $data;
 
        if (preg_match('/Content-Length: (\d+)/', $data, $matches)) {
   	     $filesize = (int)$matches[1];
        }
        //echo "<br><br>filesize = " . $filesize;
 
        if (preg_match('/filename="(.*)"/', $data, $matches)) {
   	     $filename = $matches[1];
        }
        //echo "<br><br>filename = " . $filename;
    }
}
# plugin by ..:: [H] ::..
# updated by afterburnerleech.com (24 Oct 2011)
?>
 


this additional plugin is to support uploaded.to link in ul.to format

ul_to.php
<?php
if (preg_match('#^http://([a-z0-9]+)\.ul\.to/#', $url) || preg_match('#^http://ul\.to/#', $url)){
list($user, $pass)  = explode(':', $this->get_account('uploaded.to'));
if(empty($user)==false && empty($pass)==false){
  ############################################################################
  # Post our id(Username) & pw(Password) variables to uploaded.to Login Form #
  ############################################################################
  $data = $this->curl("http://uploaded.to/io/login",'',"id=$user&pw=$pass");
  //echo "<br><br>data = " . $data;
  ########################
  # Retrieve our cookies #
  ########################
 
  $cookie = $this->GetCookies($data);
  //echo "<br><br>cookie = " . $cookie;
  $this->cookies .= $cookie;
  ####################################################################
  # Extract URL, filename and filesize variables from generated page #
  ####################################################################
  $data = $this->curl($url,$this->cookies,"");
  //echo "<br><br>data = " . $data;
 
  if(preg_match ( '/ocation: (.*)/', $data, $linkpre)){
   $url = trim ( $linkpre[1] );
   $data = $this->curl($url,$this->cookies,"");
  }
  //error_log($data, 3, "uploaded.to.txt");
               
  $URL = $this->cut_str($data, "<form method=\"post\" action=\"http://", "\" style=\"width:290px;margin-left:-2px\">");
  $URL = trim("http://" . $URL);
  //echo "<br><br>URL = " . $URL;
  
  $ch = curl_init($URL);
  curl_setopt($ch, CURLOPT_NOBODY, true);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_HEADER, true);
  curl_setopt($ch, CURLOPT_COOKIE, $this->cookies);
  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  curl_setopt($ch, CURLOPT_TIMEOUT, 60);
  curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 60);
  $data = curl_exec($ch);
  curl_close($ch);
  //echo "<br><br>data = " . $data;
  if (preg_match('/Content-Length: (\d+)/', $data, $matches)) {
   $filesize = (int)$matches[1];
  }
  //echo "<br><br>filesize = " . $filesize;
  if (preg_match('/filename="(.*)"/', $data, $matches)) {
   $filename = $matches[1];
  }
  //echo "<br><br>filename = " . $filename;
}
}
# plugin by ..:: [H] ::..
# updated by afterburnerleech.com (24 Oct 2011)
?>

Attached File(s)


Edited by afterburn, 27 October 2011 - 01:18 AM.

Posted Image

PS: I do not make or update vinaget plugins for free anymore as I am too busy with my site and my daily job.

However, I do take requests at USD5 per plugin via PayPal. PM me premium account and sample links and

I will put aside my time to fulfil your requests.


#6 kmbosha

    Rapidleecher

  • Members
  • PipPipPipPip
  • 105 posts
  • Gender:Male
  • Location:Egypt

Posted 09 September 2011 - 05:23 PM

Nice Work ... Keep It Up. :)
Posted Image

#7 afterburn

    Rapidleecher

  • Members
  • PipPipPipPip
  • 338 posts
  • Gender:Male
  • Location:Singapore

Posted 09 September 2011 - 11:31 PM

View Postkmbosha, on 09 September 2011 - 05:23 PM, said:

Nice Work ... Keep It Up. :)


Thank you Bro. :-)

Posted Image

PS: I do not make or update vinaget plugins for free anymore as I am too busy with my site and my daily job.

However, I do take requests at USD5 per plugin via PayPal. PM me premium account and sample links and

I will put aside my time to fulfil your requests.


#8 jamban012

    Member

  • Members
  • PipPip
  • 25 posts

Posted 09 September 2011 - 11:37 PM

THANKS BRO!
You'r helping people!

#9 afterburn

    Rapidleecher

  • Members
  • PipPipPipPip
  • 338 posts
  • Gender:Male
  • Location:Singapore

Posted 10 September 2011 - 12:40 AM

View Postjamban012, on 09 September 2011 - 11:37 PM, said:

THANKS BRO!
You'r helping people!


You are welcome...
Inspired by [H], the coder of Vinaget... and the rapidleech community... :-)

Posted Image

PS: I do not make or update vinaget plugins for free anymore as I am too busy with my site and my daily job.

However, I do take requests at USD5 per plugin via PayPal. PM me premium account and sample links and

I will put aside my time to fulfil your requests.


#10 jamban012

    Member

  • Members
  • PipPip
  • 25 posts

Posted 11 September 2011 - 06:06 PM

Hi, wanna ask. Why i cant use real-debrid ? Is it cause by plugin? As i tested last night

1. Use Wupload link, Fileserve etc etc
2. Tick on "Use real-debrid"
3. Click download.
4. Got error.

Help me. Thanks ):

#11 leon89

    Newbie

  • Members
  • Pip
  • 7 posts

Posted 14 September 2011 - 07:09 PM

real-debrid not work, please fix

#12 afterburn

    Rapidleecher

  • Members
  • PipPipPipPip
  • 338 posts
  • Gender:Male
  • Location:Singapore

Posted 14 September 2011 - 08:10 PM

View Postleon89, on 14 September 2011 - 07:09 PM, said:

real-debrid not work, please fix


most likely real-debrid ban your host ip address.

View Postjamban012, on 11 September 2011 - 06:06 PM, said:

Hi, wanna ask. Why i cant use real-debrid ? Is it cause by plugin? As i tested last night

1. Use Wupload link, Fileserve etc etc
2. Tick on "Use real-debrid"
3. Click download.
4. Got error.

Help me. Thanks ):


most likely real-debrid ban your host ip address.

Posted Image

PS: I do not make or update vinaget plugins for free anymore as I am too busy with my site and my daily job.

However, I do take requests at USD5 per plugin via PayPal. PM me premium account and sample links and

I will put aside my time to fulfil your requests.


#13 afterburn

    Rapidleecher

  • Members
  • PipPipPipPip
  • 338 posts
  • Gender:Male
  • Location:Singapore

Posted 14 September 2011 - 08:15 PM

Avoid real-debrid, debridmax, fastdebrid & alldebrid...
They are known to ban most known US and Europe web hosting server ip address
You will have more luck to get them to work if you are using not so well known web hosting

Posted Image

PS: I do not make or update vinaget plugins for free anymore as I am too busy with my site and my daily job.

However, I do take requests at USD5 per plugin via PayPal. PM me premium account and sample links and

I will put aside my time to fulfil your requests.


#14 djkristoph

    Advanced Member

  • Members
  • PipPipPip
  • 68 posts

Posted 15 September 2011 - 05:52 PM

pls add turbobit download plugin, and hotfile dont work :(

#15 afterburn

    Rapidleecher

  • Members
  • PipPipPipPip
  • 338 posts
  • Gender:Male
  • Location:Singapore

Posted 15 September 2011 - 10:46 PM

View Postdjkristoph, on 15 September 2011 - 05:52 PM, said:

pls add turbobit download plugin, and hotfile dont work :(


pm me a premium account. if not, i cannot create new plugin or fix not working plugin.
after plugin creation or fix, you can change your password.

Posted Image

PS: I do not make or update vinaget plugins for free anymore as I am too busy with my site and my daily job.

However, I do take requests at USD5 per plugin via PayPal. PM me premium account and sample links and

I will put aside my time to fulfil your requests.