Expand description
Magic GID detection — identifies processes controlled by LD_PRELOAD rootkits.
Father rootkit (github.com/mav8557/Father) grants GID 7823 to processes
it controls via its accept() hook. Scanning /proc/
Structs§
- Magic
GidFinding - A finding produced when a process carries a known rootkit magic GID.
Constants§
- FATHER_
MAGIC_ GID - Magic GID used by the Father rootkit to mark controlled processes.
- KNOWN_
MAGIC_ GIDS - Known rootkit magic GIDs to watch for.
Functions§
- classify_
magic_ gid - Returns
Some(rootkit_name)if the GID is a known rootkit magic GID, orNoneif it is not recognised. - has_
magic_ gid - Returns
trueif any GID in the list is a known rootkit magic GID.