Proxy Scripts

Post gamesaves, gametypes, and anything else that doesn't fit anywhere else.
Post Reply
User avatar
Rogue_Modder





Posts: 284
Joined: Sat Mar 29, 2008 5:46 am
Location: London
Contact:

Proxy Scripts

Post 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
User avatar
FleetAdmiralBacon




Critic Pyre Articulatist 500

Posts: 2377
Joined: Sat Nov 26, 2005 7:01 pm
Location: Ohio
Contact:

Re: Proxy Scripts

Post 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.
Image
Everything you'll ever need to know about me.
Need help with Linux, C#, C, Python, Java, PHP, Javascript, CSS, or VB? I'm available from 3:00PM-8:00PM EST on weekdays.
User avatar
Rogue_Modder





Posts: 284
Joined: Sat Mar 29, 2008 5:46 am
Location: London
Contact:

Re: Proxy Scripts

Post by Rogue_Modder »

thank you, can you help me with SSL?

but still omg thanks so much :)

EDIT:

i did it, thanks
User avatar
FleetAdmiralBacon




Critic Pyre Articulatist 500

Posts: 2377
Joined: Sat Nov 26, 2005 7:01 pm
Location: Ohio
Contact:

Re: Proxy Scripts

Post 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.
Last edited by FleetAdmiralBacon on Wed Mar 11, 2009 1:36 pm, edited 1 time in total.
Image
Everything you'll ever need to know about me.
Need help with Linux, C#, C, Python, Java, PHP, Javascript, CSS, or VB? I'm available from 3:00PM-8:00PM EST on weekdays.
-DeToX-




Illusionist Recreator Connoisseur Acolyte
Sigma Decryptor Droplet Pyre
Blacksmith Socialist New Age System Engineer
ONI

Posts: 4589
Joined: Sun Jun 18, 2006 3:58 pm
Location: ...

Re: Proxy Scripts

Post 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..
Image
User avatar
Rogue_Modder





Posts: 284
Joined: Sat Mar 29, 2008 5:46 am
Location: London
Contact:

Re: Proxy Scripts

Post by Rogue_Modder »

Thanks guys, you r da best ;)
Image
{Rules}{Search}{Signature}
"Modding for xbox 1 is over, And modding for the 360 never began, So modding in general doesn't even exist"
mtxboxfreak




Socialist

Posts: 239
Joined: Sun Oct 05, 2003 12:23 am
Location: UK

Re: Proxy Scripts

Post 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.
Post Reply