PHP Redirector - What is this?

Discussion in 'PHP' started by MilesB, Jun 17, 2007.

  1. #1
    Anybody know what script this is?

    animeupload.com/ddl.php ?
     
    MilesB, Jun 17, 2007 IP
  2. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #2
    Look at the source code:

    
    <html>
    <head>
    <title>AnimeUpload.com - Direct Downloads</title>
    <script language="JavaScript" type="text/javascript">
    function makeURL(){
      document.baseform.url_redirect.value = "http://localhost/downloads/?"+document.baseform.url.value;
    }
    </script>
    </head>
    <body>
    <p>
    <font face="Tahoma" size="2">
    That is your personal Redirector, for whatever you need it
    </font>
    </p>
    <br><br>
    <p>
    <form name="baseform">
    <table border="1">
    
    <tr>
    <td width="175">Enter URL:</td>
    <td width="250" align="center"><input name="url" type="text" size="34" value="http://www.yoursite.com"></td>
    </tr>
    <tr>
    <td width="175">Redirected URL:</td>
    <td width="250" align="center"><input name="url_redirect" type="text" size="34" readonly></td>
    </tr>
    <tr>
    <td width="175"><input type="button" value="Submit!" onClick="javascript:makeURL();"></td>
    <td>&nbsp;</td>
    </tr>
    </table>
    </form>
    </p>
    
    </body>
    </html>
    
    HTML:
    The script doesn't do anything actually. It copies the URL you enter slightly modified in the text box below. The new link won't work for anyone.

    Hmmmm...
     
    nico_swd, Jun 17, 2007 IP
  3. MilesB

    MilesB Well-Known Member

    Messages:
    1,813
    Likes Received:
    41
    Best Answers:
    0
    Trophy Points:
    180
    #3
    Just wondering because on their downloads links on site it shows

    animeupload.com/ddl.php?http://rapidshare.com/xxxx/etc

    Just wonderingwhat the ddl is so thats how I came upon ddl.php
     
    MilesB, Jun 17, 2007 IP