Internet Cafes-How Safe Are They
December 5, 2006 10:30 AM
Subscribe
Secure internet access at an internet cafe?
I leave for 10 days in Mexico tomorrow and will be using internet cafes daily. I will need to check my bank and credit card accounts every few days. How can I make sure my connection is secure? I have a USB stick and will be using Portable Firefox whenever possible.
posted by rglass to travel & transportation (14 comments total)
8 users marked this as a favorite
Use the -D [port] argument to ssh when you connect to your remote shell. From the man page:
"Specifies a local "dynamic" application-level port forwarding. This works by allocating a socket to listen to port on the local side, and whenever a connection is made to this port, the connection is forwarded over the secure channel, and the application protocol is then used to determine where to connect to from the remote machine. Currently the SOCKS4 and SOCKS5 protocols are supported, and ssh will act as a SOCKS server. Only root can forward privileged ports. Dynamic port forwardings can also be specified in the configuration file."
So what I do is ssh -D 5050 myserver.org. Log in normally. Then tell my browser, IM clients, whatever else I need to use securely, to use a SOCKS proxy running on localhost, port 5050. Each of their preferences tools has a setting for this. Voila - simple security for everything! Just don't forget to undo that preferences change later, or your clients won't work : )
posted by autojack at 10:39 AM on December 5, 2006 [2 favorites has favorites]