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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何让历史记录不记录敏感命令相关的知识,希望对你有一定的参考价值。

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



[[email protected]_96_242_centos ~]# export HISTCONTROL=ignorespace 
[[email protected]_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

[[email protected]_96_242_centos ~]# pwd

[[email protected]_96_242_centos ~]#   service mysqld start   (注意这条命令的最前面是一个空格)
然后我们来查看历史记录
[[email protected]_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 没有了
注意:如果不想让历史记录记住哪条命令,直接在执行命令的时候,添加空格就可以。

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


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

以上是关于如何让历史记录不记录敏感命令的主要内容,如果未能解决你的问题,请参考以下文章

如何不让history记录敏感命令

history历史记录控制

如何让linux的history命令显示时间记录

从浏览历史记录中删除敏感的URL数据

如何防止命令出现在 Bash 历史记录中?

MATLAB 命令历史记录:如何保存现有历史记录的备份