1. 程式人生 > >隱藏Linux版本資訊顯示

隱藏Linux版本資訊顯示

在登入Linux主機本地(非CRT連線)前,會顯示系統的版本和核心。為了安全我們應該隱藏它。
這裡寫圖片描述

登入資訊顯示資料 : /etc/issue (無論登入成功與否都會顯示)

清空的命令

>/etc/issue  或 cat /dev/null >etc/issue
[root@muban ~]# cat /etc/issue
CentOS release 6.5 (Final)
Kernel \r on an \m
[root@muban ~]# >/etc/issue #清空/etc/issue
[root@muban ~]# cat /etc/issue
[root@muban ~]# 

這裡寫圖片描述

可以編輯/etc/motd檔案,來隱藏真正的版本資訊。
/etc/motd即messageoftoday(布告欄資訊)。
每次使用者登入時,/etc/motd檔案的內容會顯示在使用者的終端。系統管理員可以在檔案中編輯系統活動訊息。

[root@muban ~]# vi /etc/motd

RHEL release 6.5 (Final)
welcome back.
~                                                                               
~                                                                               
~                                                                                                                                                            
~                                                                               
~                                                                                                                                                       
"/etc/motd"
2L, 39C written [root@muban ~]#

這裡寫圖片描述