SSTIC2017 Deobfuscation of VM Based Software Protection



Comments



Description

Playing with Binary AnalysisDeobfuscation of VM based software protection Jonathan Salwan, Sébastien Bardin and Marie-Laure Potet SSTIC 2017 Topic ● Binary protection ○ Virtualization-based software protection ● Automatic deobfuscation, our approach ● The Tigress challenges ● Limitations ● What next? ● Conclusion Binary Protection Binary Protection ● Goal ○ Turn your program to make it hard to analyze ■ Protect your software against reverse engineering P Transformation P’ . .Binary Protection ● There are several kinds of protection ○ [..] ○ Virtualization-based software protection . Binary Protection .Virtualization ● Also called Virtual Machine (VM) ● Virtualize a custom Instruction Set Architecture (ISA) . } . return (h == 0x9e3779b97f4a7c13).Binary Protection .Virtualization ● Also called Virtual Machine (VM) ● Virtualize a custom Instruction Set Architecture (ISA) long secret(long x) { [transformations on x] return x. } bool auth(long user_input) { long h = secret(user_input). } .Binary Protection .Custom ISA return x.Virtualization ● Also called Virtual Machine (VM) ● Virtualize a custom Instruction Set Architecture (ISA) long secret(long x) { [transformations on x] Bytecodes . return (h == 0x9e3779b97f4a7c13). } bool auth(long user_input) { long h = secret(user_input). user_input).Binary Protection . } bool auth(long user_input) { long h = 0. &h.Custom ISA return x. } . return (h == 0x9e3779b97f4a7c13).Virtualization ● Also called Virtual Machine (VM) ● Virtualize a custom Instruction Set Architecture (ISA) long secret(long x) { [transformations on x] Bytecodes . VM(opcodes. Binary Protection .Virtualization ● Also called Virtual Machine (VM) ● Virtualize a custom Instruction Set Architecture (ISA) Removed long secret(long x) { [transformations on x] Bytecodes . VM(opcodes. } . } bool auth(long user_input) { long h = 0. return (h == 0x9e3779b97f4a7c13). user_input).Custom ISA return x. &h. Go to the next instruction or terminate . Execute the semantics Terminator e.Binary Protection . Decode the opcode .VM Design (a simple one) Fetching Decoding Dispatcher ● Close to a CPU design Operator 1 Operator 2 Operator 3 a.mnemonic / operands c. Dispatch to the appropriate semantics handler d. Fetch the opcode pointed via the virtual IP b. Fetch the opcode pointed via the virtual IP b.VM Design (a simple one) Fetching long secret(long x) { [transformations on x] Decoding Bytecodes .mnemonic / operands c.Custom ISA return x. Execute the semantics Terminator e. Decode the opcode . Dispatch to the appropriate semantics handler d. } Dispatcher ● Close to a CPU design Operator 1 Operator 2 Operator 3 a. Go to the next instruction or terminate .Binary Protection . Binary Protection .VM Design (a simple one) Fetching Bytecodes .Custom ISA Decoding Fetch : Dispatcher Decode : Code : Operator 1 Operator 2 Operator 3 Terminator . Custom ISA Decoding Fetch : 0xaabbccdd Dispatcher Decode : Code : Operator 1 Operator 2 Operator 3 Terminator .Binary Protection .VM Design (a simple one) Fetching Bytecodes . Binary Protection .VM Design (a simple one) Fetching Bytecodes .Custom ISA Decoding Fetch : 0xaabbccdd Dispatcher Decode : mov r/r Code : Operator 1 Operator 2 Operator 3 Terminator . Custom ISA Decoding Fetch : 0xaabbccdd Dispatcher Decode : mov r/r Code : Operator 1 Operator 2 Operator 3 Terminator .Binary Protection .VM Design (a simple one) Fetching Bytecodes . Binary Protection .Custom ISA Decoding Fetch : 0xaabbccdd Dispatcher Decode : mov r/r Code : mov r1.VM Design (a simple one) Fetching Bytecodes . input Operator 1 Operator 2 Operator 3 Terminator . input Operator 1 Operator 2 Operator 3 Terminator .VM Design (a simple one) Fetching Bytecodes .Custom ISA Decoding Fetch : Dispatcher Decode : Code : mov r1.Binary Protection . input Operator 1 Operator 2 Operator 3 Terminator .Binary Protection .Custom ISA Decoding Fetch : 0x11223344 Dispatcher Decode : Code : mov r1.VM Design (a simple one) Fetching Bytecodes . input Operator 1 Operator 2 Operator 3 Terminator .Custom ISA Decoding Fetch : 0x11223344 Dispatcher Decode : mov r/i Code : mov r1.VM Design (a simple one) Fetching Bytecodes .Binary Protection . VM Design (a simple one) Fetching Bytecodes .Binary Protection . input Operator 1 Operator 2 Operator 3 Terminator .Custom ISA Decoding Fetch : 0x11223344 Dispatcher Decode : mov r/i Code : mov r1. input mov r2.Binary Protection . 2 Operator 1 Operator 2 Operator 3 Terminator .VM Design (a simple one) Fetching Bytecodes .Custom ISA Decoding Fetch : 0x11223344 Dispatcher Decode : mov r/i Code : mov r1. Binary Protection - VM Design (a simple one) Fetching Bytecodes - Custom ISA Decoding Fetch : Dispatcher Decode : Code : mov r1, input mov r2, 2 Operator 1 Operator 2 Operator 3 Terminator Binary Protection - VM Design (a simple one) Fetching Bytecodes - Custom ISA Decoding Fetch : 0x5577aabb Dispatcher Decode : Code : mov r1, input mov r2, 2 Operator 1 Operator 2 Operator 3 Terminator Binary Protection - VM Design (a simple one) Fetching Bytecodes - Custom ISA Decoding Fetch : 0x5577aabb Dispatcher Decode : mul r/r/r Code : mov r1, input mov r2, 2 Operator 1 Operator 2 Operator 3 Terminator VM Design (a simple one) Fetching Bytecodes . 2 Operator 1 Operator 2 Operator 3 Terminator .Custom ISA Decoding Fetch : 0x5577aabb Dispatcher Decode : mul r/r/r Code : mov r1.Binary Protection . input mov r2. r1.Custom ISA Decoding Fetch : 0x5577aabb Dispatcher Decode : mul r/r/r Code : mov r1.VM Design (a simple one) Fetching Bytecodes . input mov r2.Binary Protection . 2 Operator 1 Operator 2 Operator 3 mul r3. r2 Terminator . VM Design (a simple one) Fetching Bytecodes . 2 Operator 1 Operator 2 Operator 3 mul r3. r2 Terminator .Binary Protection .Custom ISA Decoding Fetch : Dispatcher Decode : Code : mov r1. input mov r2. r1. Custom ISA Decoding Fetch : 0x1337dead Dispatcher Decode : Code : mov r1. input mov r2. r2 Terminator .Binary Protection .VM Design (a simple one) Fetching Bytecodes . r1. 2 Operator 1 Operator 2 Operator 3 mul r3. Custom ISA Decoding Fetch : 0x1337dead Dispatcher Decode : ret r Code : mov r1. input mov r2.VM Design (a simple one) Fetching Bytecodes . r1. r2 Terminator . 2 Operator 1 Operator 2 Operator 3 mul r3.Binary Protection . r1. 2 Operator 1 Operator 2 Operator 3 mul r3.Custom ISA Decoding Fetch : 0x1337dead Dispatcher Decode : ret r Code : mov r1.VM Design (a simple one) Fetching Bytecodes .Binary Protection . r2 Terminator . input mov r2. input mov r2. r2 ret r3 Terminator . 2 Operator 1 Operator 2 Operator 3 mul r3.Custom ISA Decoding Fetch : 0x1337dead Dispatcher Decode : ret r Code : mov r1. r1.VM Design (a simple one) Fetching Bytecodes .Binary Protection . r2 ret r3 Terminator .Binary Protection .Custom ISA Decoding Fetch : Dispatcher Decode : Code : mov r1.VM Design (a simple one) Fetching Bytecodes . input mov r2. 2 Operator 1 Operator 2 Operator 3 mul r3. r1. Virtual Machine .Standard Reverse Process ● Reverse and understand the virtual machine’s structure / components ● Create a disassembler and then reverse the bytecodes ? Bytecodes ? Create a disassembler ? Disassembly ? ? ? ? Start Reversing . Our Approach Automatic Deobfuscation . Automatic Deobfuscation ● We don’t care about reconstructing a disassembler ● Our goal: .Our Approach . Our Approach .Automatic Deobfuscation ● We don’t care about reconstructing a disassembler ● Our goal: ○ Directly reconstruct a devirtualized binary from the obfuscated one . Our Approach .Automatic Deobfuscation ● We don’t care about reconstructing a disassembler ● Our goal: ○ Directly reconstruct a devirtualized binary from the obfuscated one ○ The crafted binary must have a control flow graph close to the original one . Our Approach .Automatic Deobfuscation ● We don’t care about reconstructing a disassembler ● Our goal: ○ Directly reconstruct a devirtualized binary from the obfuscated one ○ The crafted binary must have a control flow graph close to the original one ○ The crafted binary must have instructions close to the original ones . user_input). return (h == 0x9e3779b97f4a7c13). } FROM bool auth(long user_input) { long h = 0.Automatic Deobfuscation Removed long secret(long x) { [transformations on x] Bytecodes return x. VM(opcodes. &h. } .Our Approach . Automatic Deobfuscation TO Obfuscated Traces .Our Approach . Automatic Deobfuscation THEN FROM Simplified Traces .Our Approach . } . } TO bool auth(long user_input) { long h = secret(user_input).Automatic Deobfuscation long secret_prime(long x) { [transformations on x] return x. return (h == 0x9e3779b97f4a7c13).Our Approach . Automatic Deobfuscation long secret_prime(long x) { Where secret_prime() is semantically [transformations on x] identical to the original code but without return x. } .Our Approach . return (h == 0x9e3779b97f4a7c13). the process of the virtual machine } TO bool auth(long user_input) { long h = secret(user_input). it must execute the original instruction (or its equivalent.g: div / shr) Dispatcher Operator 1 Operator 2 Operator 3 Terminator . at the end. e.Our Approach .Important fact ● Our approach is based on an important fact: Fetching ○ trace P' = instr P + instr VM Decoding Whatever the process of the VM execution. Our Approach . it must execute the original instruction (or its equivalent.g: div / shr) Dispatcher Operator 1 Operator 2 Operator 3 Terminator . e.Important fact ● Our approach is based on an important fact: Fetching ○ trace P' = instr P + instr VM Decoding Whatever the process of the VM execution. at the end. Recompile with compiler optimizations a.Our Approach . Keep a semantics transition between these isolated instructions using a SE 3. Transform our representation into the LLVM one a. Concretize everything which is not related to these instructions (discard VM) 4. Isolate these pertinent instructions using a taint analysis along a trace 2. Compacted program (folding program) . Unfolding program (tree-like program) 6. Perform a code coverage to recover the original CFG (iterate on more traces) 5.Overview 1. Step 1: Taint Analysis ● Track the input(s) of the function into the process of the VM execution long secret(long x) { [transformations on x] Custom ISA return x. &h. return (h == 0x9e3779b97f4a7c13). } bool auth(long user_input) { Tainted long h = 0. } . VM(opcodes. user_input). qword ptr [rdx] mov qword ptr [rax].. rcx long h = 0. rax } mov rdx. &h. rbx return x. mov qword ptr [rdx].Step 1: Taint Analysis ● Track the input(s) of the function into the process of the VM execution ● Pertinent instructions isolated mov rsi.] return (h == 0x9e3779b97f4a7c13). qword ptr [rax] xor rax. cl [transformations on x] Custom ISA mov rax.. } . rsi shr rbx. rax VM(opcodes. [. rdx bool auth(long user_input) { Tainted mov rcx. user_input). qword ptr [rax] long secret(long x) { mov rbx. mov qword ptr [rdx]. rax [.Step 1: Taint Analysis ● Track the input(s) of the function into the process of the VM execution ● Pertinent instructions isolated mov rsi. rax mov rdx. rsi shr rbx. cl mov rax. rdx mov rcx. rbx mov qword ptr [rdx]. qword ptr [rax] mov rbx. rcx mov qword ptr [rdx]... qword ptr [rdx] mov qword ptr [rax].] . qword ptr [rax] xor rax. qword ptr [rax] xor rax.] . rsi shr rbx. qword ptr [rax] mov rbx.. rax mov rdx.. rbx mov qword ptr [rdx]. rdx mov rcx.Step 1: Taint Analysis ● Track the input(s) of the function into the process of the VM execution ● Pertinent instructions isolated ○ Now. the problem is that this sub-trace has no sense without the VM’s state mov rsi. qword ptr [rdx] mov qword ptr [rax]. rcx mov qword ptr [rdx]. rax [. cl mov rax. rdx mov rcx. rax mov rdx. qword ptr [rdx] mov qword ptr [rax]. rsi shr rbx. qword ptr [rax] mov rbx.Step 2: Symbolic Representation ● A symbolic representation is used to provide a sense to these tainted instructions mov rsi. qword ptr [rax] xor rax. rcx mov qword ptr [rdx]. cl mov rax. rax [. rbx mov qword ptr [rdx].] ... . rdx (_ bv63 64) ) mov rcx. rbx (bvlshr mov qword ptr [rdx].. rax ((_ extract 63 0) ref!243) (bvand mov rdx.] . qword ptr [rax] ref!228 := SymVar_0 mov rbx. rcx ) mov qword ptr [rdx]. qword ptr [rdx] ((_ zero_extend 56) (_ bv5 8)) mov qword ptr [rax]. cl ref!1131 := ( mov rax..] [. rax ref!1334 := (((_ extract 63 0) ref!1131)) [..Step 2: Symbolic Representation ● A symbolic representation is used to provide a sense to these tainted instructions Symbolic representation of a given path mov rsi. rsi ref!243 := (((_ extract 63 0) ref!228)) shr rbx. qword ptr [rax] ) xor rax. x 9 x 1 x π + π 7 2 5 3 4 .Step 3: Concretization Policy ● Input(s) of the function are both tainted and symbolized ● In order to remove the process of the VM execution ○ We concretize every LOAD and STORE ○ We concretize everything which is not related to the input(s) ■ Untainted values are concretized + + . Discovering Paths ● In order to find the original CFG. we must discover its paths ○ SMT solver is used onto our symbolic representation .Step 4: Code Coverage . From a Paths Tree to a CFG? ● Two approaches ○ Custom algorithm (not trivial) ○ LLVM optimizations (-02) (the lazy way) .Step 4: Code Coverage . com/quarkslab/arybo .Step 5: Transformation to LLVM-IR ● In order to reconstruct a valid binary and apply paths merging ○ Move from our representation to the LLVM-IR ○ Arybo as crossroad Medusa Optimizations Binary code Triton AST Arybo IR LLVM-IR Binary code Miasm Sspam Bit-blasting https://github. Step 6: Recompilation ● Based on the LLVM-IR we are able to: ○ Recompile a valid (and deobfuscated) code ○ Move to another architecture ○ Apply LLVM’s analysis and optimizations . The Tigress Challenges . The Tigress Challenges ● Tigress ○ C Diversifier/Obfuscator ○ http://tigress.cs.arizona.edu ● Challenges ○ 35 VMs ○ f(x) → x’ ■ Function f is virtualized and we have to find the transformation algorithm . The Tigress Challenges . The Tigress Challenges . Limitations . asynchronous codes… ● Currently. IPC.Limitations ● Our limitations are those of the symbolic execution ○ Code coverage of the virtualized function ■ Complexity of expressions ○ Multi-threading. we also have these limitations: ○ Loops reconstruction ○ Arrays reconstruction ■ Due to our concretization policy ○ Calls graph reconstruction . What Next? . What Next? ● Be able to determine on what designs of VM this approach works and doesn't ● Tests onto others protections . What Next? ● Be able to determine on what designs of VM this approach works and doesn't ● Tests onto others protections ○ Teasing: It’s working well on VMProtect . Demo . Conclusion . dispatcher. etc ● LLVM optimizations ○ Powerful for paths merging (and code simplification) ● Worked well for the Tigress protection ○ They (Tigress team) released a new protection ■ Code obfuscation against symbolic execution attacks ACSAC '16 Recommendation: Protections should also be applied onto the custom ISA instead of the process of the VM execution . vpc. independent from custom opcode.Conclusion ● Dynamic Taint Analysis + DSE ○ Powerful against VM based protections simplification ■ Automatic. com/JonathanSalwan/Tigress_protection . Thanks .Questions? https://triton.com https://github.quarkslab. Marion Videau ○ Review. Fred Raynal.Acknowledgements ● Adrien Guinet ○ Arybo support ● Romain Thomas ○ Ideas around path merging ● Gabriel Campana. proofreading .
Copyright © 2024 DOKUMEN.SITE Inc.