Results 1 to 8 of 8
-
13th Jan 2011, 10:35 PM #1OPIt begins...
Skipping the MU wait time. Here's how.
Disclaimer: I haven't tested this on 10,000 computers or IP addresses or free accounts. But every time I've tried this, it has worked for me.
Disclaimer 2: This will most likely get patched, very quickly. Enjoy it while it's not.
Exclamation: I can't believe this loophole actually exists. I mean, it's supposed to be a very basic way of preventing a wait time skip. But they seem to have left it there on purpose. Oh well.
You need:
- A browser. I prefer Chrome.
- The ability to view page source.
- The ability to search for text in the source.
Tutorial:
- Navigate to any MU link. Say, (this is just an example) http://www.megaupload.com/?d=6LHPT9ZC
- Right click anywhere, click on 'View page source' (Chrome). Or you could just hit Ctrl + U (Chrome).
- The page source opens. Basically, loads of text. Hit Ctrl + F to perform a search.
- Search for 'downloadlink' (without the quotes, but exactly as typed) (Click to view)
- Copy link -> Download (Click to view)
Limitations:
Same as those for a free member. Links can only be downloaded with one connected stream and no resume support.
Benefit:
Save 45 seconds of your life
PHP Implementation:
PHP Code:<form action="" method="POST" enctype="multipart/form-data">
<textarea cols=50 rows=10 name="links"></textarea>
<input type="submit" name="submit" value="go" />
</form>
<?
function curl($link, $postfields = '', $cookie = '', $refer = '')
{
$ch = curl_init($link);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1');
if($refer)
{
curl_setopt($ch, CURLOPT_REFERER, $refer);
}
if($postfields)
{
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
}
if($cookie)
{
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
}
$page = curl_exec($ch);
return($page);
curl_close($ch);
}
if(isset($_REQUEST['submit']))
{
$links = explode("\n", $_POST['links']);
foreach ($links as $link)
{
$link = trim($link);
$page = curl($link, '', $cookie);
preg_match('#id="downloadlink"><a href="(.*)" class#', $page, $match);
$done[] = $match[1];
}
echo "Direct Links <br />";
foreach ($done as $link)
{
echo $link;
echo "<br />";
}
echo "<br /><br /><br /><br />";
echo "Hyperlinks <br />";
foreach ($done as $link)
{
echo "<a href=\"$link\">$link</a>";
echo "\n";
}
}
?>
http://pastebin.com/Lb4HXS1z
EDIT
Theory:
Basically, MU implements a javascript based technique to hide the download button and the link until the 45 second countdown is up. Since they're hiding it via javascript, the download link has to be present initially to be shown later. A look at the source shows where it is. Or the PHP script. It's just a simple regex match.
EDIT 2
The PHP code was done in a hurry. It's 3:40AM here. I picked code from everywhere and strung it together. My apologies if it's dirtyLifetalk Reviewed by Lifetalk on . Skipping the MU wait time. Here's how. Disclaimer: I haven't tested this on 10,000 computers or IP addresses or free accounts. But every time I've tried this, it has worked for me. Disclaimer 2: This will most likely get patched, very quickly. Enjoy it while it's not. Exclamation: I can't believe this loophole actually exists. I mean, it's supposed to be a very basic way of preventing a wait time skip. But they seem to have left it there on purpose. Oh well. You need: - A browser. I prefer Chrome. - The ability to view Rating: 5
-
13th Jan 2011, 10:41 PM #2MemberWebsite's:
Tastro.org HDTVXviDLOL.com EpisodeSeasons.com FileBorg.org W-47.comthat's old... but nice for mentoring it again, i'm sure that not all people knew that.
MU is really bad at hidding this lol. this is already theyr second fail with that.>)
before you could just edit the url and you could download without to wait. :>LE with your pr2 site? <a href="http://tastro.org/">Tastro.org</a> or link exchance with our category page: <a href="http://tastro.org/i/hdtv">HDTV</a> | <a href="http://tastro.org/i/dvdrip">DVDRip</a> | <a href="http://tastro.org/i/r5">R5</a> | <a href="http://tastro.org/i/bdrip">BDRip</a> | <a href="http://tastro.org/i/brrip">BRRip</a>
-
13th Jan 2011, 10:42 PM #3Banned
that's very old, but good for posting it here.
-
13th Jan 2011, 10:42 PM #4OPIt begins...
True.
I've tried 'grabbing' the link from my IP address and WGET'ing it on my NL server. Works a treat. Top speeds.
EDIT:
@appman
Yep, I'm aware. Problem is, more than half the people who use MU aren't aware of it.
-
13th Jan 2011, 10:50 PM #5Member
thank you very much i didn't know about this it's really awesome.
-
13th Jan 2011, 10:57 PM #6Member
When I download MU files with RL as a non-premium I only have to wait 10 seconds, not 45 seconds
-
13th Jan 2011, 11:26 PM #7MemberWebsite's:
crackingforum.com linkparadox.com crackz.me
-
14th Jan 2011, 08:26 AM #8OPIt begins...
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
wait time to download next file (filesonic)
By leonight in forum File Host DiscussionReplies: 3Last Post: 11th Dec 2011, 01:37 PM -
what filehost give me remote upload and no wait time for downloaders??? no make money
By myincome2020 in forum File Host DiscussionReplies: 9Last Post: 17th Nov 2011, 05:38 PM -
Any paid to upload host without a wait time for free downloaders?
By jups in forum File Host DiscussionReplies: 7Last Post: 28th May 2011, 04:14 AM -
1, 2, 3,...wait! WTF?
By upnorth in forum General DiscussionReplies: 3Last Post: 12th Jan 2011, 08:42 PM -
How much time i have to wait
By waqararif in forum General DiscussionReplies: 6Last Post: 21st Aug 2009, 12:15 PM
themaCreator - create posts from...
Version 3.45 released. Open older version (or...