I just installed and ran chkrootkit for the first time and when I ran sudo chkrootkit | grep INFECTED
, it returned ![user] 21342 pts/0 grep --color=auto INFECTED
I'm a complete novice at this and have no idea what that means or what I should do. Any explanation or help would be very welcome!
My OS is Ubuntu 22.04.1 (Jammy) and as far as I know everything's up to date. I have dual boot with Windows 10 but never use windows, and I have an external monitor that occasionally sends my laptop into a weird ^@^@ errorscreen until I disconnect it, in case that's related somehow??
Thank you for any help!
chrootkit
prints some processes' details, but those processes may or may not be problematic. In this case you're seeing the process details of thegrep
command insudo chkrootkit | grep INFECTED
itself (if you runtype grep
, you'll see it's an alias togrep --color=auto
). – muru Nov 24 '22 at 09:52sudo chkrootkit | grep "[I]NFECTED"
to search. The [ ] make it a regex and makes it not show up in the results. Or usepgrep
instead ofgrep
– Rinzwind Nov 24 '22 at 09:59