CentOS Stream 9
Sponsored Link

RKHunter : インストール2022/06/28

 

Rootkit 検出ツール RKHunter のインストールと設定です。

[1] RKHunter をインストールします。
# EPEL からインストール

[root@dlp ~]#
dnf --enablerepo=epel -y install rkhunter
[2] RKHunter の設定と利用方法です。
RKHunter による定期チェックについては、デフォルトで [/etc/cron.daily] 配下にチェックスクリプトが配置されるため、日次で実行されます。
[root@dlp ~]#
vi /etc/sysconfig/rkhunter
# レポートを送信する宛先

MAILTO=root@localhost
# yes で詳細スキャンモード

DIAG_SCAN=no
# データベースをアップデート

[root@dlp ~]#
rkhunter --update

[ Rootkit Hunter version 1.4.6 ]

Checking rkhunter data files...
  Checking file mirrors.dat                                  [ Updated ]
  Checking file programs_bad.dat                             [ Updated ]
  Checking file backdoorports.dat                            [ Updated ]
  Checking file suspscan.dat                                 [ Updated ]
  Checking file i18n/cn                                      [ No update ]
  Checking file i18n/de                                      [ Updated ]
  Checking file i18n/en                                      [ No update ]
  Checking file i18n/tr                                      [ Updated ]
  Checking file i18n/tr.utf8                                 [ Updated ]
  Checking file i18n/zh                                      [ Updated ]
  Checking file i18n/zh.utf8                                 [ Updated ]
  Checking file i18n/ja                                      [ Updated ]

# システムのファイル情報をアップデート

[root@dlp ~]#
rkhunter --propupd

[ Rootkit Hunter version 1.4.6 ]
File created: searched for 176 files, found 133

# チェック実行
# --sk で Enterキー押下をスキップ
# --rwo を指定すると、警告のみ表示

[root@dlp ~]#
rkhunter --check --sk
[ Rootkit Hunter version 1.4.6 ]

Checking system commands...

  Performing 'strings' command checks
    Checking 'strings' command                               [ OK ]

  Performing 'shared libraries' checks
    Checking for preloading variables                        [ None found ]
    Checking for preloaded libraries                         [ None found ]
    Checking LD_LIBRARY_PATH variable                        [ Not found ]

  Performing file properties checks
    Checking for prerequisites                               [ OK ]
    /usr/sbin/adduser                                        [ OK ]
    /usr/sbin/chroot                                         [ OK ]
    /usr/sbin/depmod                                         [ OK ]
    /usr/sbin/fsck                                           [ OK ]
    /usr/sbin/fuser                                          [ OK ]
    /usr/sbin/groupadd                                       [ OK ]
    /usr/sbin/groupdel                                       [ OK ]
    /usr/sbin/groupmod                                       [ OK ]
    /usr/sbin/grpck                                          [ OK ]

.....
.....

System checks summary
=====================

File properties checks...
    Files checked: 133
    Suspect files: 0

Rootkit checks...
    Rootkits checked : 494
    Possible rootkits: 0

Applications checks...
    All checks skipped

The system checks took: 1 minute and 14 seconds

All results have been written to the log file: /var/log/rkhunter/rkhunter.log

One or more warnings have been found while checking the system.
Please check the log file (/var/log/rkhunter/rkhunter.log)
関連コンテンツ