Click here to Skip to main content
15,867,568 members
Articles / Programming Languages / ASM

Code Obfuscation in 64-Bit Land

Rate me:
Please Sign up or sign in to vote.
5.00/5 (12 votes)
11 Dec 2016CPOL11 min read 21.3K   448   27   9
Code Obfuscation in 64-Bit Land

(Note: If you are unable to download the source code from this link, you will also find it on the SmidgeonSoft website - travel to the "News" page and look for the entry dated 02/14/2016.  An updated version (dated 12/11/2016) of the source has been uploaded to and a link made available on my website - a pattern found in the HDSpoof tutorial has been adapted and incorporated into the code adding stress to a debugger and making it harder to reverse.)

Introduction

During my career as a reverse-engineer, I have been tasked on several occasions with finding the reason why my employer's product would mysteriously fail in the presence of a 3rd party application. Without access to the original source code, inevitably, I would fire up a static analyzer and/or debugger and start stepping through the binary code, trying to understand what it was doing and how it was interfering with our product's operation. On my website, www.smidgeonsoft.com, you can find more detailed documentation about two of these incidents (as well as two utilities, PEBrowse64 Professional and PEBrowseDbg64 Interactive, used during the creation of the project):

  • "Reversing HDSpoof - A Tutorial"
  • "Exposing a Resource Leak in Yoda's Protector"

Another project was not documented because it required reversing copy-protection by an installer, but, nevertheless provided inspiration for what you will learn about later in this article. As a result of these adventures and other experience, I am convinced of the following...

If It Can Be Debugged, It Can Be Reversed!

I hope in this discussion to pass along this motto/belief by examining a sample program employing some of the tricks and traps I picked up in my reverse-engineering adventures. The aforementioned projects were all 32-bit challenges. I have found little in the way of examples of how some of these techniques can be implemented in 64-bit platforms, hence, my offering of SimplestWithSpeedBumps. You will need Visual Studio 12 or greater in order to build the binaries. However, any mistakes, errors, or bugs in the source code I proudly call my own - the code is provided AS-IS and can be found in the attached file, SimplestWithFooSourceCode.zip.

Simplest

The main program in this article, Simplest, started out as an attempt to create a trivial Windows program that contained no imports. e.g. Kernel32, User32, etc. Inspired by another source:

I was able to produce a program with the structure you can see in this image (displayed using PEBrowse64 Professional, a static-analyzer you can download from my website's software page):

Image 1

As anyone with some knowledge of Portable Executable files and experience investigating unknown executables can see, the program structure looks a bit odd - no import directory or imports list - not even NTDLL - and some missing sections, e.g., .reloc. Launching the original would produce a simple message-box displaying "Ok". But it required some ingenuity to reach this result. Loading the needed support DLLs and accessing their APIs meant developing code without the usual LoadLibrary, GetProcAddress mechanisms. Adding to my self imposed challenge, I decided to add to the code base some of what I had seen in previous projects, i.e., deliberate obfuscation of code that would defeat any attempts at static analysis. Also, these obfuscated programs introduced tricks designed to thwart debuggers and any other tools that could be employed "to see what was going on." This led to the introduction of structured exception handling, which meant I now had to abandon the goal of no import references in Simplest.

Image 2

Along with the exception handling support routines from Kernel32 (having little desire to create my own) and the reference to CreateProcessW, note the presence of the mysterious binary resource, "BIN" and the addition of several more directories. As an aside, I resisted at this point changing the name of the program to- Simple.EXE.

Foo.exe

Before plunging into the innards of Simplest, let us first take a brief tour of the executable Foo.exe embedded in the binary resource, "BIN" (and found in the separate Foo project and source file, Foo.cpp). Foo was initially generated by the Visual Studio wizard to produce a program containing a MessageBox call that would display either "Okay" or "Fail" depending on a simple anti-debugging trick - Was the program launched independently (presumably by extracting or saving the binary resource after an earlier reversing session) or was it launched by the parent program, Simplest? Two sequences of calls to Toolhelp32 functions determine the parent process and return a BOOL value. Although not very sophisticated, this code and the entire program, Foo, are stand-ins for more complicated ideas needing obfuscation, such as defending copy-protection, hiding proprietary algorithms, or shielding secret code/program defences. Producing "Okay" inside of Foo would signify the defeat of the protection code, while "Fail" meant that the code was not successfully reversed.

SimplestWithSpeedBumps Organization

Simplest's (or SimplestWithSpeedBumps) design goal is a bit "different". That is to say that launching Simplest outside of a debugger will result in the creation of the Foo process and the display of the message-box with the word, "Fail". However, starting Simplest in a debug session will end in a program crash or (after successfully navigating the tricks and traps of the program) launch the Foo program and display the word, "Okay". (The -WithSpeedBumps suffix is merely a whimsical idea acknowledging my objective of slowing down a reversing guru.)

The program structure for Simplest is fairly straightforward, though more complicated than what one usually sees in a normal C++ program. There is supporting code found in three separate source code files: SimplestPESupport, SimplestCRT, and SimplestAntiDebug. The first, SimplestPESupport, contains implementations for the routines, my_GetModuleHandle, my_GetProcAddress, and my_GetProcAddressEx - all replacements for what you will find in Kernel32's APIs. These functions in part rely upon locating the address to the Program Environment Block, or PEB, and its reference to the address of the loader table (whose structure definition and description can be found in many places out on the internet). SimplestCRT's role answers requests for string comparisons and lengths. SimplestAntiDebug houses three anti-debugging tricks, all designed to detect the presence of a debugger in the process.

There is a "bridging" layer that assists in connecting the C++ code with some obfuscation code written in IA64 assembly language. One of the things I discovered while writing the code was that Visual Studio dropped its support for inline assembler instructions, i.e., the reserved token, _asm, at some point, and, thus, forced code like this to be contained in a separate source file (you may need to change the directory pointer in the project to match the location of the assembler found on your system). There are also a series of callbacks in the assembler source used to transfer control back to the C++ routines doing the "heavy lifting". These callbacks were purposefully written to be repetitive and boring (except for one!) with the goal of adding to the obfuscation.

Finally, the C++ layer, as stated before, performs the heavy lifting, e.g., extracting the Foo program from the resource section, creating and writing the temporary, independent file, calling a create process API, deleting the temporary file, and, finally, cleaning up by issuing calls to CloseHandle. While perusing the source code here, you may be tempted/inspired by some of the techniques to add more obstacles. Although the code does not look efficient, keep in mind that the purpose is to confuse the person debugging the code and that most of this code will only execute once.

SimplestWithSpeedBumps Obfuscation

Now, we can get to the heart of this article - code obfuscation and the ideas behind it. The main entry-point "gets our feet wet" and "sets the table". Right out of the starting gate, the code calls a routine called get_peb - notice there is no WinMainCRTStartup or other similar code. Stepping into the routine with a debugger or carefully analyzing the instructions will show you that the following is what is executed.

00007FF7`544B3D0B  CALL 0x00007FF7544B57D0 - (Simplest.exe!get_peb)
00007FF7`544B57D0  PUSH RAX
00007FF7`544B57D1  NEG RCX
00007FF7`544B57D4  CALL 0x00007FF7544B57D9 - (Simplest.exe!get_peb + 0x9)
00007FF7`544B57D9  POP RAX
00007FF7`544B57DA  IMUL RAX,RAX,0x3
00007FF7`544B57DE  CALL 0x00007FF7544B57E7 - (Simplest.exe!get_peb + 0x17)
00007FF7`544B57E7  POP RAX
00007FF7`544B57E8  NOP 
00007FF7`544B57E9  JMP 0x00007FF7544B5808
00007FF7`544B5808  CALL 0x00007FF7544B5802 - (Simplest.exe!get_peb + 0x32)
00007FF7`544B5802  POP RAX
00007FF7`544B5803  CALL 0x00007FF7544B57FC - (Simplest.exe!get_peb + 0x2C)
00007FF7`544B57FC  POP RAX
00007FF7`544B57FD  CALL 0x00007FF7544B57F9 - (Simplest.exe!get_peb + 0x29)
00007FF7`544B57F9  POP RAX
00007FF7`544B57FA  JMP 0x00007FF7544B580D
00007FF7`544B580D  POP RAX                 (see 00007FF7`544B57D0)
00007FF7`544B580E  NEG RCX
00007FF7`544B5811  MOV RAX,RSI
00007FF7`544B5814  PUSH RDX
00007FF7`544B5815  MOV RDX,RAX
00007FF7`544B5818  NEG RAX
00007FF7`544B581B  IMUL RAX,RAX,0x3
00007FF7`544B581F  POP RAX                 (see 00007FF7`544B5814)
00007FF7`544B5820  MOV RAX,R8   <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
00007FF7`544B5823  RET 

Most of the instructions are nonsense and, except for the careful balancing of pushes and pops on the stack, the only meaningful instruction is the one before the return, i.e., returning the contents of R8. Obtaining the address to the PEB allows later calls to my_GetModuleHandle, etc. do their thing. The choice of R8 is practically the only fragile assumption in all that follows - the assignment of the PEB value and where to look at program startup has already changed from prior versions of Windows.

Besides the bogus reference to CreateProcess, the next items are an access violation and all of the remaining code - contained inside of an exception handler! After generating the initial access violation (any severe error will do) and "handling it", any further unhandled exceptions will result in the program crashing. This creates "tension," the first of several elements that should be the design objectives in creating obfuscated code. Here are some other elements:

  • tension
  • misdirection/deception
  • fatigue/no shortcuts
  • boredom
  • eliminating strings and other meaningful bits of data, and
  • hiding meaningful values in plain-sight.

The presence of these elements can be found throughout the source-code to Simplest. The tension introduced by the initial exception is increased by numerous checks in the code for things like the presence of a debugger and debugger breakpoints all of which will generate, if missed or not recognized, another access violation - this was originally a call to callback0 but then inlined to avoid NOP-ing (modifying the code during the debug session) the routine away. Any of these will eventually crash the program. Examples of misdirection or deception can be found in the initial bogus CreateProcess call but also in the checks for breakpoints on LdrUnloadDll, NtCreateUserProcess, and other process creation APIs (mostly to thwart those who know a second process is created and are trying to shortcut the reversing exercise by guessing where the process will be created). Fatigue sets in while stepping through seemingly meaningless code and some lengthy loops found in DoCreateProcess. Or, it can come about as a result of missing one of the register value changes needed while debugging, seeing the program crash, and then having to start at the beginning again. The dull sameness and boring appearance of the callbackX routines not only serve to warn of an impending transition to or from C++ code, but also to reserve large stack areas, perhaps large enough to remove easily visible clues among debris of stack garbage. Only one of these allocates a different stack area, but that was added only after fixing a real crash inside of NTDLL due stack alignment - see the code comment for more information. An attempt has been made to avoid the use of strings until the last possible moment by assigning, character by character (sometimes in random order) the name of the API service routines used by Simplest. And, when an address is returned by my_GetProcAddressEx, in order to avoid early detection, the address value is negated to hide it in "plain-sight".

Debugging/Reversing the Code

While developing Simplest, I almost exclusively used my own debugger, PEBrowseDbg64 Interactive (available from my website's software page). Indeed, some of the areas where I think my debugger is superior to others, e.g., displaying context whenever and wherever possible, intelligent disassembly of code, etc., provided inspiration on ways to further obfuscate the code. In reality, most any heavy-duty debugger should do the trick, i.e., it should support register/memory content manipulation and resetting/changing the execution path of a program. I have not attempted to debug the program though with Visual Studio, so I cannot say how successful that exercise might be - YMMV.

Closing Thoughts or How to Improve the Obfuscated Code

In addition to suggestions and ideas found as comments in the source-code, there are almost unlimited ways one can find to slow down others from stepping through the code and discovering its secrets. First and foremost and probably the easiest - increasing the volume of the noise in the code like adding more spurious and imaginative instructions and sequences. Some of these will require a more than passing knowledge of assembly language - like how the addition of a few bytes can result in the complete jumbling of a code sequence - the HDSpoof article contains references to some aesthetically pleasing examples. This technique interferes with all but the most determined static analysis almost forcing the use of a debugger. Code self-modification, like simply negating a large section of code and then reversing the process before execution, is another possibility. Complicating the startup of the entire process, though difficult to debug, would be an inviting thought. For example, Simplest could launch another copy of itself and test whether the code was the first or second instance and follow one code path or another as needed.  And testing a debugger's capability to debug different PE types, one could create 32-bit and 64-bit versions of Simplest with the 64-bit launching the 32-bit and checking for bitness to determine this critical path in the code.  And, there are other ways to check if code is being debugged that could be added as more anti-debugging tricks. In the final analysis, you must weigh the additional effort and reward against the fact that your scheme can and will be decoded by any determined reverse engineer.

With this article, I think I have stripped away some of the mystery and danger of working with obfuscated code. If not inspirational for finding new ideas, tricks, and traps on your own, I hope to have convinced you of my opening gambit:

If it can be debugged, it can be reversed!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
Generala link from this author Pin
Southmountain10-Apr-18 14:54
Southmountain10-Apr-18 14:54 
googled and find this link to save your time:
HDSpoof tutorial
diligent hands rule....

Generaldo you still have your tutorials available? Pin
Southmountain9-Feb-18 7:34
Southmountain9-Feb-18 7:34 
Questioncan this be used to obfuscate .NET software? Pin
Southmountain18-Mar-17 10:03
Southmountain18-Mar-17 10:03 
AnswerRe: can this be used to obfuscate .NET software? Pin
Russ Osterlund21-Mar-17 4:07
Russ Osterlund21-Mar-17 4:07 
GeneralRe: can this be used to obfuscate .NET software? Pin
Southmountain25-Aug-18 15:28
Southmountain25-Aug-18 15:28 
QuestionBuild on VS2015 Pin
Member 1033980812-Dec-16 21:55
professionalMember 1033980812-Dec-16 21:55 
AnswerRe: Build on VS2015 Pin
Russ Osterlund13-Dec-16 3:16
Russ Osterlund13-Dec-16 3:16 
Questionsource code seems to be missing... Pin
poltrone2-Dec-16 23:45
poltrone2-Dec-16 23:45 
AnswerRe: source code seems to be missing... Pin
Russ Osterlund3-Dec-16 3:19
Russ Osterlund3-Dec-16 3:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.