Megaupload Premium Link Generator


Update: Since MU has changed its web interface, the script is not working anymore so I'm taking it down.

---

No, this isnt about the first thing that probably comes to your mind. I wont be offering a "live" premium link generator on this blog - last thing I want is the possibility of Megaupload banning my own account (for overuse?) but if I ever win premium from the game, I'll happily share it ;-)

This is a bare-boned PHP script - no flashy colors, fancy graphics (because I'm awful at it) but just the core - w/c you can use on your own website using your own premium account. So modify it as you see fit, and you have to since you have to edit it a bit later (see the source for more). So you must know a bit of PHP to actually make this work. Not the greatest code. You have been warned ;-)

Links removed.

Note: No username/password but the premium account hash (MD5 + SHA256?) is required. But leaking this hash to those who understand how these things work would be the same as giving them away. So it's best NOT to reveal your account hash to anybody you don't trust. And you use this at your own risk. I'm NOT liable for anything. I tested this on my own account and it worked like it's supposed to. And since Megaupload (really) likes to change things a lot, dont expect it to work next month or maybe even much earlier. And I don't have any plans on making updates either so till then, happy leeching! :-)


Greets to the uber Polish scripters! :-)

17 comments:

DOSEr said...

thanks alot m8! really appreciate it

reeky said...

you're the first non-automated spam comment this entry ever had aha

you're welcome ;-)

Anonymous said...

Me podrian decir que hago con estos archivos?. No se como o donde aplicarlos. Alguna ayuda?.Grs

Could you tell me what I do whit this files? I do not how or where apply. Some help for here?.Thanks.

reeky said...

@Anonymous

you need at least 3 things:

1. you know some PHP to edit the file correctly
2. you have a webserver to run it on
3. you have an existing MU premium account to begin with

if you lack one or all, i'm afraid this would be of no use to you.

Unknown said...

Hi, how i can limit the numbers of donwloads by ip. Example: the user only can download 3 files every 24 hours.

thank you

Unknown said...

How i cant limit the number of download per user?

reeky said...

@Johnatan: get the user's IP via $_SERVER variable 'REMOTE_ADDR' or, if using a transparent proxy, a "Via" or an "X-Forwarded-For" in the request header. so the limitations of this method is quite obvious. anyhow, when you do get an IP, do whatever you want.

@admin: that's beyond the scope of this script. anyway, what you need is to just compare a saved IP to a database record or something that increments by 1 for every download. if it's greater than 3, don't show download link. then just delete that IP the next day. you get the idea.

Unknown said...

Hi, how i can create a gigasize premium link generator? You know do?

reeky said...

no idea -.-

leon said...

hi reeky,
i try to make to the script work in
my local web server, it have php5 and mysql, but the mugen.php giveme this error
C:\lserv\AppServ\www\mugen.php
on line 115.
you can helpme man i really apreciate your help.

by mail or post here...
darkleon23@gmail.com

reeky said...

@leon:

i suppose you already have the necessary requirements to even reach line 115. i tried the script (locally and remotely-hosted) again and it still works fine for me. exactly what error message did you get at line 115?

Anonymous said...

Notice: Undefined offset: 1 in /home/xxxxx/public_html/mu/mugen.php on line 115

Notice: Undefined offset: 1 in /home/xxxxx/public_html/mu/mugen.php on line 115

Notice: Undefined offset: 2 in /home/xxxx/public_html/mu/mugen.php on line 115

Notice: Undefined offset: 1 in /home/xxxx/public_html/mu/mugen.php on line 115

Notice: Undefined offset: 4 in /home/xxxx/public_html/mu/mugen.php on line 115

reeky said...

@The_Darkness:

you either have pasted a wrong MU link, the MU link has expired or, though highly unlikely, your connection from MU disconnects on transit. to know why, print out the final $response after line 107 and check the output HTML. edit the regex if you have to, but i don't think you need to since i'm still able to make valid links.

miki said...

Thanks for script. It's amazing!! But maybe add bigger window, and ability to generate more link ?

Thanks

reeky said...

no problem but those "features" you mentioned are trivial enough it's easy to implement them yourself.

Anonymous said...

Hello, megaupload just change its service interface and thus the generator does not work anymore! It displays the error $result = $link[1] . $sqrt[1] . chr(sqrt($sqrt[2])) . chr(abs($abs[1])) .$link[4]; Can you tell me what line of code does need to change the debrideur to work again? thank you very much (excuse me for my English I'm French)

reeky said...

@Christopher: yes, I saw it just now. As for an update of the script, I can't promise anything right now.