1
0
forked from ports/opt

Initial commit of chkrootkit

This commit is contained in:
Daniel Walpole 2005-11-17 01:59:10 +00:00
parent 0288ab4423
commit 0fb079abeb
3 changed files with 33 additions and 0 deletions

12
chkrootkit/.footprint Normal file
View File

@ -0,0 +1,12 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/check_wtmpx
-rwxr-xr-x root/root usr/sbin/chkdirs
-rwxr-xr-x root/root usr/sbin/chklastlog
-rwxr-xr-x root/root usr/sbin/chkproc
-rwxr-xr-x root/root usr/sbin/chkrootkit
-rwxr-xr-x root/root usr/sbin/chkrootkit.scr
-rwxr-xr-x root/root usr/sbin/chkutmp
-rwxr-xr-x root/root usr/sbin/chkwtmp
-rwxr-xr-x root/root usr/sbin/ifpromisc
-rwxr-xr-x root/root usr/sbin/strings-static

2
chkrootkit/.md5sum Normal file
View File

@ -0,0 +1,2 @@
22ba1ca91b3c379254f4f97014db7b0f chkrootkit
b73fb9e365d2edcd031d65b16e965a18 chkrootkit-0.46a.tar.gz

19
chkrootkit/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# $Id: Pkgfile,v 1.6 2005/10/30 04:23:29 danielw Exp $
# Description: A shell script that checks system binaries for rootkit modification.
# URL: http://www.chkrootkit.org/
# Maintainer: Daniel Walpole, daniel at walpole dot id dot au
name=chkrootkit
version=0.46a
release=1
source=(ftp://ftp.pangeia.com.br/pub/seg/pac/$name-$version.tar.gz \
chkrootkit)
build() {
cd $name-$version
make sense
mkdir -p $PKG/usr/sbin
mv -f chkrootkit chkrootkit.scr
install -m 0755 {check_wtmpx,chkdirs,chklastlog,chkproc,chkrootkit.scr,chkutmp,chkwtmp,ifpromisc,strings-static} $PKG/usr/sbin
install -m 0755 $SRC/chkrootkit $PKG/usr/sbin
}