Example image CC: http://struppigel.blogspot.com/2017/07/process-injection-info-graphic.html

This article contains an overview of what is DLL injection, Process Hollowing and Process Doppelgänging techniques.

Greetings, in this article we will look at what is DLL injection and what are the different techniques for this purpose. So let’s start right away

First of all, let’s find out what a DLL is before we enter the DLL injection. DLL(Dynamic Link Library)files are the common actions of the programs that are working in a single file, and if the program does not have the necessary functions during the program, it looks for it in the dynamic link library, namely in the DLL file. In this way, the programs will work on a single file, reducing memory usage to a minimum, increasing both the program speed and computer speed, since many DLLs use a single DLL instead of a file, it will not take up much space on the hard disk.

Now that we have learned what the DLL file does, there may be something in our minds about the DLL injection. Now we can start with the definition of DLL injection.

DLL injection is a method used by malware to hide, not attract attention or work with high rights. This method briefly aims to run the victim process with the rights of the victim by injecting harmful software into another process.

An example DLL injection steps include:

  1. First of all, a target must be determined for DLL injection. The most popular windows api that can be used for this process are CreateToolhelp32Snapshot(), Process32First() and Process32Next () these functions take your process list and start all the processes from the beginning. Finally, the processes in this list are potentially exploitable processes.

  2. The process id (PID) of the specified process is passed to the OpenProcess() function to obtain a handle value to be used for that process access.

  3. A memory allocation is made within the memory area of ​​the target process and the name of the malicious DLL that is desired to be loaded is written in this allocated area. The VirtualAllocEx() and WriteProcessMemory() functions are used for these operations, respectively. VirtualAllocEx(), allocate memory in the memory area of ​​the target process; WriteProcessMemory() is also used to write the name of the malicious DLL in this allocated field.

  4. Finally, to have the code executed in another process, the malware calls APIs such as CreateRemoteThread, NtCreateThreadEx, or RtlCreateUserThread. The latter two are undocumented. However, the general idea is to pass the address of LoadLibrary to one of these APIs so that a remote process has to execute the DLL on behalf of the malware.

NOTE: In order to run the “CreateRemoteThread()” function, the target (victim) process and the harmful process must be the same process owner.

It is worth mentioning that the “CreateRemoteThread” function is monitored by many security products. Attackers therefore avoid using it.

The screenshot below shows a malware called Rebhip that performs this technique.

Mockup image

Now that we have seen what DLL injection is and how it is done, we can look at different techniques and subfields.

Process Hollowing

The method called Process Hollowing is slightly different from the method we have described above. The malicious code that uses this method first runs a valid system process, then stops that process, and then replaces its codes with the original codes of that process, and finally runs the code it stopped and settled in the system.

Mockup image

Using the methods I described above, it is possible to easily detect harmful codes placed in the system by performing memory analysis. It will be enough for the memory analysis software that we will use to read the VAD (Virtual Address Descriptors) structure for each process and find the memory sections marked as executable (Page_Execute_ReadWrite) and then check if the codes in these memory sections have a corresponding response on the disk. You can easily identify Process Hollowing via the memory image. For this we can find out which processes are injected with volatility or Mandiant RedLine.

Let’s look at how we can detect it from a sample memory image. The analysis will start from the injected process detection. We can detect them with Volatility malfind.

Mockup image

Hollow process injection can also be detected by looking for suspicious memory protection. Running the malfind plugin (which looks for suspicious memory protections) shows suspicious memory protection (PAGE_EXECUTE_READWRITE) at address 0x1000000 (which is base address of lsass.exe) indicating that lsass.exe was not loaded normally (but was injected). Any executable that is normally loaded will have a memory protection of PAGE_EXECUTE_WRITECOPY. This further confirms that lsass.exe (pid 868) loaded at 0x1000000 is not legitimate.

Automating Process Hollow Detection using HollowFind Plugin

Hollowfind is a Volatility plugin to detect different types of process hollowing techniques used in the wild to bypass, confuse, deflect and divert the forensic analysis techniques. The plugin detects such attacks by finding discrepancy in the VAD and PEB, it also disassembles the address of entry point to detect any redirection attempts and also reports any suspicious memory regions which should help in detecting any injected code.

Below screenshot shows hollowfind plugin in action. Running the hollowfind plugin on the stuxnet infected memory image identified both lsass.exe processes (pid 1928 and pid 868) and it also reports the the invalid exe memory protection (PAGE_EXECUTE_READWRITE) and process path discrepancy between the VAD and PEB and also it disassembles the address of entry point (read further to know more on this), also notice a jump to the address 0x1003121 at the address of entry point.

Mockup image

Mockup image

For a more detailed analysis, https://cysinfo.com/detecting-deceptive-hollowing-techniques/

Process Doppelgänging

Process Doppelgänging, one of the popular Code Injection techniques, was first announced by 2 security researchers working in enSilo company in BlackHat in 2017.

Process Doppelgänging is of great importance because it works successfully on all versions of Windows, including Windows 10. If it is similar to Process Hollowing, it has certain aspects that are strictly separated from Process Hollowing.

Process Doppelgänging was frequently used by malware as it was difficult to detect by many AV products when it first appeared.


Mockup image

Mockup image


Thanks to malwarebytes for the images :)

Process Hollowing first initiates the target process, then unmaps and injects the malicious code. Process Doppelgänging, on the other hand, writes the malicious code on the image before the process starts. This is actually the biggest difference between them.

Process Doppelgänging is implemented in 4 steps:

  1. Transact — Create a TxF transaction using a legitimate executable then overwrite the file with malicious code. These changes will be isolated and only visible within the context of the transaction.
  2. Load — Create a shared section of memory and load the malicious executable.
  3. Rollback — Undo changes to original executable, effectively removing malicious code from the file system.
  4. Animate — Create a process from the tainted section of memory and initiate execution.

As a result, the process can start in an injected state even after the contents of the file are undone. For this reason, it will appear that there are no problems by many AV products.