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?
I am looking for a cloaker cgi script
Collapse
X
-
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 -
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

Comment