Version in base suite: 0.50-4 Base version: chkrootkit_0.50-4 Target version: chkrootkit_0.50-4+deb9u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/c/chkrootkit/chkrootkit_0.50-4.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/c/chkrootkit/chkrootkit_0.50-4+deb9u1.dsc changelog | 11 +++++++++++ cron.daily | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff -Nru chkrootkit-0.50/debian/changelog chkrootkit-0.50/debian/changelog --- chkrootkit-0.50/debian/changelog 2016-12-27 12:14:43.000000000 +0000 +++ chkrootkit-0.50/debian/changelog 2019-01-21 10:45:44.000000000 +0000 @@ -1,3 +1,14 @@ +chkrootkit (0.50-4+deb9u1) stretch; urgency=medium + + * Non-maintainer upload. + * Backport fix for regular expression for filtering out dhcpd and dhclient as + false positives from the packet sniffer test. + + [ Lorenzo "Palinuro" Faletra ] + * Update /etc/cron.daily/chkrootkit (Closes: #600109) + + -- Moritz Schlarb Mon, 21 Jan 2019 11:45:44 +0100 + chkrootkit (0.50-4) unstable; urgency=low * [132754e] Fix windigo false positive (Closes:#796599) diff -Nru chkrootkit-0.50/debian/cron.daily chkrootkit-0.50/debian/cron.daily --- chkrootkit-0.50/debian/cron.daily 2016-12-27 12:14:43.000000000 +0000 +++ chkrootkit-0.50/debian/cron.daily 2019-01-21 10:44:19.000000000 +0000 @@ -19,7 +19,7 @@ eval $CHKROOTKIT $RUN_DAILY_OPTS > $LOG_DIR/log.today.raw 2>&1 # the sed expression replaces the messages about /sbin/dhclient3 /usr/sbin/dhcpd3 # with a message that is the same whatever order eth0 and eth1 were scanned - sed -r -e 's,eth(0|1)(:[0-9])?: PACKET SNIFFER\((/sbin/dhclient3|/usr/sbin/dhcpd3)\[[0-9]+\]\),eth\[0|1\]: PACKET SNIFFER\([dhclient3|dhcpd3]{PID}\),' \ + sed -r -e 's,eth(0|1)(:[0-9])?: PACKET SNIFFER\((/sbin/dhclient|/usr/sbin/dhcpd)\[[0-9]+\]\),eth\[0|1\]: PACKET SNIFFER\([dhclient|dhcpd]{PID}\),' \ -e 's/(! \w+\s+)[ 0-9]{4}[0-9]/\1#####/' $LOG_DIR/log.today.raw > $LOG_DIR/log.today if [ ! -f $LOG_DIR/log.expected ]; then echo "ERROR: No file $LOG_DIR/log.expected"