saghir69
09-20-2004, 04:14 AM
hi i need access to a site that has been filtered at my work place. say www.site1.com
can i use some script on one of my other site "site2.com" so that i can view www.site1.com through it?
its only the domain that is filtered and not any ip addresses!
gogocode
09-21-2004, 09:25 PM
Originally posted by saghir69
hi i need access to a site that has been filtered at my work place. say www.site1.com
can i use some script on one of my other site "site2.com" so that i can view www.site1.com through it?
its only the domain that is filtered and not any ip addresses!
Just use an anonymizer.
http://www.google.co.nz/search?hl=en&ie=UTF-8&q=anonymizer&btnG=Google+Search&meta=
Also : http://blocks.orcon.net.nz/
saghir69
09-22-2004, 04:48 AM
yeah but i'm behind a firewall at work and all anonymizers are filtered! :( i need to run my own proxy on a different domain.
can that be done? i've got broad band on my home pc can i run a proxy server on it and acces sites through it?
saghir69
09-22-2004, 05:26 AM
how can i do it? i'm not that bad with computing its just that i haven't done this be4.
do u know of a good/simple proxy server to use. i just want :80 access all i need is acces to one site through it.
inimino
09-22-2004, 07:42 AM
squid
(curse the 10 character rule)
inimino
09-22-2004, 10:12 AM
The rule that says every post has to be ten characters or more.
Anyway. Try squid.
saghir69
09-22-2004, 10:23 AM
ok cool i've found another site that seems to be offering software to actually bypass filter, but i can't acces it at the moment! stupid filtering! lol
Georgecooldude
09-22-2004, 10:38 AM
Originally posted by saghir69
ok cool i've found another site that seems to be offering software to actually bypass filter, but i can't acces it at the moment! stupid filtering! lol
hahaha! thats a classic! :D
alexaandru
09-22-2004, 11:26 AM
Originally posted by saghir69
hi i need access to a site that has been filtered at my work place. say www.site1.com
can i use some script on one of my other site "site2.com" so that i can view www.site1.com through it?
its only the domain that is filtered and not any ip addresses!
If all you want is to see www.site1.com indirectly to bypass filtering, you can get away without using a proxy (such as squid). Just open a regular webserver (IIS, Apache, tinyweb, any will do just fine) and put this page on your home pc webserver's document root:
<frameset>
<frame src="http://www.site1.com">
</frameset>
save it as site1.html
then point your filtered web browser to that page: http://www.site2.com/site1.html and voila, yout entire site1 is included there... :)
Alex
* ah, the good old days of tinyweb ;)*