> is SSH still a safe tool? Is there something better?
Not using the internet is better :P
11–14 of 14 posts
> is SSH still a safe tool? Is there something better?
Not using the internet is better :P
> is SSH still a safe tool? Is there something better?
> Is there something better? Not using the internet is better :P
It has just occurred to me that I went from an employer for whom 'the internet' was just a medium over which biz was transacted to one for whom without 'the internet' would not exist at all.
> is SSH still a safe tool? Is there something better?
Well ssh is a fairly complex daemon with quite a few features. For example with OpenSSH you can authenticate with a preshared key and challenge response or with PAM integration, or with a regular unix password. It also supports several types of encryption. All these things are useful but requires more code. Some people would argue that a very simple daemon with fewer features might be more secure because it has less…
If it's true for something like a web server, it ought to be true for SSH. Thanks for the link to spiped.
Almost certainly, provided you're running a recent-enough version. A snooper at the line level would be able to see that you were SSH'ing to a given system and the amount of data transferred, but nothing more. SSH has had very few vulnerabilities and has been really put through the ringer crypto-wise for quite some time. The protocol itself is likely quite solid. Of its common crypto algorithms, the only one I'd avoi…
> SSH'ing to a given system and the amount of data transferred, but nothing more. A passive eavesdropper sees very precise timing of every keystroke, as well as the timing and size of the response. This is enough to reconstruct text being typed with surprisingly good accuracy.
also, what cipher suite does ssh use. does it have forward secrecy?
[edit1: to answer that last question; yes it does.]
[edit2: paper on keystroke timing attack - http://users.ece.cmu.edu/~dawnsong/papers/ssh-timing.pdf - each keystroke is a packet; passwords have no echo. this is from 2001 - it has suggestions like sending packets when idle, but i don't think they've been implemented.]