码迷,mamicode.com
首页 > 其他好文 > 详细

如何让历史记录不记录敏感命令

时间:2016-12-13 00:18:59      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:服务器安全   service   export   记录   start   

 有时候为了服务器安全,防止别人窥探我们输入的命令,我们可以清空历史记录,而更多的时候,我们选择的是在输入特殊命令时候,强制历史记录不记住该命令。实验方法:先执行export HISTCONTROL=ignorespace 命令,然后依次输出ls -tra  ,pwd和service mysqld start 的命令,当执行第三个命令的时候,我们选择不记住该命令。



[root@VM_96_242_centos ~]# export HISTCONTROL=ignorespace 
[root@VM_96_242_centos ~]# ls -ltr
total 168
-rw-r--r-- 1 root root  5520 Dec 25  2014 install.log.syslog
-rw-r--r-- 1 root root 12754 Dec 25  2014 install.log
-rw------- 1 root root  2005 Dec 25  2014 anaconda-ks.cfg
-rw-r--r-- 1 root root    12 Dec  9 21:11 a.txt

[root@VM_96_242_centos ~]# pwd

[root@VM_96_242_centos ~]#   service mysqld start   (注意这条命令的最前面是一个空格)
然后我们来查看历史记录
[root@VM_96_242_centos ~]# history |tail -3
  844  2016-12-12 17:01:55 ls -ltr
  845  2016-12-12 17:01:59 pwd
  846  2016-12-12 17:02:36 history |tail -3

是不是发现我们刚刚执行的,service mysqld start 没有了
注意:如果不想让历史记录记住哪条命令,直接在执行命令的时候,添加空格就可以。

当然哪天你想清空所有历史命令可以执行:
[root@VM_96_242_centos ~]# history -c    //清空所有记录
[root@VM_96_242_centos ~]# history         //查看是否被清空
    1  2016-12-12 17:12:12 history 
[root@VM_96_242_centos ~]# 


本文出自 “辛舒展” 博客,请务必保留此出处http://xinsz08.blog.51cto.com/10565212/1882015

如何让历史记录不记录敏感命令

标签:服务器安全   service   export   记录   start   

原文地址:http://xinsz08.blog.51cto.com/10565212/1882015

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!