We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
检测服务器被多少ip进行了ssh爆破
lastb |awk '{print $3}'|sort |uniq -c|awk '{if ($1 > 4) print $2}'|wc -l
查看ssh爆破你服务器的ip列表
lastb |awk '{print $3}'|sort |uniq -c|awk '{if ($1 > 4) print $2}'
查看每个ip爆破你服务器ssh的次数
lastb |awk '{print $3}'|sort |uniq -c
查看服务器ssh登录失败总次数
lastb |wc -l
The text was updated successfully, but these errors were encountered:
No branches or pull requests
检测服务器被多少ip进行了ssh爆破
lastb |awk '{print $3}'|sort |uniq -c|awk '{if ($1 > 4) print $2}'|wc -l
查看ssh爆破你服务器的ip列表
lastb |awk '{print $3}'|sort |uniq -c|awk '{if ($1 > 4) print $2}'
查看每个ip爆破你服务器ssh的次数
lastb |awk '{print $3}'|sort |uniq -c
查看服务器ssh登录失败总次数
lastb |wc -l
The text was updated successfully, but these errors were encountered: