I found this site is just what I need.
I want to build a personal Poxey tool coz quite a lot of great sites were blocked for me. Which technique should I learn? Is PHP enough for the job?
I found this site is just what I need.
I want to build a personal Poxey tool coz quite a lot of great sites were blocked for me. Which technique should I learn? Is PHP enough for the job?
Yes. A simple proxy could consist of running fopen() on the website, then finding and replacing URI instances of href="...", src="...", url(...), etc. to requests to your website (or else those will link to the target website, not your proxy).
I use a socks proxy (danted) to bypass filtering on remote hosts. Socks allow to use a wide range of protocols, not just only HTTP. This works with any browser without rewriting any of html content, consecutives requests are juste made with the same proxy.
fopen could do the stuff with just php if you can't install anything, but be careful not to allow everyone to connect through, and there is the HTML source rewriting to handle (can be eased with HTMLPurifier).