It’s been a while since I wrote about Sandboxes and I thought I will revive the series by listing a couple of ideas that I believe may be still under the radar of both sandbox solution creators, and reverse engineers.
Symbols
When we analyze Windows native OS libraries one of the most useful features we have at hand is leveraging debugging symbols. IDA, windbg, and many other reversing tools can use these symbols very efficiently – with symbols in place we can see names of internal functions, variables, and this code/data enrichment provides us with an invaluable context that speeds up the analysis.
Now, since the tools can use it, there is nothing that could stop malware from… doing the same.
Imagine the possibilities!
Instead of relying on export/import tables, a clever malware that leverages symbols could make calls to internal functions, or find ways to hook code deep inside the functions that are typically monitored (at least on the userland level). Symbols could also help to detect caves i.e. areas of code/data that are rarely used, and allow malware to overwrite them and persist in a much stealthier way than usual. There is a lot of potential for surgical modification of code to launch the payload code using the EPO (Entry Point Obscuring) technique.
Note that while there could be a need to download these PDB files directly on the infected system, nothing stops malware from sending copies of the DLLs from the system to its server first, decompiling / disassembling them on a remote server. The malware could then craft the payload using hardcoded offsets obtained via symbols to deliver the required functionality. A side effect of such trickery would be that such crafted payloads would not run on sandboxes, and manual analysis would typically fail unless the file was analyzed on the exactly same system (meaning: with the same versions of libraries as existing on the victim’s system); obviously, ASLR needs to be taken into account for all offsets and calls. Another caveat is that such approach would require constant monitoring of Windows Update service; if files are replaced, the code would need to be updated to the most up to date version that works with the new libraries.
Leveraging functions of ApiSetSchema libraries
Now that we have not only kernel32.dll, but also KernelBase.dll, and the whole api-ms-*.dll zoo, it is possible to call these wrapper functions instead of the pure exports from kernel32.dll, advapi32.dll, etc..
Leveraging internal/undocumented functions
These can be either located via symbols, or via ApiSetSchema libraries; a quick browsing through internal functions referenced by kernel32.dll reveals a lot of interesting possibilities e.g.:
- PrivCopyFileExW – undocumented function that allows to copy files
- A couple of exported Internal functions that can be potentially used as callbacks (to run shellcodes, payload code, etc.)
- Internal_EnumCalendarInfo
- Internal_EnumDateFormats
- Internal_EnumLanguageGroupLocales
- Internal_EnumSystemCodePages
- Internal_EnumSystemLanguageGroups
- Internal_EnumSystemLocales
- Internal_EnumTimeFormats
- Internal_EnumUILanguages
- A couple of exported Internal functions that can be used to access both the Registry and the File System bypassing documented APIs:
- RegCreateKeyExInternalA
- RegCreateKeyExInternalW
- RegDeleteKeyExInternalA
- RegDeleteKeyExInternalW
- RegOpenKeyExInternalA
- RegOpenKeyExInternalW
- ReplaceFileExInternal
There is certainly more.
New technologies (well, sometimes not that new)
While it doesn’t really rely on symbols, it does fit the topic of the article – there is a class of APIs that are not commonly used yet, but certainly will be heavily utilized in the future: I am talking about enclave functions; as per MS:
An enclave is an isolated region of code and data within the address space for an application. Only code that runs within the enclave can access data within the same enclave.
Example functions:
- CreateEnclave – creates an enclave;
- LoadEnclaveData – allows to inject code/data into another processes
- and… other enclave functions
So, you got yourself yet another API set for both code injection and protection.
I am obviously not the first one to highlight it; a paper from 2015 (3 years ago!) by Alex Ionescu covers the topic and lists a number of possible issues enclaves bring to the world of security solutions including AV, EDR, and perhaps memory acquisition tools.