Activity Stream
48,167 MEMBERS
6743 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 8 of 8
  1.     
    #1
    It begins...

    Default 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($chCURLOPT_RETURNTRANSFER1);
        
    curl_setopt($chCURLOPT_HEADER1);
        
    curl_setopt($chCURLOPT_FOLLOWLOCATION0);
        
    curl_setopt($chCURLOPT_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($chCURLOPT_REFERER$refer);
        }
        if(
    $postfields)
        {
            
    curl_setopt($chCURLOPT_POST1);
            
    curl_setopt($chCURLOPT_POSTFIELDS$postfields);
        }
        if(
    $cookie)
        {
            
    curl_setopt($chCURLOPT_COOKIEJAR$cookie);
            
    curl_setopt($chCURLOPT_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";
        }
    }

    ?>
    OR

    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 dirty
    Lifetalk 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

  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    Tastro.org HDTVXviDLOL.com EpisodeSeasons.com FileBorg.org W-47.com
    that'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>

  4.     
    #3
    Banned
    that's very old, but good for posting it here.

  5.     
    #4
    It 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.

  6.     
    #5
    Member
    thank you very much i didn't know about this it's really awesome.

  7.     
    #6
    Member
    When I download MU files with RL as a non-premium I only have to wait 10 seconds, not 45 seconds

  8.     
    #7
    Member
    Website's:
    crackingforum.com linkparadox.com crackz.me
    Or buy a premium and be cool, like me.


  9.     
    #8
    It begins...
    Quote Originally Posted by Time View Post
    When I download MU files with RL as a non-premium I only have to wait 10 seconds, not 45 seconds
    Not sure about 10, but registered free members have to wait for 25 seconds.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. wait time to download next file (filesonic)
    By leonight in forum File Host Discussion
    Replies: 3
    Last Post: 11th Dec 2011, 01:37 PM
  2. Replies: 9
    Last Post: 17th Nov 2011, 05:38 PM
  3. Replies: 7
    Last Post: 28th May 2011, 04:14 AM
  4. 1, 2, 3,...wait! WTF?
    By upnorth in forum General Discussion
    Replies: 3
    Last Post: 12th Jan 2011, 08:42 PM
  5. How much time i have to wait
    By waqararif in forum General Discussion
    Replies: 6
    Last Post: 21st Aug 2009, 12:15 PM

Tags for this Thread

BE SOCIAL