diff options
author | 2006-11-19 21:17:36 +0000 | |
---|---|---|
committer | 2006-11-19 21:17:36 +0000 | |
commit | 294e11eee504b5f8ba9b97310bc4fcfb6e7d49aa (patch) | |
tree | ac62b4f20503ffcbcfe68cd1c4a88b6e19bb0d06 /app-forensics/chkrootkit/files | |
parent | Version bump, security bug #155468. (diff) | |
download | historical-294e11eee504b5f8ba9b97310bc4fcfb6e7d49aa.tar.gz historical-294e11eee504b5f8ba9b97310bc4fcfb6e7d49aa.tar.bz2 historical-294e11eee504b5f8ba9b97310bc4fcfb6e7d49aa.zip |
Version bump, bug #154823
Package-Manager: portage-2.1.2_rc2
Diffstat (limited to 'app-forensics/chkrootkit/files')
5 files changed, 94 insertions, 1 deletions
diff --git a/app-forensics/chkrootkit/files/chkrootkit-0.47-add-missing-includes.diff b/app-forensics/chkrootkit/files/chkrootkit-0.47-add-missing-includes.diff new file mode 100644 index 000000000000..348ec0a84b1a --- /dev/null +++ b/app-forensics/chkrootkit/files/chkrootkit-0.47-add-missing-includes.diff @@ -0,0 +1,10 @@ +--- chkwtmp.c ++++ chkwtmp.c +@@ -21,6 +21,7 @@ + + + #include <stdio.h> ++#include <stdlib.h> + #include <unistd.h> + #include <string.h> + #include <utmp.h> diff --git a/app-forensics/chkrootkit/files/chkrootkit-0.47-makefile.diff b/app-forensics/chkrootkit/files/chkrootkit-0.47-makefile.diff new file mode 100644 index 000000000000..266fe1c186b0 --- /dev/null +++ b/app-forensics/chkrootkit/files/chkrootkit-0.47-makefile.diff @@ -0,0 +1,71 @@ +--- Makefile ++++ Makefile +@@ -3,8 +3,8 @@ + # (C) 1997-2006 Nelson Murilo, Pangeia Informatica, AMS Foundation and others. + # + +-CC = gcc +-CFLAGS = -DHAVE_LASTLOG_H ++CC ?= gcc ++CFLAGS += -DHAVE_LASTLOG_H + STATIC = -static + + ### +@@ -29,48 +29,36 @@ + #CFLAGS = + + +-SRCS = chklastlog.c chkwtmp.c ifpromisc.c chkproc.c chkdirs.c check_wtmpx.c strings.c ++SRCS = chklastlog.c chkwtmp.c ifpromisc.c chkproc.c chkdirs.c strings.c + +-OBJS = chklastlog.o chkwtmp.o ifpromisc.o chkproc.o chkdirs.o check_wtmpx.o strings-static.o ++OBJS = chklastlog.o chkwtmp.o ifpromisc.o chkproc.o chkdirs.o strings-static.o + + all: + @echo '*** stopping make sense ***' + @exec make sense + +-sense: chklastlog chkwtmp ifpromisc chkproc chkdirs check_wtmpx strings-static chkutmp ++sense: chklastlog chkwtmp ifpromisc chkproc chkdirs strings-static chkutmp + + chklastlog: chklastlog.c +- ${CC} ${CFLAGS} -o $@ chklastlog.c +- @strip $@ ++ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ chklastlog.c + + chkwtmp: chkwtmp.c +- ${CC} ${CFLAGS} -o $@ chkwtmp.c +- @strip $@ ++ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ chkwtmp.c + + ifpromisc: ifpromisc.c + ${CC} ${CFLAGS} ${LDFLAGS} -D_FILE_OFFSET_BITS=64 -o $@ ifpromisc.c +- @strip $@ + + chkproc: chkproc.c +- ${CC} ${LDFLAGS} -o $@ chkproc.c +- @strip $@ ++ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ chkproc.c + + chkdirs: chkdirs.c +- ${CC} ${LDFLAGS} -o $@ chkdirs.c +- @strip $@ +- +-check_wtmpx: check_wtmpx.c +- ${CC} ${LDFLAGS} -o $@ check_wtmpx.c +- @strip $@ ++ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ chkdirs.c + + chkutmp: chkutmp.c +- ${CC} ${LDFLAGS} -o $@ chkutmp.c +- @strip $@ +- ++ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ chkutmp.c + + strings-static: strings.c +- ${CC} ${STATIC} ${LDFLAGS} -o $@ strings.c +- @strip $@ ++ ${CC} ${STATIC} ${CFLAGS} ${LDFLAGS} -o $@ strings.c + + clean: + rm -f ${OBJS} core chklastlog chkwtmp ifpromisc chkproc chkdirs check_wtmpx strings-static chkutmp diff --git a/app-forensics/chkrootkit/files/digest-chkrootkit-0.45 b/app-forensics/chkrootkit/files/digest-chkrootkit-0.45 index e7c39a8dc16c..8808b9a6f6b6 100644 --- a/app-forensics/chkrootkit/files/digest-chkrootkit-0.45 +++ b/app-forensics/chkrootkit/files/digest-chkrootkit-0.45 @@ -1,2 +1,4 @@ -MD5 57493e24ca81750a200d8bcb4049e858 chkrootkit-0.45.tar.gz 36359 MD5 ecac86c18a31fbf9897124e7c34def98 chkrootkit-0.45-gentoo.diff.bz2 3729 +RMD160 84c1ca6b0f791b0727a1e61d104b23b4b3a9eb68 chkrootkit-0.45-gentoo.diff.bz2 3729 +SHA256 ca26f4113c2e511f87179bc673faa198ab9b2e6d6de0134443ed301f0ebb1362 chkrootkit-0.45-gentoo.diff.bz2 3729 +MD5 57493e24ca81750a200d8bcb4049e858 chkrootkit-0.45.tar.gz 36359 diff --git a/app-forensics/chkrootkit/files/digest-chkrootkit-0.46a b/app-forensics/chkrootkit/files/digest-chkrootkit-0.46a index 30230b725628..f3752791eb32 100644 --- a/app-forensics/chkrootkit/files/digest-chkrootkit-0.46a +++ b/app-forensics/chkrootkit/files/digest-chkrootkit-0.46a @@ -1,2 +1,6 @@ MD5 ecac86c18a31fbf9897124e7c34def98 chkrootkit-0.45-gentoo.diff.bz2 3729 +RMD160 84c1ca6b0f791b0727a1e61d104b23b4b3a9eb68 chkrootkit-0.45-gentoo.diff.bz2 3729 +SHA256 ca26f4113c2e511f87179bc673faa198ab9b2e6d6de0134443ed301f0ebb1362 chkrootkit-0.45-gentoo.diff.bz2 3729 MD5 b73fb9e365d2edcd031d65b16e965a18 chkrootkit-0.46a.tar.gz 37140 +RMD160 9016abfd7cd3d986aec86722c9a9b88dea7bf49b chkrootkit-0.46a.tar.gz 37140 +SHA256 ec23b4be57e08f6c28f646a447a8545f9c612fd4b296133ac9c3c3ac13e1d696 chkrootkit-0.46a.tar.gz 37140 diff --git a/app-forensics/chkrootkit/files/digest-chkrootkit-0.47 b/app-forensics/chkrootkit/files/digest-chkrootkit-0.47 new file mode 100644 index 000000000000..969b1d7ab554 --- /dev/null +++ b/app-forensics/chkrootkit/files/digest-chkrootkit-0.47 @@ -0,0 +1,6 @@ +MD5 ecac86c18a31fbf9897124e7c34def98 chkrootkit-0.45-gentoo.diff.bz2 3729 +RMD160 84c1ca6b0f791b0727a1e61d104b23b4b3a9eb68 chkrootkit-0.45-gentoo.diff.bz2 3729 +SHA256 ca26f4113c2e511f87179bc673faa198ab9b2e6d6de0134443ed301f0ebb1362 chkrootkit-0.45-gentoo.diff.bz2 3729 +MD5 4c6455d202cef35395a673386e4bf01a chkrootkit-0.47.tar.gz 37791 +RMD160 291746f60d0cc3bcf0e63387f3d7ff16a4215d17 chkrootkit-0.47.tar.gz 37791 +SHA256 5a5aeb597769cc2843648858b95fc7abd3485ba7edd1800d69e0125220c6669f chkrootkit-0.47.tar.gz 37791 |