SSH Tunneling and HTTP Port Forwarding

September 25, 2007 at 9:18 am

I subscribed to the cotse.net proxy and it’s working well so far. It’s very fast for a proxy… I’m definitely impressed.

To use it (after signing up for an account) you just download an ssh client, such as PuTTY, and configure it to not only connect to cotse’s ssh server, but also to hold open an ssh tunnel from a local port on your computer to the port on theirs. You can then tell firefox or IE to use your local port as a proxy server (this is all really easy to do), so all your traffic goes through this hardcore encrypted tunnel.

If you want to hide your internet traffic, this is the way to do it.

From wikipedia:

SSH is frequently used to tunnel insecure traffic over the Internet in a secure way. For example, Windows machines can share files using the SMB protocol, which is not encrypted. If you were to mount a Windows filesystem remotely through the Internet, someone snooping on the connection could see your files.

So to mount an SMB file system securely, one can establish an SSH tunnel that routes all SMB traffic to the fileserver inside an SSH-encrypted connection. Even though the SMB traffic itself is insecure, because it travels within an encrypted connection it becomes secure.

A few articles on tunneling and port forwarding:
http://www.oreillynet.com/pub/a/wireless/2001/02/23/wep.html
http://www.securityfocus.com/infocus/1816

Craigslist Search Utility

September 10, 2007 at 11:39 am

Click here to display my awesome craigslist RSS searching utility below!

Streaming soccer, football, rugby and whatever else you want for free

September 9, 2007 at 7:33 pm

I’ve never done this before; but theoretically, you could download and install sopcast and go to http://www.myp2p.eu/ to view live events that the cable and satellite companies usually charge you way too much money for.

Americans are so greedy that nothing is free. Other countries are cool. They let you view events like these and you don’t have to pay.

New Jobbing Big Surfing

December 19, 2006 at 9:30 pm


So the new job at http://www.windriver.com/ rules. I’m working on some pretty exciting technology and I definitely feel like I’m getting the most out of my college degree. The people are cool, the perks are great and I’m a happy man.

The surf has been insane lately. Here’s a picture I took at Torrey Pines last week. Everyone and their mother was getting barrels.

CVS Revert

September 18, 2006 at 8:43 am

To revert to an older file in CVS, do the following:

cvs update -r 1.2 test
mv test test.old.ver
cvs update -A test
mv test.old.ver test
cvs commit -m “reverting to version 1.2″ test

Thanks to http://elib.cs.berkeley.edu/admin/cvs/cvsrevert.html for this hint.