There are some rootkitscanners for linux, for example:
But How would I get notified on a desktop?
Is it possible to get an alert, if the scanner found something?
There are some rootkitscanners for linux, for example:
But How would I get notified on a desktop?
Is it possible to get an alert, if the scanner found something?
After installing chkrootkit it adds a crontab within /etc/cron.daily/chkrootkit
script "I'm using debian wheezy"
each chkrootkit daily execution logs inside a $LOG_DIR/log.today
, you can then create a daemon that tracks changes within the log file and send you email or run something to alert you.
/etc/chkrootkit.conf
and then add your suggestion somewhere. Where? – rubo77 Oct 08 '14 at 12:11sudo rkhunter --checkall --report-warnings-only | while read OUTPUT; do notify-send "$OUTPUT"; done
But where? – rubo77 Oct 13 '14 at 23:42