Christian Seifert
Colapse all |
Post comment
Analyzing malicious SSH login attempts
2006-09-12
Peter N. M. Hansteen (2 replies)
Peter N. M. Hansteen (2 replies)
A nice article overall, but at least some firewalls offer some flexibility with respect to dynamically blocking traffic from hosts which behave in some undesirable fashion. OpenBSD's PF has 'overload' rules for this and similar purposes.
I have included an example of this with some discussion ...
[ more ] [ reply ]
I have included an example of this with some discussion ...
[ more ] [ reply ]
Analyzing malicious SSH login attempts
2006-09-26
Russ (1 replies)
Russ (1 replies)
A useful tool for detecting and blocking SSH login attacks, which also shares data in a centralised DB so you can pre-emptively block IPs that have attacked other systems: http://denyhosts.sourceforge.net/
Also, a source of stats that may be helpful in analysing probabilities of success: the Linu...
[ more ] [ reply ]
Also, a source of stats that may be helpful in analysing probabilities of success: the Linu...
[ more ] [ reply ]
Re: Analyzing malicious SSH login attempts
2006-10-26
Anonymous
Anonymous
Several tools exist to block ssh attempts via updating yours hosts or iptables/ipfw rules. These are all postpurtom. Linux netfilter has the recent module which allows realtime blackholing. Also using passphrases, deny Root ssh or atleast without-password and allowing wheel group su or limited sudo...
[ more ] [ reply ]
[ more ] [ reply ]
Analyzing Malicious SSH Login Attempts
2006-11-06
Anonymous (1 replies)
Anonymous (1 replies)
This has been an annoyance for me for quite a while.
My home firewall host has the following rules added to the iptables ruleset to discourage such attacks:
-A INPUT -i eth1 -p tcp -m tcp --dport 22 -m state --state NEW -m recent --rcheck --seconds 180 --name sshrecent --rsource -j DROP
-A ...
[ more ] [ reply ]
My home firewall host has the following rules added to the iptables ruleset to discourage such attacks:
-A INPUT -i eth1 -p tcp -m tcp --dport 22 -m state --state NEW -m recent --rcheck --seconds 180 --name sshrecent --rsource -j DROP
-A ...
[ more ] [ reply ]
Re: Analyzing Malicious SSH Login Attempts
2007-01-16
Anonymous (1 replies)
Anonymous (1 replies)
Analyzing Malicious SSH Login Attempts
2008-03-31
Anonymous (1 replies)
Anonymous (1 replies)
Analyzing Malicious SSH Login Attempts
2008-05-30
Anonymous
Anonymous
Great article. I enjoyed reading it. I'll have to try a honeypot, just for yucks :)
For prevention, I'd add a few things, which should ALWAYS be done on your firewall:
1. ALWAYS the first thing is to disable root login via ssh.
2. You should at least add port knocking. It is incredibly...
[ more ] [ reply ]
For prevention, I'd add a few things, which should ALWAYS be done on your firewall:
1. ALWAYS the first thing is to disable root login via ssh.
2. You should at least add port knocking. It is incredibly...
[ more ] [ reply ]

[ more ] [ reply ]