Extending the ELF Core Format for Forensics Snapshots

Extending the ELF Core Format for Forensics Snapshots

Leviathan Research Extending the ELF Core Format for Forensics Snapshots Ryan O’Neill Security Consultant 10 November 2014 limitless innovation. no compromise © 2014 Leviathan Security Group Incorporated. All Rights Reserved. This document contains information, which is protected by copyright. Disclaimer No trademark, copyright, or patent licenses are expressly or implicitly granted (herein) with this analysis, report, or white paper. All brand names and product names used in this document are trademarks, registered trademarks, or trade names of their respective holders. Leviathan Security Group is not associated with any other vendors or products mentioned in this document. Contents 1 Abstract 3 2 Introduction 4 2.1 ELF Core Files (ET_CORE) 5 2.2 What do I mean by forensic analysis? 6 3 The Extended Core File Snapshot Format 8 3.1 Design Goals 8 3.2 Implementation Details 12 3.2.1 Section Header Table Reconstruction 12 3.2.2 Symbol Table Reconstruction 14 3.3 Process specific information found in /proc 16 3.4 Forensic Analysis Using the ECFS Format 17 3.5 Infection Types 18 3.5.1 PLTGOT hooks 18 3.5.2 Function Trampolines 19 3.5.3 Shared Library Injection 19 3.5.4 Malicious Code Modifications 19 4 Making ECFS Snapshot Utility Available 20 5 References 21 1 Abstract Malware authors often apply advanced techniques to execute and hide malicious activity on victim Linux systems. ELF runtime infections are among those techniques; they mutate the memory of a victim process to then modify its workings while maintaining stealth against disk-based forensics. To detect ELF runtime infections, analysts combine live debugging of the victim process and dumping a core file or taking a memory snapshot for offline analysis. This pervasive approach and the various methods used for detection are unwieldy and were never intended for use in forensic investigation; they demand room for improvement. In this paper I describe my Extended Core File Snapshot (ECFS) format, an extension to the Linux ELF core file format. I show that ECFS accurately captures all relevant, in-memory forensic information necessary for an analyst to diagnose common ELF memory injection attacks, and I explain its application in real-world scenarios. ECFS allows for both offline debugger (GDB) analysis of snapshot files and interoperability with pervasive static ELF Binary analysis tools. In addition to capturing available information via existing techniques, such as with Volatility [9] process dumps, ECFS uses a novel technique to aid analysis by identifying dynamic symbols and local function entry points that are generally stripped away in production binaries. I will provide an open source implementation of ECFS and supporting tools in January of 2015. 3 2 Introduction The actors behind UNIX-based malware attacks have a diverse set of goals, from bitcoin mining to staging targeted attacks against large institutions. While not all malware requires the use of sophisticated methods, the majority of traditional malware attacks aim to achieve stealth, persistence, and elevation of privilege by exploiting resident components of the victim system. Perhaps the most well publicized technique for opening a malicious backdoor in a Linux machine is via the notorious kernel rootkit. However, in cases where installing a kernel rootkit isn't feasible or desired, attackers are increasingly looking towards other techniques such as ELF runtime infections. ELF runtime infections infect process memory in an attempt to backdoor or modify the workings of a running process, often without requiring root privileges while evading disk-based forensics techniques. There are very few types of software that are capable of ascertaining the complexities and nuances of these ELF runtime infections and performing the analysis by hand is a resource-consuming task, even for the expert. As it stands there are approximately four standard approaches used by defenders to analyze the memory of a running process for ELF runtime infections: 1. Use the ptrace system call or ptrace-assisted debugger such as GDB to analyze a running instance of the suspect process 2. Dump /proc/<pid>/mem into a file for offline analysis 3. Generate a core file for offline analysis with GDB 4. Generate a process memory dump using Volatility for analysis Ideally, the dynamic and static analysis techniques listed above are used in combination to identify ELF runtime infections, but sometimes the realities of forensic analysis requires using them in isolation. Specifically, it may not be feasible to leave a victim process running or to maintain access to a victim Linux system to allow thorough dynamic analysis. Even when both static analysis and dynamic analysis of a victim process are possible, automating forensics analysis of existing information in its various locations and formats can be cumbersome. My research and this paper provide tools to address these shortcomings. The ECFS format discussed in this paper was originally designed as the native snapshot format for VMA Vudu [1], which is a process memory and binary forensics analysis tool for Linux that also may also act as a host-based intrusion detection system. While I designed ECFS specifically as the file format for VMA Vudu [1], it became clear during its development that it could also be instrumental for manual offline forensics analysis of process memory and that a broader audience could make use of it with Linux binutils [10]. This is because ECFS is compatible with common ELF specifications, and includes detailed information about a respective process. The forensic-relevant information is stored in such a way that common GNU utilities such as objdump and readelf will suffice for analyzing an ECFS snapshot when looking for the presence of an attacker within a process. ECFS modifies the ELF design of the core file format to support both storing of forensic-relevant information and analysis via ELF binary analysis tools. As a core file, an ECFS file can be readily analyzed via a debugger (such as GDB) after modifying a single field in its ELF header. Otherwise it is readable via any tool capable of viewing ELF section headers, program headers, and symbol tables. The ECFS tool, 4 which I specifically designed to create process memory snapshot files, has been forked from VMA Vudu and is maintained as a standalone project. 2.1 ELF Core Files (ET_CORE) Currently every UNIX flavor operating system that supports ELF adopts the ELF core file format and will generate a core file upon signaling a process with signal 11 SIGSEGV. The output file is a perfect snapshot of all the memory mappings from the process image with an ELF header of type ET_CORE. In the PT_NOTE segment a plethora of information is stored about what shared libraries are mapped, the CPU registers, signal information, process state, and personality. These are all stored as ELF notes. The ELF notes segment is a good place to pass auxiliary information and is the location that GDB looks to find this data when debugging a core file. This data can be viewed in a core file by reading the notes section with the readelf utility. Each OS will have a slight variation of the way this information is stored in the notes of the file. The notes from a regular Core file in Linux: ryan@elfmaster:~$ readelf -n core Displaying notes found at file offset 0x00000430 with length 0x00000b74: Owner Data size Description CORE 0x00000150 NT_PRSTATUS (prstatus structure) CORE 0x00000088 NT_PRPSINFO (prpsinfo structure) CORE 0x00000080 NT_SIGINFO (siginfo_t data) CORE 0x00000130 NT_AUXV (auxiliary vector) CORE 0x0000021f NT_FILE (mapped files) Page size: 4096 Start End Page Offset 0x0000000000400000 0x0000000000401000 0x0000000000000000 /home/ryan/host 0x0000000000600000 0x0000000000601000 0x0000000000000000 /home/ryan/host 0x0000000000601000 0x0000000000602000 0x0000000000000001 /home/ryan/host 0x00007f579d462000 0x00007f579d61d000 0x0000000000000000 /lib/x86_64-linux-gnu/libc-2.19.so 0x00007f579d61d000 0x00007f579d81d000 0x00000000000001bb /lib/x86_64-linux-gnu/libc-2.19.so 0x00007f579d81d000 0x00007f579d821000 0x00000000000001bb /lib/x86_64-linux-gnu/libc-2.19.so 0x00007f579d821000 0x00007f579d823000 0x00000000000001bf /lib/x86_64-linux-gnu/libc-2.19.so 5 0x00007f579d828000 0x00007f579d84b000 0x0000000000000000 /lib/x86_64-linux-gnu/ld-2.19.so 0x00007f579da4a000 0x00007f579da4b000 0x0000000000000022 /lib/x86_64-linux-gnu/ld-2.19.so CORE 0x00000200 NT_FPREGSET (floating point registers) LINUX 0x00000340 NT_X86_XSTATE (x86 XSAVE extended state) From this readelf output you can see that the prstatus structure, the prpsinfo structure, and siginfo_t are stored in the notes. The auxiliary vector contains information about the setup of the stack at program loading time. The Linux source code files fs/binfmt_elf.c and fs/binfmt_fdpic_elf.c contain the code that handle all ELF loading and core dumps. For every memory mapping in the process image that is dumped into the ELF core file there is a program header in the program header table. This includes all of the shared libraries and any memory mapped segments or mapped files. The Linux kernel adheres to contingencies when deciding to dump memory mappings. For instance, it will not dump memory mapped IO devices. The Virtual Dynamic Shared Object (VDSO), stack, and heap are all dumped. Shared memory mappings and anonymous mappings that have been written to are also dumped. It is true that ELF core files are extremely useful when debugging, especially when there are debugging information and symbols present in the original file, but they do not lend themselves well to in-depth forensics analysis, nor were they ever intended to serve as such. Also they are not very useful as a standalone file; you must load the original executable and the core file into GDB together in order to make real use of a core file. The objdump utility which usually relies strictly on ELF section headers will actually allow you to read a core file even in the absence of section headers but only in the simplest way (using phdr's), which would be nearly useless for forensics.

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    23 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us