Esempio n. 1
0
<?php

if (isset($_GET['action'])) {
    $changeValue = $_GET['action'];
    if ($changeValue == 'SHOW_MEGAUPLOAD_LINKS' || $changeValue == 'SHOW_MEGAVIDEO_LINKS' || $changeValue == 'SHOW_MEGAVIDEO_LINKS_IN_HIGH_RESOLUTION' || $changeValue == 'SHOW_MEGAVIDEO_LINKS_IN_LOW_RESOLUTION') {
        changeBooleanParameter($changeValue);
    } else {
        if ($changeValue == 'MODIFY_USER') {
            $user = $_GET['user'];
            changeMegauploadUser($user);
        } else {
            if ($changeValue == 'MODIFY_COOKIE') {
                $cookie = getMegauploadCookie($_GET['user'], $_GET['pass']);
                //check for valid cookie
                $content = @file_get_contents("http://www.megavideo.com/xml/player_login.php?u=" . $cookie . "&v=");
                if (strpos($content, 'type="premium"')) {
                    changeCookieValue($cookie);
                } else {
                    changeCookieValue("");
                }
            } else {
                if ($changeValue == 'DELETE_COOKIE') {
                    changeCookieValue("");
                }
            }
        }
    }
}
include "config.php";
//Show setup menu to configure options
showSetupMenu();
Esempio n. 2
0
#!/usr/local/bin/Resource/www/cgi-bin/php
<?php 
$query = $_GET["file"];
if ($query) {
    $queryArr = explode(',', $query);
    $user = $queryArr[0];
    $pass = $queryArr[1];
}
function getMegauploadCookie($username, $password)
{
    $link = "http://www.megaupload.com";
    $postdata = http_build_query(array('username' => $username, 'password' => $password, 'login' => '1', 'redir' => '1'));
    $opts = array('http' => array('method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => $postdata));
    $context = stream_context_create($opts);
    $content = file_get_contents($link, false, $context);
    foreach ($http_response_header as $value) {
        if (stripos($value, "cookie")) {
            $content = substr($value, strpos($value, "=") + 1);
            $content = substr($content, 0, strpos($content, ";"));
        }
    }
    return $content;
}
$cookie = getMegauploadCookie($user, $pass);
if ($cookie != "") {
    exec("rm -f /usr/local/etc//usr/local/etc/dvdplayer/megavideo.dat");
    $handle = fopen("/usr/local/etc//usr/local/etc/dvdplayer/megavideo.dat", "w");
    fwrite($handle, $c);
    fclose($handle);
}