I ran rkhunter
and found out a warning, that there is a new user called _apt
on my Ubuntu 16.04
$ grep _apt /etc/passwd
_apt:x:124:65534::/nonexistent:/bin/false
All I found out is, that it seems that this is a kind of sandbox user for "advanced persistent threats". But what exactly is this?
The user
_apt
is created by thepostinst
script of theapt
package (/var/lib/dpkg/info/apt.postinst
):It's the owner of
/var/cache/apt/archives/partial
and/var/lib/apt/lists/partial
and used by APT to download packages, package list, and other things.