I am looking for a cloaker cgi script

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • meghan187
    Confirmed User
    • Aug 2002
    • 152

    #1

    I am looking for a cloaker cgi script

    Here is my senerio, I want to install a script on my webserver that will allow me to get around a firewall at work. Anyone know of any off hand?
  • jasonir
    Confirmed User
    • Aug 2002
    • 1887

    #2
    This simple code will load any site you want. I have a script that can replace URLs, etc. ICQ me if you need it.

    PHP Code:
    <?php
    // Get a file into an array.  In this example we'll go through HTTP to get 
    // the HTML source of a URL.
    $lines = file ('http://www.WEBSITEHERE.com/');
    
    // Loop through our array, show html source as html source; and line numbers too.
    foreach ($lines as $line_num => $line) {
        echo $line;
    }
    
    ?>
    ICQ: 61689996

    Comment

    • meghan187
      Confirmed User
      • Aug 2002
      • 152

      #3
      Originally posted by jasonir
      This simple code will load any site you want. I have a script that can replace URLs, etc. ICQ me if you need it.

      PHP Code:
      <?php
      // Get a file into an array.  In this example we'll go through HTTP to get 
      // the HTML source of a URL.
      $lines = file ('http://www.WEBSITEHERE.com/');
      
      // Loop through our array, show html source as html source; and line numbers too.
      foreach ($lines as $line_num => $line) {
          echo $line;
      }
      
      ?>


      Do sponsors allow you to process there links this way, also back to where we started, Can I just build a form to pass in urls to bypass the firewall?

      Comment

      Working...