Crea sito
Home > Snippet, php > Yuvutu Free download video – script php

Yuvutu Free download video – script php

L’altra volta avevo pubblicato un articolo per scaricare video da PornHub gratuitamente. Questa volta faccio un articolo simile, uno script in php per fare il download di un video da Yuvutu, un sito pornografico che contiene filmini amatoriali, che sono però scaricabili soltanto dagli utenti che pagano e, a volte, chi fa l’upload del file può vietare il download.

Bene, arrivando a noi, lo script che vi sto per mostrare permette di fare il download di tutti i video inseriti. Funziona come lo script precedente, ovvero, ipotizziamo che il link è http://www.yuvutu.com//modules.php?name=Video&op=view&video_id=347620 si inserisce nello script la parte /modules.php?name=Video&op=view&video_id=347620 e lui fa tutto il resto. C’è da dire che per questo sito è stato più facile il download del video rispetto a PornHub. Buona divertimento :D

<form action="" method="post">
    Insert the video link es. (www.yuvutu.com/LINK): <input type="text" name="link" /><input type="submit" value="Get link" /><br/>
    For example, http://www.yuvutu.com//modules.php?name=Video&op=view&video_id=347650 is the link you do insert modules.php?name=Video&op=view&video_id=347650
   
</form>
<?php

if(!empty($_POST['link'])) {
    $uri = ($_POST['link'][0] != '/' ? "/".$_POST['link'] : $_POST['link']);
    $sito = 'www.yuvutu.com';

    $f = getFile($uri, $sito);
     
    if($f) {
        $f = explode("file: "", $f);
        $d = explode("
",", $f[1]);
        $link = $d[0];
        echo "Link to file: <b>".$d[0]."</b>";
    }else echo "Bad link";
}

function getFile($url, $sito) {
    $other_info = "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; it; rv:1.9) Gecko/2008052906 Firefox/3.0rn".
        "Accept-Language: it-it,it;q=0.8,en-us;q=0.5,en;q=0.3rn".
        "Keep-Alive: 300rn".
        "Cookie: cT=; __utma=111180300.1299236166304817000.1247491032.1247491032.1247491032.1; __utmb=111180300.2.10.1247491032; __utmc=111180300; __utmz=111180300.1247491032.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); popundr=1; lang=english; warningcookie=viewed; viewstackcookie=347650; timingcookie=1%2C50%2C1599999999; umg=14; sug=2; fv=1247490936; fr=http%3A%2F%2Fwww.yuvutu.com%2F%2Findex.php%3Fredirect_to%3D%252F%252Fmodules.php%253Fname%253DVideo%2526op%253Dview%2526video_id%253D347650rn".
        "Connection: Keep-Alivernrnrn";
   
    if (!($sock = fsockopen($sito,80)))
        die ("Errore connessionen");

    fputs ($sock,
        "GET $url HTTP/1.1rn".
        "Host: $sitorn".$other_info);
   
    $f = "";
    while (!feof($sock))
        $f .= fgets($sock);

    fclose($sock);
    return $f;
}
?>

Click here for use this script onLine

  • Share/Bookmark

Post correlati:

  1. Download video da YouTube – script PHP
  2. Download video da Allhm, ePorner, SkimTube, MadCityTube, seXas, LubeTube, BadJojo, MotherLess, PornRabbit, TanjaTube, TubeThumbs e TubeKings
  3. Download video da Libero, GreekTube, 5min, Blip, Break, MySpace, Dailymotion, Current, Tiscali e GoogleVideo
  4. Script in PHP per creare un cut link
  5. PHP Script per l’upload multiplo dei file

  1. nmdc28
    3 settembre 2009 a 13:13 | #1

    non ho capito come funzionano i Javascript.

    Ho salvato in file di testo rinomiato file.js il tuo script
    copiata in una cartella il cui indirizzo ho inserito in opera.
    ora dal sito yuvutu non succede nulla.

    dove ho sbagliato?

  2. codesnippet
    3 settembre 2009 a 14:17 | #2

    No, aspetta. Questo non è JavaScript, è PHP, ti serve un webserver in locale per farlo funzionare. Prova con XAMPP o EasyPHP.

    Comunque quello script l’ho messo in un sito web http://pfreedownload.altervista.org/ dove ce ne sono altri simili. Puoi usarlo direttamente online

    http://pfreedownload.altervista.org/Free_yuvutu_download_video.php
    Questo il link diretto!

  1. Nessun trackback ancora...

Anti-Spam Image