十一周作业

1、编写脚本/root/bin/checkip.sh,每5分钟检查一次,如果发现通过ssh登录失败 次数超过10次,自动将此远程IP放入Tcp Wrapper的黑名单中予以禁止防问

#!/bin/bash
# 文件  log  /var/log/secure
# 获取 ip 和次数
grep "Failed" /var/log/secure | awk '{print $(NF-3)}' |sort |
uniq -c | awk '{print $2" "$1} >temp.txt
for i in `cat temp.txt`
do
     ip=`echo "$i"|awk -F "==>" '{print $1}'`
     count=`echo "$i"|awk -F "==>" '{print $2}'`
     if [ $count -gt 10 ];then
         xx=`grep $ip /etc/hosts.deny |wc -l`
         if [ $xx == 0 ];then
             echo "ALL:$ip" >> /etc/hosts.deny
         fi
     fi
done

2、配置magedu用户的sudo权限,允许magedu用户拥有root权限

sed -i '/^root.*ALL$/a\magedu    ALL=(ALL)     ALL' /etc/sudoers

你可能感兴趣的:(十一周作业)