Chkrootkit: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
No edit summary
Onnowpurbo (talk | contribs)
 
(9 intermediate revisions by the same user not shown)
Line 2: Line 2:
==What's chkrootkit?==
==What's chkrootkit?==


chkrootkit is a tool to locally check for signs of a rootkit.  
Chkrootkit adalah tool untuk memeriksa tanda-tanda rootkit secara lokal.


==Instalasi==
==Instalasi==
Siapkan compiler
sudo su
apt install make gcc


Download source code
Download source code


  # make sense
  cd /usr/local/src
wget ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz
tar zxvf chkrootkit.tar.gz
cd /usr/local/src/chkrootkit-0.52/
make sense
 
Uninstall compiler
 
apt remove make gcc


==Menjalankan==
==Menjalankan==


  # ./chkrootkit
  cd /usr/local/src/chkrootkit-0.52
./chkrootkit
 
atau


cd /usr/local/src/chkrootkit-0.52
./chkrootkit -q


==Penggunaan==
==Penggunaan==
Line 19: Line 37:
  # ./chkrootkit
  # ./chkrootkit


  Usage: ./chkrootkit [options] [testname ...]
  Usage: ./chkrootkit [options] [test ...]
  Options:
  Options:
         -h                show this help and exit
         -h                show this help and exit
         -V                show version information and exit
         -V                show version information and exit
         -l                show available tests
         -l                show available tests and exit
         -d                debug
         -d                debug
         -q                quiet mode
         -q                quiet mode
Line 43: Line 61:
Contoh
Contoh


  # ./chkrootkit ps ls sniffer
  ./chkrootkit ps ls sniffer
 
The `-q' option can be used to put chkrootkit in quiet mode -- in
this mode only output messages with `infected' status are shown.
 
With the `-x' option the user can examine suspicious strings in the
binary programs that may indicate a trojan -- all the analysis is
left to the user.
 
Lots of data can be seen with:
 
  # ./chkrootkit -x | more


Pathnames inside system commands:
untuk melihat data lebih banyak


  # ./chkrootkit -x | egrep '^/'
./chkrootkit -x | more


chkrootkit uses the following commands to make its tests: awk, cut,
Melihat pathname dalam sistem command
egrep, find, head, id, ls, netstat, ps, strings, sed, uname.  It is
possible, with the `-p' option, to supply an alternate path to
chkrootkit so it won't use the system's (possibly) compromised
binaries to make its tests.


  To use, for example, binaries in /cdrom/bin:
  ./chkrootkit -x | egrep '^/'


  # ./chkrootkit -p /cdrom/bin
chkrootkit menggunakan command berikut untukl melakukan test: awk, cut, egrep, find, head, id, ls, netstat, ps, strings, sed, uname. Pakai option -p untuk memberikan alternate path untuk chkrootkit agar tidak menggunakan system command yang mungkin sudah terinfeksi. Contoh,


  It is possible to add more paths with a `:'
  ./chkrootkit -p /cdrom/bin


  # ./chkrootkit -p /cdrom/bin:/floppy/mybin
Untuk beberapa path.


  Sometimes is a good idea to mount the disk from a compromised machine
  ./chkrootkit -p /cdrom/bin:/floppy/mybin
on a machine you trust. Just mount the disk and specify a new
rootdir with the `-r' option.


For example, suppose the disk you want to check is mounted under
Ada baiknya mount disk mesin yang ter-compromise ke mesin yang bisa di percaya, misalnya disk ada di /mnt, gunakan.
/mnt, then:
 
  # ./chkrootkit -r /mnt


./chkrootkit -r /mnt


==Output Messages==
==Output Messages==


Keluaran
Output
 
* "INFECTED": the test has identified a command probably modified by a known rootkit;
* "not infected": the test didn't find any known rootkit signature.
*"not tested": the test was not performed -- this could happen in
  the following situations:
    a) the test is OS specific;
    b) the test depends on an external program that is not available;
    c) some specific command line options are given. (e.g. -r ).
 
* not found": the command to be tested is not available;
* "Vulnerable but disabled": the command is infected but not in use. not running or commented in inetd.conf)
 


==A trojaned command has been found. What should I do now?==
* '''INFECTED''': Tes tersebut telah mengidentifikasi sebuah perintah yang mungkin dimodifikasi oleh rootkit yang diketahui;
* '''not infected''': Tes tersebut tidak menemukan tanda tangan rootkit yang diketahui.
* '''not tested''': Tes tidak dilakukan - ini bisa terjadi dalam situasi berikut:
** Test adalah OS spesifik;
** Tes tergantung pada program eksternal yang tidak tersedia;
** Beberapa pilihan baris perintah tertentu diberikan. (Misalnya -r).
* '''not found''': Perintah yang akan diuji tidak tersedia;
* '''Vulnerable but disabled''': Perintahnya terinfeksi tapi tidak di gunakan. Tidak berjalan atau di-commented di inetd.conf


Your biggest problem is that your machine has been compromised and
==Sebuah trojan di temukan. Apa yang perlu saya lakukan?==
this bad guy has root privileges.


Maybe you can solve the problem by just replacing the trojaned
Masalah terbesar anda adalah mesin anda telah disusupi dan
command -- the best way is to reinstall the machine from a safe media
orang jahat ini memiliki hak istimewa root.
and to follow your vendor's security recommendations.


Mungkin anda bisa memecahkan masalah dengan hanya mengganti perintah yang kena trojan - cara terbaik adalah dengan menginstal ulang mesin dari media yang aman dan mengikuti rekomendasi keamanan vendor anda.


==Referensi==
==Referensi==

Latest revision as of 01:13, 14 June 2017

What's chkrootkit?

Chkrootkit adalah tool untuk memeriksa tanda-tanda rootkit secara lokal.

Instalasi

Siapkan compiler

sudo su
apt install make gcc

Download source code

cd /usr/local/src
wget ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz
tar zxvf chkrootkit.tar.gz
cd /usr/local/src/chkrootkit-0.52/
make sense

Uninstall compiler

apt remove make gcc

Menjalankan

cd /usr/local/src/chkrootkit-0.52
./chkrootkit

atau

cd /usr/local/src/chkrootkit-0.52
./chkrootkit -q

Penggunaan

# ./chkrootkit
Usage: ./chkrootkit [options] [test ...]
Options:
        -h                show this help and exit
        -V                show version information and exit
        -l                show available tests and exit
        -d                debug
        -q                quiet mode
        -x                expert mode
        -r dir            use dir as the root directory
        -p dir1:dir2:dirN path for the external commands used by chkrootkit
        -n                skip NFS mounted dirs

testname salah satu atau lebih dari daftar berikut,

aliens asp bindshell lkm rexedcs sniffer w55808 wted scalper slapper
z2 chkutmp amd basename biff chfn chsh cron crontab date du dirname
echo egrep env find fingerd gpm grep hdparm su ifconfig inetd
inetdconf identd init killall ldsopreload login ls lsof mail mingetty
netstat named passwd pidof pop2 pop3 ps pstree rpcinfo rlogind rshd
slogin sendmail sshd syslogd tar tcpd tcpdump top telnetd timed
traceroute vdir w write

Contoh

./chkrootkit ps ls sniffer

untuk melihat data lebih banyak

./chkrootkit -x | more

Melihat pathname dalam sistem command

./chkrootkit -x | egrep '^/'

chkrootkit menggunakan command berikut untukl melakukan test: awk, cut, egrep, find, head, id, ls, netstat, ps, strings, sed, uname. Pakai option -p untuk memberikan alternate path untuk chkrootkit agar tidak menggunakan system command yang mungkin sudah terinfeksi. Contoh,

./chkrootkit -p /cdrom/bin

Untuk beberapa path.

./chkrootkit -p /cdrom/bin:/floppy/mybin

Ada baiknya mount disk mesin yang ter-compromise ke mesin yang bisa di percaya, misalnya disk ada di /mnt, gunakan.

./chkrootkit -r /mnt

Output Messages

Output

  • INFECTED: Tes tersebut telah mengidentifikasi sebuah perintah yang mungkin dimodifikasi oleh rootkit yang diketahui;
  • not infected: Tes tersebut tidak menemukan tanda tangan rootkit yang diketahui.
  • not tested: Tes tidak dilakukan - ini bisa terjadi dalam situasi berikut:
    • Test adalah OS spesifik;
    • Tes tergantung pada program eksternal yang tidak tersedia;
    • Beberapa pilihan baris perintah tertentu diberikan. (Misalnya -r).
  • not found: Perintah yang akan diuji tidak tersedia;
  • Vulnerable but disabled: Perintahnya terinfeksi tapi tidak di gunakan. Tidak berjalan atau di-commented di inetd.conf

Sebuah trojan di temukan. Apa yang perlu saya lakukan?

Masalah terbesar anda adalah mesin anda telah disusupi dan orang jahat ini memiliki hak istimewa root.

Mungkin anda bisa memecahkan masalah dengan hanya mengganti perintah yang kena trojan - cara terbaik adalah dengan menginstal ulang mesin dari media yang aman dan mengikuti rekomendasi keamanan vendor anda.

Referensi

Pranala Menarik