Shell---Login failed IP add to/etc/hosts.deny

Source: Internet
Author: User

/etc/hosts.deny: Commonly known as blacklist, control remote access settings.

#!/bin/bash           //program starts #file: hosts_deny.sh# date: 2016-01-10grep  ' Failed password '  /var/log/secure | awk  ' {print $ One} '  | uniq -c | sort | //remove the log-in failed IP and sort the statistics while read a b      //reading Statistical results do    grep -q  $b  /etc/hosts.deny      //test if IP exists, exists as 0      if [ $? !=  0 ] ; then        if [  $a  -ge The number of  5 ] ; then   //statistics is greater than or equal to 5             echo  "sshd:  $b"  >> /etc/hosts.deny    // Add IP to blacklist             fi       fidone               //Program End 






This article from "Experience from pain" blog, declined reprint!

Shell---Login failed IP add to/etc/hosts.deny

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.