Linux rootkit implementation

admin 2021年4月3日19:31:13评论42 views字数 3097阅读10分19秒阅读模式

Linux rootkit implementation

Sunday, December 4, 2011

This is a rootkit i developed some time ago for educational purposes. It has the ability to hide itself from lsmod, hide processes, tcp connections, logged in users and to give uid 0 to any running process. The rootkit does not work on linux kernel >= 3.0; I′ve successfully tested it on kernels >= 2.6.26 &&

The hiding is performed through file system function hooking. On Linux, every fs driver provides functions to open, read, write and perform operations with files and directories. This functions are stored in a struct file_operations, stored inside every inode. Therefore, every file_operations contains a pointer to the open, read, write(and many other) functions which will be called whenever a user tries to execute those actions on a filesystem object.

So what i did was to retrieve a certain inode and modify the pointer to its read function, replacing it with my own function. In this new function, filtering on the input was performed, in order to remove the entries i wanted to hide.

Let's take for example the connection hiding mechanism. netstat takes tcp connections information from a virtual file named /proc/net/tcp. This file contains one entry per line, each one indicating source and destination port, source and destination address and more information about each open connection. In order to hide a certain connection, i replaced the default read function with my own, in which i read entries on that file and skipped those containing the port i needed to hide.

In order to give orders to the rootkit, i used the same mechanism. I added a write function pointer to the file /proc/buddyinfo, which by default has no write permissions. So after hooking that function, whenever any user writes something to that virtual file, the rootkit will read what was wrote and execute actions based on the input. The commands it supports are the next ones:

  1. hide/show. This commands hide/show the rootkit from lsmod(actually from /proc/modules).
  2. hsport PORT/ssport PORT. Hides(hsport) connection which have PORT as their source port, or "unhides it"(ssport) if it was previously hidden.
  3. hdport PORT/sdport PORT. Same as above but using destination port instead of source.
  4. hpid PID/spid PID. Hides or "unhides" a process that has PID as its pid. This is done by hooking the /proc readdir pointer.
  5. huser USER/suser USER. This commands hide or "unhide" a logged in user, so that who or other similar commands won't indicate USER is logged in the system. This is done by hooking /var/run/utmp.
  6. root PID. This makes the process identified by PID to contain uid 0 and gid 0. This is kind of dirty but works well; the credentials struct from the init process is copied to the process identified by PID.

This is a screenshot showing how the rootkit works, hiding a user, a process, the ssh socket and making the bash process gain root privileges:

You can get the source code https://github.com/mfontanini/Programs-Scripts/tree/master/rootkit. In order to compile it, you require your kernel's headers(on debian-based distributions, this can be found on the package linux-headers-2.6.X.X, where X depend on your kernel version). Download both the Makefile and the source file, and then just execute:

make

insmod rootkit.ko

That's all. Hope you find it useful!

Posted by Matias Fontanini at 16:49

From:http://average-coder.blogspot.kr/2011/12/linux-rootkit.html

Download:

rootkit.rar

文章来源于lcx.cc:Linux rootkit implementation

相关推荐: 每次地震,网络世界一片黑白,全国人民一齐哀悼,各种煽情,蛋都碎了

实在忍不住了,吐个槽:每次地震,网络世界一片黑白,全国人民一齐哀悼,各种煽情,各种你坚强他挺住,就没有人出来问问,为啥日本一个七级地震啥事儿没有跟玩儿一样的,中国为啥就跟妙脆角一样的震碎了呢? 而且两次还是栽到一个坑里了... 点那么多蜡烛有屁用,不如去多垒几…

  • 左青龙
  • 微信扫一扫
  • weinxin
  • 右白虎
  • 微信扫一扫
  • weinxin
admin
  • 本文由 发表于 2021年4月3日19:31:13
  • 转载请保留本文链接(CN-SEC中文网:感谢原作者辛苦付出):
                   Linux rootkit implementationhttps://cn-sec.com/archives/323113.html

发表评论

匿名网友 填写信息