> I've searched around the net abit on this matter without much help.
> Anybody know why BQ's secure SMTP triggers chkrootkit's "INFECTED
> (PORTS: 465)" when obviously it's a legit SMTPS service. Is there a
> way to not have this happen and continue using SMTPS? Thanks!
I fix this by running the following script to call chkrootkit each day....
#!/bin/sh
SERVER=`hostname`
cd /usr/local/chkrootkit-0.47
rm current.output
./chkrootkit -q > current.output 2>&1
DIFF=`/usr/bin/diff current.output good.output`
ERRO=`/bin/cat current.output`
if [ "$DIFF" != "" ]
then
/usr/lib/sendmail -t << EOF
To: root
Subject: ${SERVER}: Chkrootkit Output
====> A diff between current and good output is:
$DIFF
====> The current output is:
$ERRO
EOF
fi