Update README.md

This commit is contained in:
Ilya V. Matveychikov 2018-07-02 14:09:42 +04:00 committed by GitHub
parent 880b00db84
commit e9b74ed98c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ Additional functions:
| Management interface | `kill(2)` | `sys_call_table[__NR_kill]` |
| 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 <PID>-entries while listing `/proc`. Hidden tasks are marked using `task->flags | 0x10000000`. Not able to hide all threads and children of parent process. |
| Hiding of processes and process trees | Filtering of `/proc` | Filtering PID-like numeric entries 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