2
1
I'm running an SSH server on my personal computer. The log had many people(or bots?) repeatedly trying to log in to my server (that is before I changed the default port), which made me a little freaked out. I was worried about their dictionary attacks or brute force password guessing.
But then if you type wrong password (or wrong username), the server waits for about 2 seconds before it asks for password again. So an attacker can try one password per 2 seconds. So I concluded that these attacks aren't that great a threat (as long as your password does not consist of dictionary words.) Am I correct?
Should move this to Serverfault.com – ConcernedOfTunbridgeWells – 2009-08-12T13:44:45.107
I'm not sure, but I believe the 2-second delay is just per-connection... so if you opened a thousand sockets on a single computer, you could still do 1000 attempts per 2-seconds instead of just 1. – None – 2011-06-28T17:30:18.383