记录主机安全登录脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记录主机安全登录脚本相关的知识,希望对你有一定的参考价值。

PS1="`whoami`@`hostname`:"‘[$PWD]‘
history
USER_IP=`who -u am i 2>/dev/null| awk ‘{print $NF}‘|sed -e ‘s/[()]//g‘`
if [ "$USER_IP" = "" ]
then
USER_IP=`hostname`
fi
if [ ! -d /tmp/history ]
then
mkdir /tmp/history
chmod 777 /tmp/history
fi
if [ ! -d /tmp/history/${LOGNAME} ]
then
mkdir /tmp/history/${LOGNAME}
chmod 300 /tmp/history/${LOGNAME}
fi
export HISTSIZE=4096
DT=`date +"%Y%m%d_%H%M%S"`
export HISTFILE="/tmp/history/${LOGNAME}/${USER_IP} history.$DT"
chmod 600 /tmp/history/${LOGNAME}/*history* 2>/dev/null

通过上面的代码可以看出来,在系统的/tmp新建个history目录(这个目录可以自定义),在目录中记录了所有的登陆过系统的用户和IP地址,这也是监测系统安全的方法之一。


本文出自 “我们的天空” 博客,请务必保留此出处http://dellsonicwall.blog.51cto.com/10002669/1774864

以上是关于记录主机安全登录脚本的主要内容,如果未能解决你的问题,请参考以下文章

检查一下主机安全情况

为啥我的SSL证书验证失败

linux主机安全审计追溯分析脚本

expect脚本远程登陆主机并记录日志

编写MAC记录与端口扫描脚本的shell脚本

Python脚本之django---mysql-记录主机性能数据到数据库