Everybody be cool, this is a roppery!

zynamics GmbH
zynamics GmbHzynamics GmbH
Everybody be cool, this is a roppery!


           Vincenzo Iozzo (vincenzo.iozzo@zynamics.com) zynamics GmbH
              Tim Kornau (tim.kornau@zynamics.com) zynamics GmbH
 Ralf-Philipp Weinmann (ralf-philipp.weinmann@uni.lu) Université du Luxembourg
                                BlackHat Vegas 2010
Overview

1. Introduction
2. Gentle overview
3. Finding gadgets
4. Compile gadgets
5. Some fancy demos
6. Further work
Introduction



   Exploitation with non-
executable pages is not much
             fun
But we have funny ideas



    Exploitation with non-
executable pages is not much
fun.. Unless you use “return-
   oriented programming”
Gentle introduction
But life is hard


Code signing
                       Sandboxing


  ROP
                    We were lucky!
Code Signing


Used to make sure that only signed
(Apple verified) binaries can be executed

• If a page has write permissions it can’t
have executable permissions
• No executable pages on the heap
• Only signed pages can be executed
ROP

       Instructions           Variables for the gadget

     return sequence         Address of the next gadget

       Instructions           Variables for the gadget

     return sequence         Address of the next gadget

       Instructions           Variables for the gadget

     return sequence         Address of the next gadget

       Instructions           Variables for the gadget

     return sequence         Address of the next gadget


Instruction sequences           Attacker controlled
within the attacked binary      memory
ROP - Workflow



1. Find the gadgets

2. Chain them to form a payload

3. Test the payload on your target
Finding Gadgets Overview

1. Goal definition
2. Motivation
3. Strategy
4. Algorithms
5. Results
6. Further improvement
Goal definition



 Build an algorithm which is
 capable of locating gadgets
    within a given binary
automatically without major
         side effects.
Motivation I




Little spirits need access to a wide range of devices.
Because what is a device without a spirit?
Motivation II

We want to be able to execute our code:
• in the presents of non-executable protection (AKA
NX bit)

• when code signing of binaries is enabled.

• but we do not aim at ASLR.
Strategy I


• Build a program from parts of another program
• These parts are named gadgets
• A gadget is a sequence of (useable) instructions
• Gadget combination must be possible
   • end in a “free-branch”
• Gadgets must provide a useful operation
   • for example A + B
Strategy II

• The subset of useful gadgets must be locatable in
the set of all gadgets
• Only the “simplest” gadget for an operation
should be used
• Side effects of gadgets must be near to zero to
avoid destroying results of previous executed code
sequences.
• Use the REIL meta language to be platform
independent.
Strategy III
A small introduction to the REIL meta language
• small RISC instruction set (17 instructions)
   • Arithmetic instructions (ADD, SUB, MUL,   DIV, MOD, BSH)
   • Bitwise instructions (AND, OR, XOR)
   • Logical instructions (BISZ, JCC)
   • Data transfer instructions (LDM, STM, STR)
   • Other instructions (NOP, UNDEF, UNKN)

• register machine
• unlimited number of temp registers
• side effect free
• no exceptions, floating point, 64Bit, ..
Algorithms



• Stage I → Collect data from the binary

• Stage II → Merge the collected data

• Stage III → Locate useful gadgets in merged data
Algorithms stage I (I)

Goal of the stage I algorithms:
  • Collect data from the binary
     1. Extract expression trees from native
         instructions
                                        A
     2. Extract path information

                                  B
          +
                                               D
                                  C
   R0          15
                                        E
Algorithms stage I (II)

Details of the stage I algorithms:
1. Expression tree extraction
   • Handlers for each possible REIL instruction
     1. Most of the handlers are simple transformations
     2. STM and JCC need to be treated specially
2. Path extraction
   • Path is extracted in reverse control flow order
             +                 *
  *
                                   OP
                        BISZ
        OP
COND
                 COND
Algorithms stage II (I)

Goal of the stage II algorithms:
  • Merge the collected data from stage I
     1. Combine the expression trees for single
         native instructions along a path
     2. Determine jump conditions on the path
     3. Simplify the result
Algorithms stage II (II)

Details of the stage II algorithms:
  • Combine the expression trees for single native
  instructions along a path
1.   0x00000001 ADD R0, R1, R2
2.   0x00000002 STR R0, R4
3.   0x00000003 LDMFD SP! {R4,LR}
4.   0x00000004 BX LR
Algorithms stage II (III)

Details of the stage II algorithms:
  • Determine jump conditions on the path:
                                                         Z FLAG MUST BE FALSE

1.   0x00000001 SOME INSTRUCTION
2.   0x00000002 BEQ 0xADDRESS
                                                         Generate condition tree
3.   0x00000003 SOME INSTRUCTION
4.   0x00000004 SOME INSTRUCTION



     • Simplify the result:
       R0 = ((((((R2+4)+4)+4)+4) OR 0) AND 0xFFFFFFFF)
       R0 = R2+16
Algorithms stage III (I)

Goal of the stage III algorithms:
  • Search for useful gadgets in the merged data
      Use a tree match handler for each
         operation.

  • Select the simplest gadget for each operation
      Use a complexity value to determine the
        gadget which is least complex. (side-
        effects)
Algorithms stage III (II)

Details of the stage III algorithms:
  • Search for useful gadgets in the merged data

                    Trees of a gadget candidate
                    are compared to the tree of a
                    specific operation.
                    Can you spot the match ?
Algorithms stage III (III)

Details of the stage III algorithms:
  • Select the simplest gadget for each operation
                                     There are in most cases
                                     more instruction
                                     sequences which
                                     provide a specific
                                     operation. The overall
                                     complexity of all trees
                                     is used to determine
                                     which gadget is the
                                     simplest.
Results of gadget finding


• Algorithms for automatic return-oriented
programming gadget search are possible.
• The described algorithms automatically find the
necessary parts to build the return-oriented
program.
• Searching for gadgets is not only platform but also
very compiler dependent.
So what is next


After automatic gadget extraction
we need a simple and effective way
        to combine them.
Chaining gadgets
Chaining gadgets



 … by hand is like playing Tetris
 With very ugly blocks

 Each gadget set defines custom ISA

 We have better scores that at...
Chaining gadgets
Chaining gadgets



 Hence we have decided to
   bring in some help...
The Wolf



 A ROP compiler for gadget
sets with side-effects
 Very basic language

 Allows for easy ROPperies on

ARM devices
Living with side-effects

 “allowread”: specifies readable memory
ranges
 “allowcorrupt”: expendable memory

ranges
 [corruption may occur here]

 protect: registers must stay invariant

 [SP and PC implicitly guarded]
Statements

 (multi-)assignment
 Conditional goto statement

 Call statement (calling lib functions)

 Data definitions

 Labels for data/code
Multi-assignment

     Example from PWN2OWN payload:

(r0, r1, r2) <<_| (mem[sockloc], sin, SIZE_SIN)

targets        memory read         constant

assignment operator         data reference
Loops
                                      define label for
label(clear_loop)                     conditional jump
r1 = 256
(mem[r0], r2, r1) <<_| (0, (3*r1) & 255, r1-1)
r0 = r0+4
gotoifnz(r1, clear_loop)



RHS may contain arithmetic-logical
calculations:
{+,-,*,/, %, ^, |, &, <<, >>}
Hired help: STP



 Mr. Wolf is a high-level problem solver:
he likes to delegate
 Menial work: let someone else do it

 In this case STP

 [Simple Theorem Prover]
What is STP?

 Constraint solver for problems involving bit-
vectors and arrays
 Open-source, written by Vijay Ganesh

 Used for model-checking, theorem proving,

EXE, etc.
 Gives Boolean answer whether formula is

satisfiable & assignment if it is
STP formulae

Just a bunch of assertions in QF_ABV

Simple example:

 x0 : BITVECTOR(4);
 ...

 x9 : BITVECTOR(4);

 ASSERT (BVPLUS(4,BVMULT(4,x0, 0hex6), 0hex0, 0hex0,

      BVMULT(4,x3, 0hex7), BVMULT(4,x4, 0hex4),
      BVMULT(4,x5, 0hex6), BVMULT(4,x6, 0hex4),
      0hex0, 0hex0, BVMULT(4,x9, 0hex8),0hex0) = 0hex7);
High-level algorithm


For multi-assignments:

1.   Find all gadgets assigning to targets
2.   Verify constraints for each
     (protect/memread/memcorrupt)
3.   Find all gadgets for expressions on RHS
4.   Chain expression gadgets
5.   Connect LHS and RHS
Notes on chaining algorithm

 Chaining for arithmetic/logical expressions
may use registers/memory locations for
temporary results
 Multi-assignments give us freedom

 Algorithm sometimes may fail because

constraints cannot be satisfied [insufficient
gadgets]
K got the payload, now?


You could test it on a jailbroken phone

• Does not match reality!
• No code signing for instance
• Still an option if exploit reliability is not
your primary concern
K got the payload, now?


You could test it on a developer phone

• Have a small application to reproduce a
“ROP scenario”
• Depending on the application you’re
targeting the sandbox policy is different
• Still closer to reality
Simple plan


• Allocate a buffer on the heap
• Fill the buffer with the shellcode
• Point the stack pointer to the beginning
of the attacker controlled memory
• Execute the payload
• Restore
Future work


• Port to other platforms (eg: x86)
• Abstract language to describe gadgets
• Try to avoid “un-decidable” constraints
• Make it more flexible to help when
ASLR is in place
Thanks for your time




        Questions?
1 of 46

Recommended

Platform-independent static binary code analysis using a meta-assembly language by
Platform-independent static binary code analysis using a meta-assembly languagePlatform-independent static binary code analysis using a meta-assembly language
Platform-independent static binary code analysis using a meta-assembly languagezynamics GmbH
613 views52 slides
Sstic 2015 detailed_version_triton_concolic_execution_frame_work_f_saudel_jsa... by
Sstic 2015 detailed_version_triton_concolic_execution_frame_work_f_saudel_jsa...Sstic 2015 detailed_version_triton_concolic_execution_frame_work_f_saudel_jsa...
Sstic 2015 detailed_version_triton_concolic_execution_frame_work_f_saudel_jsa...Jonathan Salwan
589 views58 slides
How Triton can help to reverse virtual machine based software protections by
How Triton can help to reverse virtual machine based software protectionsHow Triton can help to reverse virtual machine based software protections
How Triton can help to reverse virtual machine based software protectionsJonathan Salwan
415 views64 slides
Sioux Hot-or-Not: Functional programming: unlocking the real power of multi-c... by
Sioux Hot-or-Not: Functional programming: unlocking the real power of multi-c...Sioux Hot-or-Not: Functional programming: unlocking the real power of multi-c...
Sioux Hot-or-Not: Functional programming: unlocking the real power of multi-c...siouxhotornot
1.9K views74 slides
Everybody be cool, this is a ROPpery by
Everybody be cool, this is a ROPperyEverybody be cool, this is a ROPpery
Everybody be cool, this is a ROPperyVincenzo Iozzo
470 views47 slides
Generating Assertion Code from OCL: A Transformational Approach Based on Simi... by
Generating Assertion Code from OCL: A Transformational Approach Based on Simi...Generating Assertion Code from OCL: A Transformational Approach Based on Simi...
Generating Assertion Code from OCL: A Transformational Approach Based on Simi...Shinpei Hayashi
18.5K views23 slides

More Related Content

What's hot

Detecting Occurrences of Refactoring with Heuristic Search by
Detecting Occurrences of Refactoring with Heuristic SearchDetecting Occurrences of Refactoring with Heuristic Search
Detecting Occurrences of Refactoring with Heuristic SearchShinpei Hayashi
18.8K views19 slides
Al2ed chapter5 by
Al2ed chapter5Al2ed chapter5
Al2ed chapter5Abdullelah Al-Fahad
395 views52 slides
1 hour dive into Erlang/OTP by
1 hour dive into Erlang/OTP1 hour dive into Erlang/OTP
1 hour dive into Erlang/OTPJordi Llonch
3.2K views193 slides
Crash course in verilog by
Crash course in verilogCrash course in verilog
Crash course in verilogPantech ProLabs India Pvt Ltd
13.2K views87 slides
EXTENT-2016: Industry Practices of Advanced Program Analysis by
EXTENT-2016: Industry Practices of Advanced Program AnalysisEXTENT-2016: Industry Practices of Advanced Program Analysis
EXTENT-2016: Industry Practices of Advanced Program AnalysisIosif Itkin
1.6K views52 slides
Data types and Operators Continued by
Data types and Operators ContinuedData types and Operators Continued
Data types and Operators ContinuedMohamed Samy
3.9K views22 slides

What's hot(20)

Detecting Occurrences of Refactoring with Heuristic Search by Shinpei Hayashi
Detecting Occurrences of Refactoring with Heuristic SearchDetecting Occurrences of Refactoring with Heuristic Search
Detecting Occurrences of Refactoring with Heuristic Search
Shinpei Hayashi18.8K views
1 hour dive into Erlang/OTP by Jordi Llonch
1 hour dive into Erlang/OTP1 hour dive into Erlang/OTP
1 hour dive into Erlang/OTP
Jordi Llonch3.2K views
EXTENT-2016: Industry Practices of Advanced Program Analysis by Iosif Itkin
EXTENT-2016: Industry Practices of Advanced Program AnalysisEXTENT-2016: Industry Practices of Advanced Program Analysis
EXTENT-2016: Industry Practices of Advanced Program Analysis
Iosif Itkin1.6K views
Data types and Operators Continued by Mohamed Samy
Data types and Operators ContinuedData types and Operators Continued
Data types and Operators Continued
Mohamed Samy3.9K views
Kostis Sagonas: Cool Tools for Modern Erlang Program Developmen by Konstantin Sorokin
Kostis Sagonas: Cool Tools for Modern Erlang Program DevelopmenKostis Sagonas: Cool Tools for Modern Erlang Program Developmen
Kostis Sagonas: Cool Tools for Modern Erlang Program Developmen
Konstantin Sorokin3.4K views
45 aop-programming by daotuan85
45 aop-programming45 aop-programming
45 aop-programming
daotuan85533 views
P04 restricted boltzmann machines cvpr2012 deep learning methods for vision by zukun
P04 restricted boltzmann machines cvpr2012 deep learning methods for visionP04 restricted boltzmann machines cvpr2012 deep learning methods for vision
P04 restricted boltzmann machines cvpr2012 deep learning methods for vision
zukun6.9K views
14.jun.2012 by Tech_MX
14.jun.201214.jun.2012
14.jun.2012
Tech_MX388 views
Sentence-to-Code Traceability Recovery with Domain Ontologies by Shinpei Hayashi
Sentence-to-Code Traceability Recovery with Domain OntologiesSentence-to-Code Traceability Recovery with Domain Ontologies
Sentence-to-Code Traceability Recovery with Domain Ontologies
Shinpei Hayashi19.7K views
Bert pre_training_of_deep_bidirectional_transformers_for_language_understanding by ThyrixYang1
Bert  pre_training_of_deep_bidirectional_transformers_for_language_understandingBert  pre_training_of_deep_bidirectional_transformers_for_language_understanding
Bert pre_training_of_deep_bidirectional_transformers_for_language_understanding
ThyrixYang1224 views
Lect04 by Vin Voro
Lect04Lect04
Lect04
Vin Voro755 views
02 direct3 d_pipeline by Girish Ghate
02 direct3 d_pipeline02 direct3 d_pipeline
02 direct3 d_pipeline
Girish Ghate1.9K views
Lecture 11 semantic analysis 2 by Iffat Anjum
Lecture 11 semantic analysis 2Lecture 11 semantic analysis 2
Lecture 11 semantic analysis 2
Iffat Anjum6.2K views
BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding by Minh Quang-Nhat Pham
BERT: Pre-training of Deep Bidirectional Transformers for Language UnderstandingBERT: Pre-training of Deep Bidirectional Transformers for Language Understanding
BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding
Encryption basics by Kevin OBrien
Encryption basicsEncryption basics
Encryption basics
Kevin OBrien1.4K views
Programmable logic devices by ISMT College
Programmable logic devicesProgrammable logic devices
Programmable logic devices
ISMT College560 views

Similar to Everybody be cool, this is a roppery!

cinema_time_new.pdf by
cinema_time_new.pdfcinema_time_new.pdf
cinema_time_new.pdfMaxDmitriev
141 views29 slides
Dynamic Binary Analysis and Obfuscated Codes by
Dynamic Binary Analysis and Obfuscated Codes Dynamic Binary Analysis and Obfuscated Codes
Dynamic Binary Analysis and Obfuscated Codes Jonathan Salwan
468 views75 slides
Protocol T50: Five months later... So what? by
Protocol T50: Five months later... So what?Protocol T50: Five months later... So what?
Protocol T50: Five months later... So what?Nelson Brito
1.9K views51 slides
Pragmatic Optimization in Modern Programming - Demystifying the Compiler by
Pragmatic Optimization in Modern Programming - Demystifying the CompilerPragmatic Optimization in Modern Programming - Demystifying the Compiler
Pragmatic Optimization in Modern Programming - Demystifying the CompilerMarina Kolpakova
1.6K views52 slides
Fedor Polyakov - Optimizing computer vision problems on mobile platforms by
Fedor Polyakov - Optimizing computer vision problems on mobile platforms Fedor Polyakov - Optimizing computer vision problems on mobile platforms
Fedor Polyakov - Optimizing computer vision problems on mobile platforms Eastern European Computer Vision Conference
2.2K views22 slides
Hunting and Exploiting Bugs in Kernel Drivers - DefCamp 2012 by
Hunting and Exploiting Bugs in Kernel Drivers - DefCamp 2012Hunting and Exploiting Bugs in Kernel Drivers - DefCamp 2012
Hunting and Exploiting Bugs in Kernel Drivers - DefCamp 2012DefCamp
1.6K views23 slides

Similar to Everybody be cool, this is a roppery!(20)

cinema_time_new.pdf by MaxDmitriev
cinema_time_new.pdfcinema_time_new.pdf
cinema_time_new.pdf
MaxDmitriev141 views
Dynamic Binary Analysis and Obfuscated Codes by Jonathan Salwan
Dynamic Binary Analysis and Obfuscated Codes Dynamic Binary Analysis and Obfuscated Codes
Dynamic Binary Analysis and Obfuscated Codes
Jonathan Salwan468 views
Protocol T50: Five months later... So what? by Nelson Brito
Protocol T50: Five months later... So what?Protocol T50: Five months later... So what?
Protocol T50: Five months later... So what?
Nelson Brito1.9K views
Pragmatic Optimization in Modern Programming - Demystifying the Compiler by Marina Kolpakova
Pragmatic Optimization in Modern Programming - Demystifying the CompilerPragmatic Optimization in Modern Programming - Demystifying the Compiler
Pragmatic Optimization in Modern Programming - Demystifying the Compiler
Marina Kolpakova1.6K views
Hunting and Exploiting Bugs in Kernel Drivers - DefCamp 2012 by DefCamp
Hunting and Exploiting Bugs in Kernel Drivers - DefCamp 2012Hunting and Exploiting Bugs in Kernel Drivers - DefCamp 2012
Hunting and Exploiting Bugs in Kernel Drivers - DefCamp 2012
DefCamp1.6K views
Basic terminologies & asymptotic notations by Rajendran
Basic terminologies & asymptotic notationsBasic terminologies & asymptotic notations
Basic terminologies & asymptotic notations
Rajendran 1.2K views
PANDEMONIUM: Automated Identification of Cryptographic Algorithms using Dynam... by CODE BLUE
PANDEMONIUM: Automated Identification of Cryptographic Algorithms using Dynam...PANDEMONIUM: Automated Identification of Cryptographic Algorithms using Dynam...
PANDEMONIUM: Automated Identification of Cryptographic Algorithms using Dynam...
CODE BLUE1K views
Advanced SOHO Router Exploitation XCON by Lyon Yang
Advanced SOHO Router Exploitation XCONAdvanced SOHO Router Exploitation XCON
Advanced SOHO Router Exploitation XCON
Lyon Yang2.2K views
Introduction to the Arduino by Wingston
Introduction to the ArduinoIntroduction to the Arduino
Introduction to the Arduino
Wingston2.5K views
Unmanaged Parallelization via P/Invoke by Dmitri Nesteruk
Unmanaged Parallelization via P/InvokeUnmanaged Parallelization via P/Invoke
Unmanaged Parallelization via P/Invoke
Dmitri Nesteruk2.4K views
Major Elements Of Memory Management by April Bell
Major Elements Of Memory ManagementMajor Elements Of Memory Management
Major Elements Of Memory Management
April Bell5 views
The System of Automatic Searching for Vulnerabilities or how to use Taint Ana... by Positive Hack Days
The System of Automatic Searching for Vulnerabilities or how to use Taint Ana...The System of Automatic Searching for Vulnerabilities or how to use Taint Ana...
The System of Automatic Searching for Vulnerabilities or how to use Taint Ana...
Positive Hack Days1.7K views
Symbolic Execution (introduction and hands-on) by Emilio Coppa
Symbolic Execution (introduction and hands-on)Symbolic Execution (introduction and hands-on)
Symbolic Execution (introduction and hands-on)
Emilio Coppa2.7K views
2013 syscan360 yuki_chen_syscan360_exploit your java native vulnerabilities o... by chen yuki
2013 syscan360 yuki_chen_syscan360_exploit your java native vulnerabilities o...2013 syscan360 yuki_chen_syscan360_exploit your java native vulnerabilities o...
2013 syscan360 yuki_chen_syscan360_exploit your java native vulnerabilities o...
chen yuki2.8K views
Patching Windows Executables with the Backdoor Factory | DerbyCon 2013 by midnite_runr
Patching Windows Executables with the Backdoor Factory | DerbyCon 2013Patching Windows Executables with the Backdoor Factory | DerbyCon 2013
Patching Windows Executables with the Backdoor Factory | DerbyCon 2013
midnite_runr8.7K views

More from zynamics GmbH

Automated Mobile Malware Classification by
Automated Mobile Malware ClassificationAutomated Mobile Malware Classification
Automated Mobile Malware Classificationzynamics GmbH
487 views30 slides
Applications of the Reverse Engineering Language REIL by
Applications of the Reverse Engineering Language REILApplications of the Reverse Engineering Language REIL
Applications of the Reverse Engineering Language REILzynamics GmbH
500 views39 slides
VxClass for Incident Response by
VxClass for Incident ResponseVxClass for Incident Response
VxClass for Incident Responsezynamics GmbH
617 views34 slides
Malware classification by
Malware classificationMalware classification
Malware classificationzynamics GmbH
666 views28 slides
Hitb by
HitbHitb
Hitbzynamics GmbH
489 views42 slides
Eusecwest by
EusecwestEusecwest
Eusecwestzynamics GmbH
396 views58 slides

More from zynamics GmbH(8)

Automated Mobile Malware Classification by zynamics GmbH
Automated Mobile Malware ClassificationAutomated Mobile Malware Classification
Automated Mobile Malware Classification
zynamics GmbH487 views
Applications of the Reverse Engineering Language REIL by zynamics GmbH
Applications of the Reverse Engineering Language REILApplications of the Reverse Engineering Language REIL
Applications of the Reverse Engineering Language REIL
zynamics GmbH500 views
VxClass for Incident Response by zynamics GmbH
VxClass for Incident ResponseVxClass for Incident Response
VxClass for Incident Response
zynamics GmbH617 views
Automated static deobfuscation in the context of Reverse Engineering by zynamics GmbH
Automated static deobfuscation in the context of Reverse EngineeringAutomated static deobfuscation in the context of Reverse Engineering
Automated static deobfuscation in the context of Reverse Engineering
zynamics GmbH409 views

Recently uploaded

NET Conf 2023 Recap by
NET Conf 2023 RecapNET Conf 2023 Recap
NET Conf 2023 RecapLee Richardson
10 views71 slides
SAP Automation Using Bar Code and FIORI.pdf by
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdfVirendra Rai, PMP
23 views38 slides
PharoJS - Zürich Smalltalk Group Meetup November 2023 by
PharoJS - Zürich Smalltalk Group Meetup November 2023PharoJS - Zürich Smalltalk Group Meetup November 2023
PharoJS - Zürich Smalltalk Group Meetup November 2023Noury Bouraqadi
132 views17 slides
Piloting & Scaling Successfully With Microsoft Viva by
Piloting & Scaling Successfully With Microsoft VivaPiloting & Scaling Successfully With Microsoft Viva
Piloting & Scaling Successfully With Microsoft VivaRichard Harbridge
12 views160 slides
6g - REPORT.pdf by
6g - REPORT.pdf6g - REPORT.pdf
6g - REPORT.pdfLiveplex
10 views23 slides
Data Integrity for Banking and Financial Services by
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial ServicesPrecisely
25 views26 slides

Recently uploaded(20)

SAP Automation Using Bar Code and FIORI.pdf by Virendra Rai, PMP
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdf
PharoJS - Zürich Smalltalk Group Meetup November 2023 by Noury Bouraqadi
PharoJS - Zürich Smalltalk Group Meetup November 2023PharoJS - Zürich Smalltalk Group Meetup November 2023
PharoJS - Zürich Smalltalk Group Meetup November 2023
Noury Bouraqadi132 views
Piloting & Scaling Successfully With Microsoft Viva by Richard Harbridge
Piloting & Scaling Successfully With Microsoft VivaPiloting & Scaling Successfully With Microsoft Viva
Piloting & Scaling Successfully With Microsoft Viva
6g - REPORT.pdf by Liveplex
6g - REPORT.pdf6g - REPORT.pdf
6g - REPORT.pdf
Liveplex10 views
Data Integrity for Banking and Financial Services by Precisely
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial Services
Precisely25 views
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... by TrustArc
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc11 views
Five Things You SHOULD Know About Postman by Postman
Five Things You SHOULD Know About PostmanFive Things You SHOULD Know About Postman
Five Things You SHOULD Know About Postman
Postman36 views
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... by James Anderson
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
James Anderson92 views
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas... by Bernd Ruecker
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
Bernd Ruecker40 views
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive by Network Automation Forum
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLiveAutomating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Voice Logger - Telephony Integration Solution at Aegis by Nirmal Sharma
Voice Logger - Telephony Integration Solution at AegisVoice Logger - Telephony Integration Solution at Aegis
Voice Logger - Telephony Integration Solution at Aegis
Nirmal Sharma39 views
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ... by Jasper Oosterveld
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...

Everybody be cool, this is a roppery!

  • 1. Everybody be cool, this is a roppery! Vincenzo Iozzo (vincenzo.iozzo@zynamics.com) zynamics GmbH Tim Kornau (tim.kornau@zynamics.com) zynamics GmbH Ralf-Philipp Weinmann (ralf-philipp.weinmann@uni.lu) Université du Luxembourg BlackHat Vegas 2010
  • 2. Overview 1. Introduction 2. Gentle overview 3. Finding gadgets 4. Compile gadgets 5. Some fancy demos 6. Further work
  • 3. Introduction Exploitation with non- executable pages is not much fun
  • 4. But we have funny ideas Exploitation with non- executable pages is not much fun.. Unless you use “return- oriented programming”
  • 6. But life is hard Code signing Sandboxing ROP We were lucky!
  • 7. Code Signing Used to make sure that only signed (Apple verified) binaries can be executed • If a page has write permissions it can’t have executable permissions • No executable pages on the heap • Only signed pages can be executed
  • 8. ROP Instructions Variables for the gadget return sequence Address of the next gadget Instructions Variables for the gadget return sequence Address of the next gadget Instructions Variables for the gadget return sequence Address of the next gadget Instructions Variables for the gadget return sequence Address of the next gadget Instruction sequences Attacker controlled within the attacked binary memory
  • 9. ROP - Workflow 1. Find the gadgets 2. Chain them to form a payload 3. Test the payload on your target
  • 10. Finding Gadgets Overview 1. Goal definition 2. Motivation 3. Strategy 4. Algorithms 5. Results 6. Further improvement
  • 11. Goal definition Build an algorithm which is capable of locating gadgets within a given binary automatically without major side effects.
  • 12. Motivation I Little spirits need access to a wide range of devices. Because what is a device without a spirit?
  • 13. Motivation II We want to be able to execute our code: • in the presents of non-executable protection (AKA NX bit) • when code signing of binaries is enabled. • but we do not aim at ASLR.
  • 14. Strategy I • Build a program from parts of another program • These parts are named gadgets • A gadget is a sequence of (useable) instructions • Gadget combination must be possible • end in a “free-branch” • Gadgets must provide a useful operation • for example A + B
  • 15. Strategy II • The subset of useful gadgets must be locatable in the set of all gadgets • Only the “simplest” gadget for an operation should be used • Side effects of gadgets must be near to zero to avoid destroying results of previous executed code sequences. • Use the REIL meta language to be platform independent.
  • 16. Strategy III A small introduction to the REIL meta language • small RISC instruction set (17 instructions) • Arithmetic instructions (ADD, SUB, MUL, DIV, MOD, BSH) • Bitwise instructions (AND, OR, XOR) • Logical instructions (BISZ, JCC) • Data transfer instructions (LDM, STM, STR) • Other instructions (NOP, UNDEF, UNKN) • register machine • unlimited number of temp registers • side effect free • no exceptions, floating point, 64Bit, ..
  • 17. Algorithms • Stage I → Collect data from the binary • Stage II → Merge the collected data • Stage III → Locate useful gadgets in merged data
  • 18. Algorithms stage I (I) Goal of the stage I algorithms: • Collect data from the binary 1. Extract expression trees from native instructions A 2. Extract path information B + D C R0 15 E
  • 19. Algorithms stage I (II) Details of the stage I algorithms: 1. Expression tree extraction • Handlers for each possible REIL instruction 1. Most of the handlers are simple transformations 2. STM and JCC need to be treated specially 2. Path extraction • Path is extracted in reverse control flow order + * * OP BISZ OP COND COND
  • 20. Algorithms stage II (I) Goal of the stage II algorithms: • Merge the collected data from stage I 1. Combine the expression trees for single native instructions along a path 2. Determine jump conditions on the path 3. Simplify the result
  • 21. Algorithms stage II (II) Details of the stage II algorithms: • Combine the expression trees for single native instructions along a path 1. 0x00000001 ADD R0, R1, R2 2. 0x00000002 STR R0, R4 3. 0x00000003 LDMFD SP! {R4,LR} 4. 0x00000004 BX LR
  • 22. Algorithms stage II (III) Details of the stage II algorithms: • Determine jump conditions on the path: Z FLAG MUST BE FALSE 1. 0x00000001 SOME INSTRUCTION 2. 0x00000002 BEQ 0xADDRESS Generate condition tree 3. 0x00000003 SOME INSTRUCTION 4. 0x00000004 SOME INSTRUCTION • Simplify the result: R0 = ((((((R2+4)+4)+4)+4) OR 0) AND 0xFFFFFFFF) R0 = R2+16
  • 23. Algorithms stage III (I) Goal of the stage III algorithms: • Search for useful gadgets in the merged data  Use a tree match handler for each operation. • Select the simplest gadget for each operation  Use a complexity value to determine the gadget which is least complex. (side- effects)
  • 24. Algorithms stage III (II) Details of the stage III algorithms: • Search for useful gadgets in the merged data Trees of a gadget candidate are compared to the tree of a specific operation. Can you spot the match ?
  • 25. Algorithms stage III (III) Details of the stage III algorithms: • Select the simplest gadget for each operation There are in most cases more instruction sequences which provide a specific operation. The overall complexity of all trees is used to determine which gadget is the simplest.
  • 26. Results of gadget finding • Algorithms for automatic return-oriented programming gadget search are possible. • The described algorithms automatically find the necessary parts to build the return-oriented program. • Searching for gadgets is not only platform but also very compiler dependent.
  • 27. So what is next After automatic gadget extraction we need a simple and effective way to combine them.
  • 29. Chaining gadgets  … by hand is like playing Tetris  With very ugly blocks  Each gadget set defines custom ISA  We have better scores that at...
  • 31. Chaining gadgets Hence we have decided to bring in some help...
  • 32. The Wolf  A ROP compiler for gadget sets with side-effects  Very basic language  Allows for easy ROPperies on ARM devices
  • 33. Living with side-effects  “allowread”: specifies readable memory ranges  “allowcorrupt”: expendable memory ranges  [corruption may occur here]  protect: registers must stay invariant  [SP and PC implicitly guarded]
  • 34. Statements  (multi-)assignment  Conditional goto statement  Call statement (calling lib functions)  Data definitions  Labels for data/code
  • 35. Multi-assignment Example from PWN2OWN payload: (r0, r1, r2) <<_| (mem[sockloc], sin, SIZE_SIN) targets memory read constant assignment operator data reference
  • 36. Loops define label for label(clear_loop) conditional jump r1 = 256 (mem[r0], r2, r1) <<_| (0, (3*r1) & 255, r1-1) r0 = r0+4 gotoifnz(r1, clear_loop) RHS may contain arithmetic-logical calculations: {+,-,*,/, %, ^, |, &, <<, >>}
  • 37. Hired help: STP  Mr. Wolf is a high-level problem solver: he likes to delegate  Menial work: let someone else do it  In this case STP  [Simple Theorem Prover]
  • 38. What is STP?  Constraint solver for problems involving bit- vectors and arrays  Open-source, written by Vijay Ganesh  Used for model-checking, theorem proving, EXE, etc.  Gives Boolean answer whether formula is satisfiable & assignment if it is
  • 39. STP formulae Just a bunch of assertions in QF_ABV Simple example:  x0 : BITVECTOR(4);  ...  x9 : BITVECTOR(4);  ASSERT (BVPLUS(4,BVMULT(4,x0, 0hex6), 0hex0, 0hex0,  BVMULT(4,x3, 0hex7), BVMULT(4,x4, 0hex4),  BVMULT(4,x5, 0hex6), BVMULT(4,x6, 0hex4),  0hex0, 0hex0, BVMULT(4,x9, 0hex8),0hex0) = 0hex7);
  • 40. High-level algorithm For multi-assignments: 1. Find all gadgets assigning to targets 2. Verify constraints for each (protect/memread/memcorrupt) 3. Find all gadgets for expressions on RHS 4. Chain expression gadgets 5. Connect LHS and RHS
  • 41. Notes on chaining algorithm  Chaining for arithmetic/logical expressions may use registers/memory locations for temporary results  Multi-assignments give us freedom  Algorithm sometimes may fail because constraints cannot be satisfied [insufficient gadgets]
  • 42. K got the payload, now? You could test it on a jailbroken phone • Does not match reality! • No code signing for instance • Still an option if exploit reliability is not your primary concern
  • 43. K got the payload, now? You could test it on a developer phone • Have a small application to reproduce a “ROP scenario” • Depending on the application you’re targeting the sandbox policy is different • Still closer to reality
  • 44. Simple plan • Allocate a buffer on the heap • Fill the buffer with the shellcode • Point the stack pointer to the beginning of the attacker controlled memory • Execute the payload • Restore
  • 45. Future work • Port to other platforms (eg: x86) • Abstract language to describe gadgets • Try to avoid “un-decidable” constraints • Make it more flexible to help when ASLR is in place
  • 46. Thanks for your time Questions?