Lead Image © Bruce Rolff, 123RF.com

Lead Image © Bruce Rolff, 123RF.com

Forensic main memory analysis with Volatility

Fingerprints

Article from ADMIN 49/2019
By
When you examine the memory of a computer after a break-in, take advantage of active support from the Volatility framework to analyze important memory structures and read the volatile traces of an attack.

When you think of IT forensics, you usually have the analysis of non-volatile data carriers, such as hard disks or SSDs, in mind. But volatile RAM is also worth a look. It usually contains important traces (e.g., of processes or network connections) and thus provides indications of a successful attack.

The detective work is preceded by the task of creating a RAM image. This memory dump must then be analyzed. With Linux onboard tools, users already can find out and learn a lot, but it's also quite a time-consuming process. Luckily, you can find support in Volatility [1], a framework written in Python that identifies the most important memory structures of an operating system and presents the content in a human-readable form. Its big advantage is the many plugins that support a wide variety of analysis activities (Table 1).

Table 1

Volatility Enhancements

Plugin Function
Processes
linux_apihooks Checks for userland API hooks
linux_bash Extracts the Bash history from the process memory
linux_check_creds Checks whether processes share credential structures
linux_dump_map Writes selected memory mappings to a disk
linux_dynamic_env Fetches dynamic environment variables of a process
linux_getcwd Shows the current directory for each process
linux_kernel_opened_files Files opened by kernel
linux_library_list Libraries loaded by a process
linux_librarydump Copies the shared libraries of a process to disk
linux_list_raw Lists processes with suspicious sockets
linux_malfind Looks for suspicious process mappings
linux_memmap Shows the memory map of Linux tasks
linux_plthook Scans Procedure Linkage Table (PLT) of ELF binaries for unnecessary hooks
linux_proc_maps Prints memory maps of a process
linux_procdump Writes the executable of a process to disk
linux_process_hollow Checks for signs of process hollowing
linux_psaux Shows processes with start time and command-line arguments
linux_psenv Shows processes with their static environment variables
linux_psscan Scans the RAM of processes
Plugin Function
Kernel and Scheduling
linux_check_idt Checks whether IDT has changed
linux_check_inline_kernel Searches for inline kernelhooks
linux_check_modules Compares the module list with the sysfs specifications
linux_check_syscall Checks whether the system call table has changed
linux_check_tty Searches for hooks on TTY devices
linux_hidden_modules Browses RAM for hidden kernel modules
linux_info_regs As with GDB info registers, prints out contents of process registers
linux_lsmod Prints loaded kernel modules
linux_moddump Extracts loaded kernel modules
linux_pslist Prints active tasks from the task_struct->tasks list
linux_pslist_cache Shows processes from kmem_cache
linux_pstree Shows parent-child relationships between processes
linux_psxview Finds hidden processes
linux_threads Shows the threads of a process
imagecopy Copies a physical address area into an image
Files and Filesystems
linux_check_fop Finds file_operations structures modified by rootkits
linux_dentry_cache Collects files from the dentry cache
linux_enumerate_files Lists file references from the filesystem cache
linux_elfs Finds ELF binaries in process mappings
linux_find_file Lists files and restores them from RAM
linux_lsof Lists file descriptors
linux_mount Prints info on mounted filesystems or devices
linux_mount_cache Lists info on mounted filesystems from kmem_cache
linux_recover_filesystem Recovers RAM-cached filesystem
linux_tmpfs Restores tmpfs filesystems
linux_truecrypt_passphrase Recovers cached TrueCrypt passphrases
mbrparser Scans for master boot records
Network
linux_arp Shows the Address Resolution Protocol (ARP) table
linux_check_afinfo Checks operation function pointers of network protocols
linux_ifconfig Prints active interface info
linux_netfilter Lists Netfilter hooks
linux_netscan Examines network structures
linux_netstat Lists open sockets
linux_route_cache Recovers routing cache
linux_sk_buff_cache Recovers packets from the sk_buff of the kmem_cache structure

Imaged

The first step is to create a memory image. If the potentially compromised system is running on a virtual machine, the Virtual Machine Manager can create a snapshot, which appropriate tools then take apart [2] [3]. A bare metal Linux presents forensic experts with greater challenges: Every change to the system also changes the memory content, which could destroy valuable clues.

The approach of cooling the memory and reading it out in a special device [4] is not practicable outside a laboratory environment. If the computer has a FireWire connection, a security hole could be exploited, and the memory could be copied over the bus [5]. This has also been described for Thunderbolt and PCIe, but doesn't really work under Linux as of yet [6]-[8].

The only path that remains, then, is to accept that a part of the memory changes while copying. With older Linux versions, this was quite simple, because dd could copy /dev/mem locally to USB sticks, as could netcat over the network. Newer distributions, however, limit read permissions considerably, which is a good idea from a security point of view. Linux Memory Grabber [9] can help you in these cases.

Tapped

The lmg script assumes that a Linux machine is available that can compile a kernel module suitable for the target system; this requires detailed knowledge of the target and a root account. In many cases, forensic experts have to give up here, unless their own system is affected. The instructions on GitHub [9] will help you create a memory image. Although the installation of the kernel module changes the memory content of the target system, and lmg also uses binaries on the target system, which is not entirely without risk on a cracked system, it is probably the only viable solution in most cases.

If you want to be particularly careful about modified binaries, you could bring them along on a USB stick, accept another memory change before installation, and change the path so that the programs from the stick are used. First indications as to whether such a measure is necessary are provided by a host-based intrusion detection system [10]. Linux currently has no particularly secure solutions, such as those proposed in a paper presented at The Digital Forensic Research Workshop in 2013 [11]. Although annoying in forensic investigations, because attackers could also exploit such backdoors, it is definitely a security gain in everyday life.

Forensics

The admin, who now owns a memory image of the possibly compromised computer, can now turn to the analysis. If you want to install Volatility from source, you need numerous Python modules. Alternatively, you can find binaries for popular operating systems on the project page [1]. Simply unzip the ZIP file, and the tool is ready to use. If you find the long name unwieldy, you can create a symlink:

ln -s volatility_2.6_lin64_standalone vol

Also, you should create a profiles subdirectory to give you space for the profiles of the systems to be analyzed. To evaluate a memory image, Volatility requires information about the memory layout. A profile must therefore always precisely match the kernel version. The Volatility wiki [12] links to ready-made Linux profiles and shows how you can use dwarfdump to generate the necessary information about kernel data structures and debug symbols to create your own profiles.

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy ADMIN Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • Forensic Analysis on Linux

    In computer forensics, memory analysis is becoming increasingly important as a means for investigating security incidents. In this article, we provide an overview of the various memory dumping options on Linux and introduce the support in Linux for the Volatility Analysis Framework.

  • Malware Analysis
    We show you how to dig deep to find hidden and covert processes, clandestine communications, and signs of misconduct on your network.
  • Maintaining Android in the enterprise
    No matter how insecure Android might appear, you can't escape the "bring your own device" philosophy in today's corporate environment. In this article, we show how admins can use on-board tools in Android phones to regain a little control.
  • Acquiring a Memory Image
    Be ready before disaster strikes. In this article we describe some tools you should have on hand to obtain a memory image of an infected system.
  • NVDIMM and the Linux kernel
    Non-volatile dual in-line memory modules will provide storage as fast as RAM and keep its content through a reboot. The Linux kernel is already geared to handle the new technology and can even serve the modules up as block devices.
comments powered by Disqus
Subscribe to our ADMIN Newsletters
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs



Support Our Work

ADMIN content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.

Learn More”>
	</a>

<hr>		    
			</div>
		    		</div>

		<div class=