vote up 2 vote down star
3

I work as a contractor/freelancer. At most client sites a lot of websites are blocked. Specifically Gmail and Facebook which I really would like access to while on assignment.

I know there are a lot of proxy/anonymiser websites out there that allow you to use their website to circumvent the website filtering of the business IT policy but most of these sites contain malware, objectionable images and are blocked anyway where I am currently on assignment.

I own a number of domains and would like to write my own proxy/anonymiser and host it on one of these domains to let me access Gmail and Facebook while on client site. The url will be low profile, low traffic so should not get blocked, I can already access the urls now.

How would I go about writing the code for this? also if there are any opensource projects or apps I can run on my webserver that will give me this functionallity I would happily do this/buy this product.

I currently have shared hosting but would consider dedicated/virtual if necessary.

What are the things I need to consider to make this work? I don't mind spending money, time to get this working as I have made a decision to remain contracting for the foreseeable future and this will benefit me greatly.

Thanks.

I know it's probably hard to write this, but can anyone post links to some code that does this as a starting point? I have tried searching but can't find anything, I'm really not sure what search terms to use.

flag

There are lots of free source code out there. Go grab one to install/study. – Mehrdad Afshari Jun 23 at 15:48
Mehrdad, can you provide the name or link to some of this software or what search string will yield results? – m3ntat Jun 23 at 16:03
1  
If you have SSH access to your shared hosting, you can use PuTTY to set up a dynamic tunnel and something like FoxyProxy (for Firefox) to use it as a proxy depending on the site you're browsing. This is how I'm on SO right now. – Johnny G Jun 23 at 16:08
Hi Johnny G, do you have a link to any articles on how to achieve this? not sure if I have this access will have to check with my hosting provider, I have shared hosting, it's a windows 2008 box, .net 3.5 not sure if it would have SSH. – m3ntat Jun 23 at 16:15
jonlee.ca/how-to-secure-your-traffic-using-an-ssh… You're probably out of luck, though, because I highly doubt your Windows host will have SSH access. Too bad. – Johnny G Jun 23 at 16:46
show 1 more comment

7 Answers

vote up 6 vote down

Get yourself a reasonable data package from your mobile phone provider, job done. Since you are a freelancer this will be a more cost effective solution than spending your valueable time building such a thing.

link|flag
As a contractor, it's a business expense too! :) – rie819 Jun 23 at 15:56
This certainly is one option I am thinking of buying an iphone or blackberry. I'd prefer not though as the experience on a computer is much better full blown gmail, also I don't want to be seen to be always on my phone at my desk. If this is a website I can manage this much more effectively by resizing a window, keeping it small when in use, minimised when not in use. – m3ntat Jun 23 at 15:56
1  
@m3ntat: "data package" ... that allows you to use your phone as a modem for your lappy. – xk0der Jun 23 at 16:06
@xk0der another useful option except I don't own a laptop and would prefer to avoid buying one and brining it in each day. But I take your point maybe a small netbook with a mobile usb dongle for internet access would work. All quite costly and fairly obvious in the workplace though. – m3ntat Jun 23 at 16:11
This is a horrible, horrible answer. It's a legitimate question and a your answer is a cop out. For shame. – Merritt Sep 3 at 14:24
show 1 more comment
vote up 4 vote down

Writing your own proxy is quite difficult (I've tried years ago!). Unless you're actually trying to learn all the complexities, if you just want your own proxy solution you'd probably do fine just installing Squid on your own server with Webmin or something to give an easy configuration interface.

link|flag
Hi Chet, can you tell me more about Squid and Webmin and how they can help me. Any links to articles about how to set up to use to provide this solution? Also would this work in shared hosting? – m3ntat Jun 23 at 16:13
Squid can be a proxy server. I installed it on Ubuntu server. Webmin is a web app that lets you administer all kinds of things on a remote server. I doubt a shared host would let you install your own software. – Chet Jun 23 at 16:57
Writing your own proxy is hard. Writing your own lame, mostly working but slightly quirky proxy is easy (e.g. just using an Asp.Net system that forwards the right data). This kind of thing is probably sufficient for m3ntat's needs, and can be password-protected to prevent abuse by other people. – Brian Sep 14 at 14:45
vote up 2 vote down

If you own a server on the internet you can install OpenVPN, a VPN that can work over SSL port 443. So all proxies/firewalls have to allow this if they allow any web access at all. Wikipedia link for OpenVPN

I've never tried it myself, just read a lot about it.

Writing to your own proxy is very very hard. You have to stay up to date with latest developments to keep it operational. Especially since a lot of web sites nowadays make heavy use of AJAX, and a lot of URLs are generated in script code, so simple replacement of all href attributes won't work.

But it is a good way to learn a lot about the HTTP protocol and all the latest web technologies ;)

link|flag
vote up 2 vote down

Hi..

this blog may help u to start.

http://techkiddos.wordpress.com/2009/07/04/how-we-developed-a-model-proxy-site-anonymizer-with-asp-net/

[How we developed a Model Proxy site (Anonymizer) with ASP.NET..]

link|flag
@boo This looks good and is what I'd like to implement but to work for Gmail mainly and secondary Facebook. Will take a look in more detail shortly. – m3ntat Jul 8 at 16:22
@boo thanks for the link. I read through it and it does provide a nice jumping off point. – Merritt Sep 3 at 14:39
vote up 1 vote down

Sounds like hard work to write your own. One place I worked, I used GoToMyPC to access my machine at home and browse to any blocked sites from that machine. GoToMyPC was an authorized tool because it allowed people to work from home and didn't haven't firewall implications.

link|flag
I did consider this also as I leave my home PC on all the time so could remote in and access. However, gotopc, logmein and live mesh are all blocked which provide this functionallity. – m3ntat Jun 23 at 15:58
Stop it and think of the environment and your downloads! – Robert Sep 3 at 12:57
@Robert are you making a joke? I am confused by your comment. – Merritt Sep 3 at 14:49
vote up 0 vote down

Most proxies get blocked soon. So expect it to be closed soon. When people start using it more then most "blockers" will automatically detect it and start blocking it.

You will get lot of proxy website clones if you search. Check this one too.

link|flag
As I said this won't be advertised as a proxy I will use it only for me, the url works now is a personal site, will be low traffic so should not attact being blocked. Unless you are saying website filtering software in businesses detect and scope for certain behaviour on sites then add these urls to blacklists and my site would come under that scrutiny, is what you are saying? – m3ntat Jun 23 at 16:01
vote up 0 vote down

strange mental jump, that, if you do not wish to use somebody else's proxy, you go write your own. Why not just use squid? If you want to do it as an exercise, there are extremely simple java proxy servers around. Just take the source code and slim it down. Not very efficient though. I am not sure if I would want you as a contractor lol

link|flag
Most other people's proxies hosted on their domains are blocked. I am looking for suggests above for a component I can host on my own website but couldn't find anything, else I'm looking for suggestion on how to write my own. What is Squid, is it easy to setup and host myself to achieve what I am looking for? – m3ntat Sep 7 at 14:16
Also is it possible to setup on a Windows shared hosting account? mine supports asp.net/php I think both under IIS – m3ntat Sep 7 at 14:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.