├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── src ├── core.c ├── getdents_hook.c ├── headers ├── core.h ├── getdents_hook.h ├── module_hiding.h ├── network_keylog.h ├── packet_hiding.h ├── port_knocking.h ├── privilege_escalation.h ├── server.h └── socket_hiding.h ├── include ├── headers │ └── utils.h └── utils.c ├── libs ├── headers │ └── syscalltable.h └── syscalltable.c ├── module_hiding.c ├── network_keylog.c ├── packet_hiding.c ├── port_knocking.c ├── privilege_escalation.c ├── server.c └── socket_hiding.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/README.md -------------------------------------------------------------------------------- /src/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/core.c -------------------------------------------------------------------------------- /src/getdents_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/getdents_hook.c -------------------------------------------------------------------------------- /src/headers/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/headers/core.h -------------------------------------------------------------------------------- /src/headers/getdents_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/headers/getdents_hook.h -------------------------------------------------------------------------------- /src/headers/module_hiding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/headers/module_hiding.h -------------------------------------------------------------------------------- /src/headers/network_keylog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/headers/network_keylog.h -------------------------------------------------------------------------------- /src/headers/packet_hiding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/headers/packet_hiding.h -------------------------------------------------------------------------------- /src/headers/port_knocking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/headers/port_knocking.h -------------------------------------------------------------------------------- /src/headers/privilege_escalation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/headers/privilege_escalation.h -------------------------------------------------------------------------------- /src/headers/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/headers/server.h -------------------------------------------------------------------------------- /src/headers/socket_hiding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/headers/socket_hiding.h -------------------------------------------------------------------------------- /src/include/headers/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/include/headers/utils.h -------------------------------------------------------------------------------- /src/include/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/include/utils.c -------------------------------------------------------------------------------- /src/libs/headers/syscalltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/libs/headers/syscalltable.h -------------------------------------------------------------------------------- /src/libs/syscalltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/libs/syscalltable.c -------------------------------------------------------------------------------- /src/module_hiding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/module_hiding.c -------------------------------------------------------------------------------- /src/network_keylog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/network_keylog.c -------------------------------------------------------------------------------- /src/packet_hiding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/packet_hiding.c -------------------------------------------------------------------------------- /src/port_knocking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/port_knocking.c -------------------------------------------------------------------------------- /src/privilege_escalation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/privilege_escalation.c -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/server.c -------------------------------------------------------------------------------- /src/socket_hiding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croemheld/lkm-rootkit/HEAD/src/socket_hiding.c --------------------------------------------------------------------------------