You are not logged in.
Hi,
As I'm living in dorm with loads of CS students, I'm rather worried about someone snooping up my sensitive data like passwords, chat conversations and what not.
What I'd like to know is what are the most common preventative measures for this kind of stuff. I know that if I log in to sites that use https, I should be safe. Also l could chat through remote server, using ssh.
What more is there to it?
Offline
I guess tunneling everything through ssh is the best option. also, it is _very_ easy to sniff passwords even if you're using https.
Offline
Is your wlan connection secure?
Offline
I guess tunneling everything through ssh is the best option. also, it is _very_ easy to sniff passwords even if you're using https.
That's seemed to be the only solution I could come up with. But it has downsides, for example I have to have rather fast connection available to relay everything through remote server.
To bad that lan networks are only as secure as people on it make it be.
Is your wlan connection secure?
I'm connected by wire through eth.
Offline
For instant messaging, you can use Off The Record (OTR). It's included with Pidgin and Adium at least, and works with all protocols (MSN, ICQ...)
Offline
Set up openvpn to channel all traffic to an external server, I just did that, and its awesome. No need to hassle with SSH forwarding ![]()
Those who give up their liberty for security,
neither deserve liberty nor freedom,
and they will lose both.
- Benjamin Franklin
Offline
Offline
bangkok_manouel wrote:also, it is _very_ easy to sniff passwords even if you're using https.
Care to explain or point to some external article?
just a quick example http://www.youtube.com/watch?v=Dd5qGS-5C0I
this one is a bit more detailed http://www.youtube.com/watch?v=p0H9qzL8 … re=related
Last edited by bangkok_manouel (2010-10-30 16:59:28)
Offline
The sslstrip attack only works on pages that link/redirect/post to https sites. Basically, it re-writes the html to change "https" to "http". Then it detects uses of changed URLs, steals your password, and proxies the request to the actual server (over SSL). Also it requires that the attacker be able to MODIFY your http stream, so they'd have to have control of a server between you and the login page, something your dorm-mates are unlikely to achieve.
Offline
The sslstrip attack only works on pages that link/redirect/post to https sites. Basically, it re-writes the html to change "https" to "http". Then it detects uses of changed URLs, steals your password, and proxies the request to the actual server (over SSL). Also it requires that the attacker be able to MODIFY your http stream, so they'd have to have control of a server between you and the login page, something your dorm-mates are unlikely to achieve.
Couldn't they just use arp poisoning and get themselves between you and the server?
Offline
Couldn't they just use arp poisoning and get themselves between you and the server?
This is precisely how this attack is usually executed.
Set up openvpn to channel all traffic to an external server, I just did that, and its awesome. No need to hassle with SSH forwarding
That would be the first time I see anyone claim that setting up openvpn is simpler than ssh forwarding
.
Offline