Linux安全脚本

#!/bin/bash

#set env

export PATH=$PATH:/bin:/sbin:/usr/sbin

if [ "$UID" != "0" ]

then

echo "please run this script by root."

exit 1

fi


#define cmd var

SERVICE=`which service`

CHKCONFIG=`which chkconfig`


yum install -y wget;

#修改yum源

function mod_yum(){

if [ -e /etc/yum.repos.d/CentOS-Base.repo ]

 then

  mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup&&\

  wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

fi

}


#关闭selinux

function close_selinux(){

sed -i 's/SELINUX=enforcing/SELINUX=disabled' /etc/selinux/config

setenforce 0 &>/dev/null

}


#关闭防火墙

function close_iptables(){

/etc/init.d/iptables stop

/etc/init.d/iptables stop

chkconfig iptables off

service firewalld stop

chkconfig firewalld off

}


#关闭不必要的开机启动服务

function lease_service(){

chkconfig | awk '{print "chkconfig",$1,"off"}'|bash

chkconfig | egrep "crond|sshd|network|rsyslog|sysstat"|awk '{print "chkconfig",$1,"on"}'|bash

}


#添加用户

function adduser(){

    #4.add hat and sudo

    if [ `grep -w hat /etc/passwd|wc -l` -lt 1 ]

      then

        useradd hat -g root

        echo geeboo|passwd --stdin hat

        \cp /etc/sudoers /etc/sudoers.ori

        echo "hat ALL=(ALL) NOPASSWD: ALL " >>/etc/sudoers

        tail -1 /etc/sudoers

        visudo -c &>/dev/null

    fi

}


#设置默认字符集为中文

function charset(){

    #5.charset config

    cp /etc/sysconfig/i18n /etc/sysconfig/i18n.ori

    echo 'LANG="zh_CN.UTF-8"'  >/etc/sysconfig/i18n

    source /etc/sysconfig/i18n

    #echo $LANG

}


#时间同步

function time_sync(){

    #6.time sync.

    cron=/var/spool/cron/root

    if [ `grep -w "ntpdate" $cron|wc -l` -lt 1  ]

      then

        echo "#time sync" >>$cron

        echo "*/5 * * * * /usr/sbin/ntpdate time.nist.gov >/dev/null 2>&1" >>$cron

        crontab -l

    fi

}


function com_line_set(){

    #7.command set.

    if [ `egrep "TMOUT|HISTSIZE|HISTFILESIZE" /etc/profile|wc -l` -ge 3  ]

      then

        echo "export TMOUT=600" >>/etc/profile

        echo "export HISTSIZE=5" >>/etc/profile

        echo "export HISTFILESIZE=5" >>/etc/profile

        . /etc/profile

    fi

    sed -i '/PASS_MAX_DAYS.*/d' /etc/login.defs

    sed -i '/PASS_MIN_LEN.*/d' /etc/login.defs

    sed -i '/PASS_MIN_DAYS.*/d' /etc/login.defs

    sed -i '/PASS_WARN_AGE.*/d' /etc/login.defs

    sed -i '/UMASK.*/d'  /etc/login.defs

    echo "PASS_MAX_DAYS   90" >>/etc/login.defs

    echo "PASS_MIN_LEN    12" >>/etc/login.defs

    echo "PASS_MIN_DAYS   7" >>/etc/login.defs

    echo "PASS_WARN_AGE 30" >>/etc/login.defs

    echo "UMASK 077" >>/etc/login.defs

    sed -i '/minlen.*/d' /etc/security/pwquality.conf

    sed -i '/minclass.*/d' /etc/security/pwquality.conf

    sed -i '/maxrepeat.*/d' /etc/security/pwquality.conf

    sed -i '/maxclassrepeat.*/d' /etc/security/pwquality.conf

    sed -i '/lcredit.*/d' /etc/security/pwquality.conf

    sed -i '/ucredit.*/d' /etc/security/pwquality.conf

    sed -i '/dcredit.*/d' /etc/security/pwquality.conf

    sed -i '/ocredit.*/d' /etc/security/pwquality.conf

    sed -i '/difok.*/d' /etc/security/pwquality.conf

    echo "minlen = 8">>/etc/security/pwquality.conf

    echo "minclass = 1">>/etc/security/pwquality.conf

    echo "maxrepeat = 0">>/etc/security/pwquality.conf

    echo "maxclassrepeat = 4">>/etc/security/pwquality.conf

    echo "lcredit = -1">>/etc/security/pwquality.conf

    echo "ucredit = -1">>/etc/security/pwquality.conf

    echo "dcredit = -1">>/etc/security/pwquality.conf

    echo "ocredit = -1">>/etc/security/pwquality.conf

    echo "difok = 5">>/etc/security/pwquality.conf

}


#设置打开文件数

function open_file_set(){

    #8.increase open file.

    if [ `grep 65535 /etc/security/limits.conf|wc -l` -lt 1 ]

      then

        echo "*               -       nofile          65535 " >>/etc/security/limits.conf

        tail -1 /etc/security/limits.conf

    fi

}


function set_kernel(){

    #9.kernel set.

    if [ `grep kernel_flag /etc/sysctl.conf|wc -l` -lt 1 ]

      then

        cat >>/etc/sysctl.conf<

        #kernel_flag

        net.ipv4.tcp_fin_timeout = 2

        net.ipv4.tcp_tw_reuse = 1

        net.ipv4.tcp_tw_recycle = 1

        net.ipv4.tcp_syncookies = 1

        net.ipv4.tcp_keepalive_time = 600

        net.ipv4.ip_local_port_range = 4000    65000

        net.ipv4.tcp_max_syn_backlog = 16384

        net.ipv4.tcp_max_tw_buckets = 36000

        net.ipv4.route.gc_timeout = 100

        net.ipv4.tcp_syn_retries = 1

        net.ipv4.tcp_synack_retries = 1

        net.core.somaxconn = 16384

        net.core.netdev_max_backlog = 16384

        net.ipv4.tcp_max_orphans = 16384

        net.nf_conntrack_max = 25000000

        net.netfilter.nf_conntrack_max = 25000000

        net.netfilter.nf_conntrack_tcp_timeout_established = 180

        net.netfilter.nf_conntrack_tcp_timeout_time_wait = 120

        net.netfilter.nf_conntrack_tcp_timeout_close_wait = 60

        net.netfilter.nf_conntrack_tcp_timeout_fin_wait = 120

EOF

        sysctl -p

    fi

}


#优化SSH

function init_ssh(){

    cp /etc/ssh/sshd_config /etc/ssh/sshd_config.`date +"%Y-%m-%d_%H-%M-%S"`;

    sed -i "s%#Port 22%Port 52113%" /etc/ssh/sshd_config;

    #sed -i "s%#PermitRootLogin yes%PermitRootLogin no%" /etc/ssh/sshd_config;

    sed -i "s%#PermitEmptyPasswords no%PermitEmptyPasswords no%" /etc/ssh/sshd_config;

    sed -i "s%#UseDNS yes%UseDNS no%" /etc/ssh/sshd_config;

    sed -i "s%GSSAPIAuthentication yes%GSSAPIAuthentication no%" /etc/ssh/sshd_config;

    sed -i "s%GSSAPIAuthentication yes%GSSAPIAuthentication no%" /etc/ssh/sshd_config;

   #sed -i "$a\AllowUsers  hat" /etc/ssh/sshd_config;

   service sshd restart &>/dev/null;

   echo "sshd:192.168.10.0/24" >> /etc/hosts.allow;

   echo "sshd:ALL" >> /etc/hosts.deny;

   iptables -I INPUT -p tcp --dport 52113 -j DROP;

   iptables -I INPUT -p tcp --dport 52113 -s 192.168.10.0/24 -j ACCEPT;

   iptables save;

}


function update_linux(){

    #10.upgrade linux.

    if [ `rpm -qa lrzsz nmap tree dos2unix nc|wc -l` -le 3 ]

      then

        yum install wget lrzsz nmap tree dos2unix nc -y

        #yum update -y

    fi

}

function cha {

chattr +i /etc/passwd /etc/shadow /etc/group /etc/gshadow /etc/inittab

}

function pamtally {

cp /etc/pam.d/sshd /etc/pam.d/sshd.bak

cp /etc/pam.d/login /etc/pam.d/login.bak

##查看所有登陆用户的失败次数pam_tally2

##解锁指定用户pam_tally2 -r -u root

sed -i '/pam_tally2.so.*/d' /etc/pam.d/system-auth

sed -i -e '4a\auth        required        pam_tally2.so  onerr=fail  deny=5  unlock_time=600 even_deny_root root_unlock_time=300' /etc/pam.d/system-auth

sed -i '/pam_tally2.so.*/d' /etc/pam.d/sshd

sed -i -e '2a\auth        required        pam_tally2.so  onerr=fail  deny=5  unlock_time=600 even_deny_root root_unlock_time=300' /etc/pam.d/sshd

}

main(){

cat << EOF

----------------------------------------

|****Please Enter Your Choice:[1-15]****|

----------------------------------------

(1) mod yum 

(2) close selinux

(3) close iptables

(4) least service

(5) add user

(6) charset

(7) time sync

(8) password security

(9) set open file

(10) set kernel

(11) init ssh

(12) update linux

(13) pamtally

(14) chattr

(15) all(except init ssh) 

EOF

read -p "Please enter your choice[1-15]: " input1

case $input1 in

1)

    mod_yum

;;

2)

    close_selinux

;;

3)

    close_iptables

;;

4)

    least_service

;;

5)

    adduser

;;

6)

    charset

;;

7)

    time_sync

;;

8)

    com_line_set

;;

9)

    open_file_set

;;

10)

    set_kernel

;;

11)

    init_ssh

;;

12)

    update_linux

;;

13)

    pamtally

;;

14)

    cha

;;

15)

    mod_yum

     close_selinux

    close_iptables

    least_service

    adduser

    charset

    time_sync

    com_line_set

    open_file_set

    set_kernel

    init_ssh

    update_linux

    pamtally

    cha

;;

*)

   echo "****Please Enter Your Choice:[1-15]****|"

;;

esac

#隐藏系统版本号

#> /etc/issue

#> /etc/issue.net

#锁定关系系统文件

#chattr +i /etc/passwd /etc/shadow /etc/group /etc/gshadow /etc/inittab

#解锁 chattr -i /etc/passwd /etc/shadow /etc/group /etc/gshadow /etc/inittab

#修改chattr的名字 mv /usr/bin/chattr /usr/bin/hat1

#为grub加密

#/sbin/grub-md5-crypt,生成密码,然后将密码加入/etc/grub.conf,password --md5 #密码

#禁止被ping net.ipv4.icmp_echo_ignore_all=1


}

main

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,056评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,842评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,938评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,296评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,292评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,413评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,824评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,493评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,686评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,502评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,553评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,281评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,820评论 3 305
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,873评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,109评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,699评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,257评论 2 341

推荐阅读更多精彩内容