GithubHelp home page GithubHelp logo

yark's Introduction

yark - Yet Another RootKit

Features

  • Hide kernel module from output of lsmod
  • Hide a specific process
  • Hide a specific TCP/UDP port
  • Hide file/directory
  • Make a process run as root user
  • A easy-to-use way to interact with kernel module

How to Build

Requirements

In order to build the kernel module, you need to install the kernel-headers package corresponding to kernel version.

  • For ubuntu:

    apt-get install build-essential linux-headers-`uname -r`

Build

We use Makefile to manage the build flow.

  • Build the kernel module:

    make
  • Load kernel module on local machine

    sudo insmod yark.ko
  • Uninstall kernel module

    sudo rmmod yark
  • Clean up

    make clean

Quick Start Guide

control by file IO

We use the method of writing to the file to control the rookie, and the /sys/kernel/yark file will be automatically generated when the module is loaded.

The corresponding file structure is as follows.

├── yark
    ├── give_root
    │   ├── give
    │   └── giveme
    ├── hide_file
    │   ├── add
    │   ├── del
    │   └── list
    ├── hide_module
    │   └── vis
    ├── hide_port
    │   ├── add
    │   ├── del
    │   └── list
    ├── hide_proc
    │   ├── add
    │   ├── del
    │   └── list
    └── protect_proc
        ├── add
        ├── del
        └── list

privilege escalation

give_root can set any shell's UID to 0. (i.e. give_root can promote any shell's user to root)

Writing any shell's PID to give_root/give can set the shell's UID to 0. Reading give_root/giveme can change current shell's user to root.

  • e.g. If we have a shell with PID 1234 and want to change its user to root

    echo -n "1234" > /sys/kernel/yark/give_root/give
  • e.g. If we want to change current shell's user to root

    cat /sys/kernel/yark/give_root/giveme

hide module

hide_module controls the display status of the rookie module.

If 1 is written to hide_module/vis, the rookie module will be visible (default status), or if 0 is written, the rookie module will not be visible.

  • e.g. If we want to hide the rookie module

    echo -n "0" > /sys/kernel/yark/hide_module/vis

hide file

hide_file controls the hiding / unhidding status of specified file.

Writing amy file path to hide_file/add can hide the file, and writing the file path to hide_file/del can unhide it. hide_file/list records all the hidden files.

  • e.g. If we want to hide file /tmp/test_hide_file

    echo -n "/tmp/test_hide_file" > /sys/kernel/yark/hide_file/add

hide process

hide_proc controls the hiding / unhidding status of specified process.

Writing any PID to hide_proc/add can hide the process, and writing the PID to hide_proc/del can unhide it. hide_proc/list records all the hidden processes.

  • e.g. If we want to hide process with PID 1234

    echo -n "1234" > /sys/kernel/yark/hide_proc/add

hide port

hide_port controls the hiding / unhidding status of network activity of the specified port.

Writing any port ID to hide_port/add can hide all the network activity of the specified port, and writing the port number to hide_port/del can unhide it. hide_port/list records all the hidden port.

  • e.g. If we want to hide port with ID 80

    echo -n "80" > /sys/kernel/yark/hide_port/add

protect process

protect_proc can protect the specified process from being cleared by the kill instruction

Writing any PID to protect_proc/add can protect the process from being killed, and writing the PID to protect_proc/del can unprotect it. protect_proc/list records all the protected processes.

  • e.g. If we want to protect process with PID 1234

    echo -n "1234" > /sys/kernel/yark/protect_proc/add

Development

vscode configure

For developers using vscode, in order for vscode to know the kernel header files path, it is recommended to create a configuration file .vscode/c_cpp_properties.json that contains the following:

{
    "env": {
        "kernel_release": "<your kernel version>"
    },
    "configurations": [
        {
            "name": "Linux",
            "defines": [
                "__GNUC__",
                "__KERNEL__"
            ],
            "includePath": [
                "${workspaceFolder}/**",
                "/lib/modules/${env:kernel_release}/build/include",
                "/usr/lib/modules/${env:kernel_release}/build/arch/x86/include/asm",
                "/usr/lib/modules/${env:kernel_release}/build/arch/x86/include",
                "/usr/lib/modules/${env:kernel_release}/build/arch/x86/include/generated",
                "/usr/lib/modules/${env:kernel_release}/build/include/uapi"
            ]
        }
    ],
    "version": 4
}

Remember to change the value of kernel_release to the version of your kernel. You can query your kernel version with uname -r.

yark's People

Contributors

imlk0 avatar xl1043237213 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.