Page 1 of 1

Proxy Scripts

Posted: Wed Jan 28, 2009 11:31 am
by Rogue_Modder
Does anyone know of any proxy scripts that are free? i can upload to my site?

Needs to support:
[*]Facebook
[*]Myspace
[*]Youtube
[*]Megaupload/rapidshare
[*]Bebo


Thanks

Re: Proxy Scripts

Posted: Wed Jan 28, 2009 11:36 am
by FleetAdmiralBacon
I run a suffix proxy on my server. It's a slightly modified version of what runs on http://6a.nl/ that adds proper https support (download is available from there, it's a PHP script and a few Apache Rewrites). Not sure if it works with Facebook (I don't think I could actually log in before I implemented SSL redirection, maybe it works now e: Nope, still can't log in.), but it did work with YouTube (until my school added me to their personal block list). Should work with all the upload sites as well.

Re: Proxy Scripts

Posted: Wed Jan 28, 2009 11:38 am
by Rogue_Modder
thank you, can you help me with SSL?

but still omg thanks so much :)

EDIT:

i did it, thanks

Re: Proxy Scripts

Posted: Fri Feb 13, 2009 12:35 pm
by FleetAdmiralBacon
Just thought I'd bump this to add a few other possibilities if you have a Linux server or can install Cygwin. Either way, you'll need an SSH client on the machine you wish to use. On Windows, you can get PuTTY, but I can't give instructions on setting it up.

First off is the simple, straight-forward SOCKS proxy over an SSH tunnel. Basically, SOCKS is a standardized proxying protocol. TCP packets go in, get sent over the proxy (in this case, it's a self-hosted SSH tunnel), and come out the other end. It's also useful for setting up a temporary, secure VPN of sorts.

If you have a pure SSH client, you can do this:

Code: Select all

ssh -D 8080 -C servername
The -D says "listen on this port" and the -C says "compress everything". This will SSH into servername and setup a SOCKS proxy on the local machine on port 8080 (which is a good standard).
To use the proxy in Firefox, you can either use the built-in proxy settings or install FoxyProxy and add it as a SOCKS proxy (ensure all other fields are blank).

Now, if SSH is blocked (or if everything but DNS is blocked), we have another trick we can pull: Run SSH over compliant DNS requests. I have an explanation on how to do this on my blog. Beyond the DNS tunneling, it's the same as above.

What's great about using an SSH tunnel proxy is that:
1) You only need to have SSH not be blocked - and it shouldn't be, even in some of the strictest environments.
2) Everything is secured (or at least encrypted) as it goes through, so there won't be an eavesdropping.
3) You can forward name lookups and even references IPs local to the remote network.
4) It really simplifies doing a full TCP/IP stack over DNS.

Re: Proxy Scripts

Posted: Tue Mar 10, 2009 7:01 pm
by -DeToX-
Or you can get PHProxy which is free and totally wurks and is an pretty coo proxy.

Just upload and enjoy.

Though.. it doesn't work with youtube don't think..

Re: Proxy Scripts

Posted: Thu Mar 26, 2009 5:15 am
by Rogue_Modder
Thanks guys, you r da best ;)

Re: Proxy Scripts

Posted: Sun Apr 05, 2009 2:08 pm
by mtxboxfreak
Just wanted to say I've had success using CGIProxy in the past.

http://www.jmarshall.com/tools/cgiproxy/

Probably a little more complicated to set up and use than PHProxy but seems to get better results.

Works with https & facebook too, or at least it used to work with the old facebook, haven't tested since the new look.