From 1b0391ed6e31e4f6b4cbe0801531f493f698102f Mon Sep 17 00:00:00 2001 From: "Ilya V. Matveychikov" Date: Mon, 2 Jul 2018 14:04:37 +0400 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b1df07..7ec6865 100644 --- a/README.md +++ b/README.md @@ -65,9 +65,10 @@ Additional functions: | Environment | 2.6.x/3.x/4.x (x86) | `sys_call_table` search method is x86-only | | Persistency | /etc/modules or /etc/rc.modules | boot-time module loading | | Management interface | `kill(2)` | `sys_call_table[__NR_kill]` | - | Detection evasion | Hiding | Hide own files, unlinks module from `module_list`, tamper file content | + | Hiding (tampering) of file contents | Filtering while reading | `sys_call_table[__NR_read]` | | Hiding of files and directories | Filtering of direcroty entries | `sys_call_table[__NR_getdents]` `sys_call_table[__NR_getdents64]` | | Hiding of processes and process trees | Filtering of `/proc` | Filtering `getdents` while listing `/proc`. Hidden tasks are marked using `task->flags` (0x10000000). Not able to hide all threads and children of parent process. | + | Detection evasion | Hiding | Hide own files. Unlinks module from `module_list`. Alters contents of files while reading. | - https://github.com/QuokkaLight/rkduck