Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
SlideShare a Scribd company logo
Advance ROP Attacks

     Rashid Bhatt

      @raashidbhatt
Agenda
• Introduction to ROP Attacks

• ROP Attack Variants

• Alphanumeric ROP exploits

• Searching gadgets

• Questions?
ROP Attacks
•   Introduced by hovad shacham
•   Circumvents DEP (data execution prevention)
•   Turing Complete`ness
•   More useful than ret-2-lib ( branching)
•   Applicable to various architectures
ROP Attacks
• Gadgets are the building blocks
• Gadgets end with RET instruction
• Example gadgets
     •   Mov eax, ebx
     •   Ret
     •   Pop eax
     •   Ret
ROP attacks
    x86 stack layout
    . Registers ebp and esp point to base and top of the
stack respective
    . EBP used to access local and passed paramters
    eg . [ebp + 8] first parameter (EBP + 4) for ret
address
    . ESP used are a pointer for popping values out from
stack
ROP attacks
• RET x86 instruction
     • Pops a value from the stack into EIP

     • Used to return control from a function

     • RET can have a argument eg RET 8

     • RET 8 == EIP = stack[top], add ESP , 8
X86 stack layout
                             calling conventions
                             __stdcall ( varadic arguments)
Int __stdcall function(int a, int b) // < paramerts
              {
                             int b,c; // local c variables
                             return 0;
              }
function(10, 20); // function call __stdcall

X86 disassembly

              push 20 // arguments pushed from right to left
              push 10
              call function
function:
              push ebp                                        // Stack epilouge
              mov ebp, esp
              sub esp, 8                                      //8 bytes for two variabeles
              ….
              ….
              add esp, 8
              pop ebp
              ret 8                                           // ret 8 stack clearance by callie
X86 stack layout
                             calling conventions
                             __cdecl( const no of args)
Int __cdelc function(int a, int b) // < paramerts
              {
                             int b,c; // local c variables
                             return 0;
              }
function(10, 20); // function call __cdecl

X86 disassembly

              push 20 // arguments pushed from right to left
              push 10
              call function
              add esp, 8 // stack clearance
function:
              push ebp                                       // Stack epilouge
              mov ebp, esp
              sub esp, 8                                     //8 bytes for two variabeles
              ….
              ….
              add esp, 8
              pop ebp
              ret                                            // ret no stack clearence
Basic stack overflow
• A local stack variable gets overflowed

• CALL instruction pushes the EIP to the stack

• Find a trampoline eg jmp esp to change the
  value to eip to attacker controlled buffer

• demo
What about NX bit ?
• DEP restricts the execution of segments
  marked as r/w
• We can re-use code from the address space of
  executable
• Useful code chunks called as ROP gadgets
• Multiple gadgets can be chained together and
  even API calls
ROP Basics(load and store gadgets)
• storing and loading values from and into
  memory

• Primitive example pop eax; ret / pop ebx ret/ pop r32, ret

• To memory store           pop eax, pop edx, ret / mov [eax], edx; ret
Wait a sec!
            » Handling NULL bytes



•   Some parameters contain NULL
•   Even some addresses contain zero values
•   Cannot inject NULL or zero values
•   Bug prone functions eg strcpy stop copying
    when they encounter a NULL byte (00 hex)
Handling NULL bytes
•   Let x = value containing a ( many) NULL byte
•   Let y = mask = 0xffffffff
•   Mathematical axiom
•   A xor B = z (say)
•   Now z xor B = A
•   We can 0x00000000 xor 0xffffffff = z (say)
•   Xor it back to get the original value
•   We have xor esi, ebx ; ret!
ROP basics(arithmetic )
• Msvcrt32.dll 0x77c4d6f add ebx, esi; stc; ret

• Kernel32.dll 0x7c902af5 sub eax,ecx; ret

• We have same for mul and div !

• Try in immunity search: add r32, r32;any;ret;

• You will find huge no. of gadgets
ROP basics(LOOPS)
• UNCONDITIONAL LOOPS or INFINITE LOOPS
• Pop back the value in ESP, pop esp;ret
 7C80BCA8 5C     POP ESP //kernel32.dll
 7C80BCA9 C3     RETN
ROP basics(conditional jumps )
• The tricky part
• We need to modify ESP , based on certain
  comparisons
. comparisons include greater than , less than ,
  equal to;
    X <y
    X >y
    X == some_val
.
Comparing with zero
•   Divert flow through adding a certain value to esp

•   Store two values on the stack , value_to_be_checked and esp_delta (the value to
    be added to esp)


• Load the val in a general purpose register say eax
•   X86 instruction NEG computes the two's complement and updates CF

. if val == 0 the CF = 0; else CF = 1
• ADC x86 instruction add the source and dest with carry flag(ADC – add
  with carry flag)
• Make a general purpose reg and zero by xor r32,r32; then apply adc
  r32,32
Comparing with zero(contd..)
•   We have a REG (say eax) containing a single 1 bit or all 0 bits

•   Apply NEG instruction on that REG to obtain the two's complement


• 2's comp will transform it into all zero's or all ones
•   Perform bit-wise AND with ESP_DELTA

.   according we will get ESP_DELTA as zero or its original value


• ADD esp, ESP_DALTA to divert the control flow


• DEMO
Checking for == (equality)
•   Two values val1, val2 to be checked for equality

•   Load two values using load and store gadgets as shown earlier


• Perform x86 SUB val1, val2,store back the result
•   If both the values are same result will be zero,

.   Check the result to zero as show in the previous slide
• ADD esp, ESP_DALTA to divert the control flow


• DEMO
Checking for <, > (less or greater)
•   Two values val1, val2 to be checked for equality

•   Load two values using load and store gadgets as shown earlier


• Perform x86 SUB val1, val2, SUB intruction sets the CF if dest > source
•   Save CF using xor r32, r32;ret; adc r32,r32 ret; as shown in ealier slide

.   CF will be 1 if dest > source else 0
• DEMO
ROP Attack Variants
JUMP oriented Programming
                  Attacks

•   ROP used gadgets ending with RET x86 instruction

•   JOP uses statements ending with Indirect Jump call


• Instead of stack uses a dispatcher table to jump to different locations

•   Thwarts certain Anti-ROP defences
JOP attacks (Dispatch table and
      Dispatcher gadget)
JUMP oriented Programming
                  Attacks

•   Dispatcher gadget increments a REG by certain value to make it point to next loc to
    jump on

•   Add ebx, 4 ; JMP [ebx]


•   Here , EBX points to the Dispatcher table


•   Same gadgets as in ROP attacks
JOP(attack Model)


•   Cannot work on stack buffer overflow , because control flow diverts through a ret
    Instruction
•   Will be detected by anti-ROP defenses if(stack overflow is used)


•   Attack vectors include


•   1: pointer overwrite
•   2: Arbitrary DWORD overwrite
•   3: C++ vtable overwrite
Alphanumeric ROP Shell-code
Alphanumeric ROP Shellcode
•   Traditional Shellcode can be made alphanumeric by choosing only certain
    instruction

Example . pop ecx has an
opcode 0x59 which is the ASCII code of the character Y)



•   Similar technique used in ROP shellcode

.   Selecting a printable address rather than a printable opcode(in trad.
    shellcodes)
Alphanumeric ROP Shellcode
Basic Technique by adding two printable addresses. The range of ASCII printable
   characters is between 0x21 and 0x7e

Example . A non-printable gadget in kernel32.dll at 0x77D4B8C2 {pop ebx;ret} can be
   represented by adding two printable addresses

0X225D414B(printable) + 0x55777777(printable) = 0x77D4B8C2(no-printable)


• Combined together can be used to transform a printable code into non-
  printable
•   Similar technique used in ROP shellcode

.   Selecting a printable address rather than a printable opcode(in trad.
    shellcodes)
Alphanumeric ROP
                   Shellcode(gadgets)
• Gadgets used for decoding addresses should be printable(bytes should be
  in range of 0x21 - 0x7e
•   We also need a memory region which has a printable address to store the
    decoded gadgets addresses marked as r/w

.   From reg to mem we have urlmon.dll
        0x772C2E5E      MOV DWORD PTR DS:[ECX],EAX
. ESP related CRYPTUI.dll 0x775513E30 XCHG EAX,ESP
.   MSCTF.DLL 0x74722973         POP EAX
. Mshtml.dll     0x7D504962         ADD EAX,ECX
. msimtf.dll MEM to reg        0x74714263 MOV EAX,DWORD PTR DS:[ECX]
. All of the dll's loaded by internet explorer
Alphanumeric ROP Shellcode

Alphanumeric ROP Messagebeep Shellcode >>




s)rt:i=3PI'w""w"bIP}PI'www""bIP}PI'w"P`
w^.,wxxxxs)rt"P`w0>Qu

 DEMO
Effectively searching gadgets


•   Immunity debugger search for all sequences in all modules

•   ANY for any no of op codes and any reg


•   Match Different registers eg POP RA, RB ; RA and RB will be different


•   Best Practice search in reverse order
Questions ?

More Related Content

What's hot

Introduction to Debuggers
Introduction to DebuggersIntroduction to Debuggers
Introduction to Debuggers
Saumil Shah
 
Interpreter, Compiler, JIT from scratch
Interpreter, Compiler, JIT from scratchInterpreter, Compiler, JIT from scratch
Interpreter, Compiler, JIT from scratch
National Cheng Kung University
 
Basic Linux Internals
Basic Linux InternalsBasic Linux Internals
Basic Linux Internals
mukul bhardwaj
 
Making The Move To Java 17 (JConf 2022)
Making The Move To Java 17 (JConf 2022)Making The Move To Java 17 (JConf 2022)
Making The Move To Java 17 (JConf 2022)
Alex Motley
 
RISC-V Foundation Overview
RISC-V Foundation OverviewRISC-V Foundation Overview
RISC-V Foundation Overview
RISC-V International
 
Linux systems - Getting started with setting up and embedded platform
Linux systems - Getting started with setting up and embedded platformLinux systems - Getting started with setting up and embedded platform
Linux systems - Getting started with setting up and embedded platform
Emertxe Information Technologies Pvt Ltd
 
Runtime Symbol Resolution
Runtime Symbol ResolutionRuntime Symbol Resolution
Runtime Symbol Resolution
Ken Kawamoto
 
Decision and looping examples with php (WT)
Decision and looping examples with php (WT)Decision and looping examples with php (WT)
Decision and looping examples with php (WT)
kunjan shah
 
Advanced C - Part 2
Advanced C - Part 2Advanced C - Part 2
systemd
systemdsystemd
systemd
nussbauml
 
系統程式 -- 第 5 章 連結與載入
系統程式 -- 第 5 章 連結與載入系統程式 -- 第 5 章 連結與載入
系統程式 -- 第 5 章 連結與載入
鍾誠 陳鍾誠
 
Shell Scripting Tutorial | Edureka
Shell Scripting Tutorial | EdurekaShell Scripting Tutorial | Edureka
Shell Scripting Tutorial | Edureka
Edureka!
 
2021.laravelconf.tw.slides1
2021.laravelconf.tw.slides12021.laravelconf.tw.slides1
2021.laravelconf.tw.slides1
LiviaLiaoFontech
 
Prerequisite knowledge for shared memory concurrency
Prerequisite knowledge for shared memory concurrencyPrerequisite knowledge for shared memory concurrency
Prerequisite knowledge for shared memory concurrency
Viller Hsiao
 
Sw update elce2017
Sw update elce2017Sw update elce2017
Sw update elce2017
Stefano Babic
 
LCU13: An Introduction to ARM Trusted Firmware
LCU13: An Introduction to ARM Trusted FirmwareLCU13: An Introduction to ARM Trusted Firmware
LCU13: An Introduction to ARM Trusted Firmware
Linaro
 
Vert.x for Microservices Architecture
Vert.x for Microservices ArchitectureVert.x for Microservices Architecture
Vert.x for Microservices Architecture
Idan Fridman
 
Yocto - Embedded Linux Distribution Maker
Yocto - Embedded Linux Distribution MakerYocto - Embedded Linux Distribution Maker
Yocto - Embedded Linux Distribution Maker
Sherif Mousa
 
Second Level Cache in JPA Explained
Second Level Cache in JPA ExplainedSecond Level Cache in JPA Explained
Second Level Cache in JPA Explained
Patrycja Wegrzynowicz
 
Linux Internals - Interview essentials 2.0
Linux Internals - Interview essentials 2.0Linux Internals - Interview essentials 2.0
Linux Internals - Interview essentials 2.0
Emertxe Information Technologies Pvt Ltd
 

What's hot (20)

Introduction to Debuggers
Introduction to DebuggersIntroduction to Debuggers
Introduction to Debuggers
 
Interpreter, Compiler, JIT from scratch
Interpreter, Compiler, JIT from scratchInterpreter, Compiler, JIT from scratch
Interpreter, Compiler, JIT from scratch
 
Basic Linux Internals
Basic Linux InternalsBasic Linux Internals
Basic Linux Internals
 
Making The Move To Java 17 (JConf 2022)
Making The Move To Java 17 (JConf 2022)Making The Move To Java 17 (JConf 2022)
Making The Move To Java 17 (JConf 2022)
 
RISC-V Foundation Overview
RISC-V Foundation OverviewRISC-V Foundation Overview
RISC-V Foundation Overview
 
Linux systems - Getting started with setting up and embedded platform
Linux systems - Getting started with setting up and embedded platformLinux systems - Getting started with setting up and embedded platform
Linux systems - Getting started with setting up and embedded platform
 
Runtime Symbol Resolution
Runtime Symbol ResolutionRuntime Symbol Resolution
Runtime Symbol Resolution
 
Decision and looping examples with php (WT)
Decision and looping examples with php (WT)Decision and looping examples with php (WT)
Decision and looping examples with php (WT)
 
Advanced C - Part 2
Advanced C - Part 2Advanced C - Part 2
Advanced C - Part 2
 
systemd
systemdsystemd
systemd
 
系統程式 -- 第 5 章 連結與載入
系統程式 -- 第 5 章 連結與載入系統程式 -- 第 5 章 連結與載入
系統程式 -- 第 5 章 連結與載入
 
Shell Scripting Tutorial | Edureka
Shell Scripting Tutorial | EdurekaShell Scripting Tutorial | Edureka
Shell Scripting Tutorial | Edureka
 
2021.laravelconf.tw.slides1
2021.laravelconf.tw.slides12021.laravelconf.tw.slides1
2021.laravelconf.tw.slides1
 
Prerequisite knowledge for shared memory concurrency
Prerequisite knowledge for shared memory concurrencyPrerequisite knowledge for shared memory concurrency
Prerequisite knowledge for shared memory concurrency
 
Sw update elce2017
Sw update elce2017Sw update elce2017
Sw update elce2017
 
LCU13: An Introduction to ARM Trusted Firmware
LCU13: An Introduction to ARM Trusted FirmwareLCU13: An Introduction to ARM Trusted Firmware
LCU13: An Introduction to ARM Trusted Firmware
 
Vert.x for Microservices Architecture
Vert.x for Microservices ArchitectureVert.x for Microservices Architecture
Vert.x for Microservices Architecture
 
Yocto - Embedded Linux Distribution Maker
Yocto - Embedded Linux Distribution MakerYocto - Embedded Linux Distribution Maker
Yocto - Embedded Linux Distribution Maker
 
Second Level Cache in JPA Explained
Second Level Cache in JPA ExplainedSecond Level Cache in JPA Explained
Second Level Cache in JPA Explained
 
Linux Internals - Interview essentials 2.0
Linux Internals - Interview essentials 2.0Linux Internals - Interview essentials 2.0
Linux Internals - Interview essentials 2.0
 

Similar to Advance ROP Attacks

The Stack and Buffer Overflows
The Stack and Buffer OverflowsThe Stack and Buffer Overflows
The Stack and Buffer Overflows
UTD Computer Security Group
 
Buffer overflow attacks
Buffer overflow attacksBuffer overflow attacks
Buffer overflow attacks
Japneet Singh
 
Advanced procedures in assembly language Full chapter ppt
Advanced procedures in assembly language Full chapter pptAdvanced procedures in assembly language Full chapter ppt
Advanced procedures in assembly language Full chapter ppt
Muhammad Sikandar Mustafa
 
Reversing malware analysis training part4 assembly programming basics
Reversing malware analysis training part4 assembly programming basicsReversing malware analysis training part4 assembly programming basics
Reversing malware analysis training part4 assembly programming basics
Cysinfo Cyber Security Community
 
[ASM]Lab6
[ASM]Lab6[ASM]Lab6
[ASM]Lab6
Nora Youssef
 
lec15_x86procedure_4up.pdf
lec15_x86procedure_4up.pdflec15_x86procedure_4up.pdf
lec15_x86procedure_4up.pdf
hasan58964
 
Assem -lect-6
Assem -lect-6Assem -lect-6
Assem -lect-6
Dolly Angel
 
Reversing & Malware Analysis Training Part 4 - Assembly Programming Basics
Reversing & Malware Analysis Training Part 4 - Assembly Programming BasicsReversing & Malware Analysis Training Part 4 - Assembly Programming Basics
Reversing & Malware Analysis Training Part 4 - Assembly Programming Basics
securityxploded
 
Exploitation Crash Course
Exploitation Crash CourseExploitation Crash Course
Exploitation Crash Course
UTD Computer Security Group
 
Introduction to debugging linux applications
Introduction to debugging linux applicationsIntroduction to debugging linux applications
Introduction to debugging linux applications
commiebstrd
 
1. For each instruction, give the 80x86 opcode and total number of b.docx
1. For each instruction, give the 80x86 opcode and total number of b.docx1. For each instruction, give the 80x86 opcode and total number of b.docx
1. For each instruction, give the 80x86 opcode and total number of b.docx
blondellchancy
 
04basic Concepts
04basic Concepts04basic Concepts
04basic Concepts
Zhiwen Guo
 
127 Ch 2: Stack overflows on Linux
127 Ch 2: Stack overflows on Linux127 Ch 2: Stack overflows on Linux
127 Ch 2: Stack overflows on Linux
Sam Bowne
 
Assembly language
Assembly languageAssembly language
Assembly language
Piyush Jain
 
CNIT 127: Ch 2: Stack Overflows in Linux
CNIT 127: Ch 2: Stack Overflows in LinuxCNIT 127: Ch 2: Stack Overflows in Linux
CNIT 127: Ch 2: Stack Overflows in Linux
Sam Bowne
 
N_Asm Assembly arithmetic instructions (sol)
N_Asm Assembly arithmetic instructions (sol)N_Asm Assembly arithmetic instructions (sol)
N_Asm Assembly arithmetic instructions (sol)
Selomon birhane
 
127 Ch 2: Stack overflows on Linux
127 Ch 2: Stack overflows on Linux127 Ch 2: Stack overflows on Linux
127 Ch 2: Stack overflows on Linux
Sam Bowne
 
Creating a Fibonacci Generator in Assembly - by Willem van Ketwich
Creating a Fibonacci Generator in Assembly - by Willem van KetwichCreating a Fibonacci Generator in Assembly - by Willem van Ketwich
Creating a Fibonacci Generator in Assembly - by Willem van Ketwich
Willem van Ketwich
 
Basic ASM by @binaryheadache
Basic ASM by @binaryheadacheBasic ASM by @binaryheadache
Basic ASM by @binaryheadache
camsec
 
Coal (1)
Coal (1)Coal (1)
Coal (1)
talhashahid40
 

Similar to Advance ROP Attacks (20)

The Stack and Buffer Overflows
The Stack and Buffer OverflowsThe Stack and Buffer Overflows
The Stack and Buffer Overflows
 
Buffer overflow attacks
Buffer overflow attacksBuffer overflow attacks
Buffer overflow attacks
 
Advanced procedures in assembly language Full chapter ppt
Advanced procedures in assembly language Full chapter pptAdvanced procedures in assembly language Full chapter ppt
Advanced procedures in assembly language Full chapter ppt
 
Reversing malware analysis training part4 assembly programming basics
Reversing malware analysis training part4 assembly programming basicsReversing malware analysis training part4 assembly programming basics
Reversing malware analysis training part4 assembly programming basics
 
[ASM]Lab6
[ASM]Lab6[ASM]Lab6
[ASM]Lab6
 
lec15_x86procedure_4up.pdf
lec15_x86procedure_4up.pdflec15_x86procedure_4up.pdf
lec15_x86procedure_4up.pdf
 
Assem -lect-6
Assem -lect-6Assem -lect-6
Assem -lect-6
 
Reversing & Malware Analysis Training Part 4 - Assembly Programming Basics
Reversing & Malware Analysis Training Part 4 - Assembly Programming BasicsReversing & Malware Analysis Training Part 4 - Assembly Programming Basics
Reversing & Malware Analysis Training Part 4 - Assembly Programming Basics
 
Exploitation Crash Course
Exploitation Crash CourseExploitation Crash Course
Exploitation Crash Course
 
Introduction to debugging linux applications
Introduction to debugging linux applicationsIntroduction to debugging linux applications
Introduction to debugging linux applications
 
1. For each instruction, give the 80x86 opcode and total number of b.docx
1. For each instruction, give the 80x86 opcode and total number of b.docx1. For each instruction, give the 80x86 opcode and total number of b.docx
1. For each instruction, give the 80x86 opcode and total number of b.docx
 
04basic Concepts
04basic Concepts04basic Concepts
04basic Concepts
 
127 Ch 2: Stack overflows on Linux
127 Ch 2: Stack overflows on Linux127 Ch 2: Stack overflows on Linux
127 Ch 2: Stack overflows on Linux
 
Assembly language
Assembly languageAssembly language
Assembly language
 
CNIT 127: Ch 2: Stack Overflows in Linux
CNIT 127: Ch 2: Stack Overflows in LinuxCNIT 127: Ch 2: Stack Overflows in Linux
CNIT 127: Ch 2: Stack Overflows in Linux
 
N_Asm Assembly arithmetic instructions (sol)
N_Asm Assembly arithmetic instructions (sol)N_Asm Assembly arithmetic instructions (sol)
N_Asm Assembly arithmetic instructions (sol)
 
127 Ch 2: Stack overflows on Linux
127 Ch 2: Stack overflows on Linux127 Ch 2: Stack overflows on Linux
127 Ch 2: Stack overflows on Linux
 
Creating a Fibonacci Generator in Assembly - by Willem van Ketwich
Creating a Fibonacci Generator in Assembly - by Willem van KetwichCreating a Fibonacci Generator in Assembly - by Willem van Ketwich
Creating a Fibonacci Generator in Assembly - by Willem van Ketwich
 
Basic ASM by @binaryheadache
Basic ASM by @binaryheadacheBasic ASM by @binaryheadache
Basic ASM by @binaryheadache
 
Coal (1)
Coal (1)Coal (1)
Coal (1)
 

More from n|u - The Open Security Community

Hardware security testing 101 (Null - Delhi Chapter)
Hardware security testing 101 (Null - Delhi Chapter)Hardware security testing 101 (Null - Delhi Chapter)
Hardware security testing 101 (Null - Delhi Chapter)
n|u - The Open Security Community
 
Osint primer
Osint primerOsint primer
SSRF exploit the trust relationship
SSRF exploit the trust relationshipSSRF exploit the trust relationship
SSRF exploit the trust relationship
n|u - The Open Security Community
 
Nmap basics
Nmap basicsNmap basics
Metasploit primary
Metasploit primaryMetasploit primary
Api security-testing
Api security-testingApi security-testing
Api security-testing
n|u - The Open Security Community
 
Introduction to TLS 1.3
Introduction to TLS 1.3Introduction to TLS 1.3
Introduction to TLS 1.3
n|u - The Open Security Community
 
Gibson 101 -quick_introduction_to_hacking_mainframes_in_2020_null_infosec_gir...
Gibson 101 -quick_introduction_to_hacking_mainframes_in_2020_null_infosec_gir...Gibson 101 -quick_introduction_to_hacking_mainframes_in_2020_null_infosec_gir...
Gibson 101 -quick_introduction_to_hacking_mainframes_in_2020_null_infosec_gir...
n|u - The Open Security Community
 
Talking About SSRF,CRLF
Talking About SSRF,CRLFTalking About SSRF,CRLF
Talking About SSRF,CRLF
n|u - The Open Security Community
 
Building active directory lab for red teaming
Building active directory lab for red teamingBuilding active directory lab for red teaming
Building active directory lab for red teaming
n|u - The Open Security Community
 
Owning a company through their logs
Owning a company through their logsOwning a company through their logs
Owning a company through their logs
n|u - The Open Security Community
 
Introduction to shodan
Introduction to shodanIntroduction to shodan
Introduction to shodan
n|u - The Open Security Community
 
Cloud security
Cloud security Cloud security
Detecting persistence in windows
Detecting persistence in windowsDetecting persistence in windows
Detecting persistence in windows
n|u - The Open Security Community
 
Frida - Objection Tool Usage
Frida - Objection Tool UsageFrida - Objection Tool Usage
Frida - Objection Tool Usage
n|u - The Open Security Community
 
OSQuery - Monitoring System Process
OSQuery - Monitoring System ProcessOSQuery - Monitoring System Process
OSQuery - Monitoring System Process
n|u - The Open Security Community
 
DevSecOps Jenkins Pipeline -Security
DevSecOps Jenkins Pipeline -SecurityDevSecOps Jenkins Pipeline -Security
DevSecOps Jenkins Pipeline -Security
n|u - The Open Security Community
 
Extensible markup language attacks
Extensible markup language attacksExtensible markup language attacks
Extensible markup language attacks
n|u - The Open Security Community
 
Linux for hackers
Linux for hackersLinux for hackers
Android Pentesting
Android PentestingAndroid Pentesting

More from n|u - The Open Security Community (20)

Hardware security testing 101 (Null - Delhi Chapter)
Hardware security testing 101 (Null - Delhi Chapter)Hardware security testing 101 (Null - Delhi Chapter)
Hardware security testing 101 (Null - Delhi Chapter)
 
Osint primer
Osint primerOsint primer
Osint primer
 
SSRF exploit the trust relationship
SSRF exploit the trust relationshipSSRF exploit the trust relationship
SSRF exploit the trust relationship
 
Nmap basics
Nmap basicsNmap basics
Nmap basics
 
Metasploit primary
Metasploit primaryMetasploit primary
Metasploit primary
 
Api security-testing
Api security-testingApi security-testing
Api security-testing
 
Introduction to TLS 1.3
Introduction to TLS 1.3Introduction to TLS 1.3
Introduction to TLS 1.3
 
Gibson 101 -quick_introduction_to_hacking_mainframes_in_2020_null_infosec_gir...
Gibson 101 -quick_introduction_to_hacking_mainframes_in_2020_null_infosec_gir...Gibson 101 -quick_introduction_to_hacking_mainframes_in_2020_null_infosec_gir...
Gibson 101 -quick_introduction_to_hacking_mainframes_in_2020_null_infosec_gir...
 
Talking About SSRF,CRLF
Talking About SSRF,CRLFTalking About SSRF,CRLF
Talking About SSRF,CRLF
 
Building active directory lab for red teaming
Building active directory lab for red teamingBuilding active directory lab for red teaming
Building active directory lab for red teaming
 
Owning a company through their logs
Owning a company through their logsOwning a company through their logs
Owning a company through their logs
 
Introduction to shodan
Introduction to shodanIntroduction to shodan
Introduction to shodan
 
Cloud security
Cloud security Cloud security
Cloud security
 
Detecting persistence in windows
Detecting persistence in windowsDetecting persistence in windows
Detecting persistence in windows
 
Frida - Objection Tool Usage
Frida - Objection Tool UsageFrida - Objection Tool Usage
Frida - Objection Tool Usage
 
OSQuery - Monitoring System Process
OSQuery - Monitoring System ProcessOSQuery - Monitoring System Process
OSQuery - Monitoring System Process
 
DevSecOps Jenkins Pipeline -Security
DevSecOps Jenkins Pipeline -SecurityDevSecOps Jenkins Pipeline -Security
DevSecOps Jenkins Pipeline -Security
 
Extensible markup language attacks
Extensible markup language attacksExtensible markup language attacks
Extensible markup language attacks
 
Linux for hackers
Linux for hackersLinux for hackers
Linux for hackers
 
Android Pentesting
Android PentestingAndroid Pentesting
Android Pentesting
 

Recently uploaded

Float Operations in Odoo 17 - Odoo 17 Slides
Float Operations in Odoo 17 - Odoo 17 SlidesFloat Operations in Odoo 17 - Odoo 17 Slides
Float Operations in Odoo 17 - Odoo 17 Slides
Celine George
 
What is the Difference Between Lot & Serial Number in Odoo 17
What is the Difference Between Lot & Serial Number in Odoo 17What is the Difference Between Lot & Serial Number in Odoo 17
What is the Difference Between Lot & Serial Number in Odoo 17
Celine George
 
SD_Creating Excellent and Powerful Learning Facilitation.pptx
SD_Creating Excellent and Powerful Learning Facilitation.pptxSD_Creating Excellent and Powerful Learning Facilitation.pptx
SD_Creating Excellent and Powerful Learning Facilitation.pptx
jennifersayong3
 
Bipolar Junction Transistors and operation .pptx
Bipolar Junction Transistors and operation .pptxBipolar Junction Transistors and operation .pptx
Bipolar Junction Transistors and operation .pptx
nitugatkal
 
How to install python packages from Pycharm
How to install python packages from PycharmHow to install python packages from Pycharm
How to install python packages from Pycharm
Celine George
 
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry  by V.Jesinthal MaryPlato and Aristotle's Views on Poetry  by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
jessintv
 
Stéphan Vincent-Lancrin, Deputy Head of IMEP division and Senior Analyst - P...
Stéphan Vincent-Lancrin, Deputy Head of IMEP division and Senior Analyst  - P...Stéphan Vincent-Lancrin, Deputy Head of IMEP division and Senior Analyst  - P...
Stéphan Vincent-Lancrin, Deputy Head of IMEP division and Senior Analyst - P...
EduSkills OECD
 
How to Manage Advanced Pricelist in Odoo 17
How to Manage Advanced Pricelist in Odoo 17How to Manage Advanced Pricelist in Odoo 17
How to Manage Advanced Pricelist in Odoo 17
Celine George
 
english 9 Quarter 1 Week 1 Modals and its Uses
english 9 Quarter 1 Week 1 Modals and its Usesenglish 9 Quarter 1 Week 1 Modals and its Uses
english 9 Quarter 1 Week 1 Modals and its Uses
EjNoveno
 
Brigada Eskwela editable Certificate.pptx
Brigada Eskwela editable Certificate.pptxBrigada Eskwela editable Certificate.pptx
Brigada Eskwela editable Certificate.pptx
aiofits06
 
Bagong Pilipinas Pledge in Power pointpptx
Bagong Pilipinas Pledge in Power pointpptxBagong Pilipinas Pledge in Power pointpptx
Bagong Pilipinas Pledge in Power pointpptx
fantasialomibao
 
How to Integrate Facebook in Odoo 17 - Odoo 17 Slides
How to Integrate Facebook in Odoo 17 - Odoo 17 SlidesHow to Integrate Facebook in Odoo 17 - Odoo 17 Slides
How to Integrate Facebook in Odoo 17 - Odoo 17 Slides
Celine George
 
Q1_LE_Music and Arts 7_Lesson 1_Weeks 1-2.docx
Q1_LE_Music and Arts 7_Lesson 1_Weeks 1-2.docxQ1_LE_Music and Arts 7_Lesson 1_Weeks 1-2.docx
Q1_LE_Music and Arts 7_Lesson 1_Weeks 1-2.docx
ElynTGomez
 
great athletes ppt bahasa inggris kelas x kurikulum merdeka
great athletes ppt bahasa inggris kelas x kurikulum merdekagreat athletes ppt bahasa inggris kelas x kurikulum merdeka
great athletes ppt bahasa inggris kelas x kurikulum merdeka
MonicaWijaya13
 
Email Marketing in Odoo 17 - Odoo 17 Slides
Email Marketing  in Odoo 17 - Odoo 17 SlidesEmail Marketing  in Odoo 17 - Odoo 17 Slides
Email Marketing in Odoo 17 - Odoo 17 Slides
Celine George
 
Class-Orientation for school year 2024 - 2025
Class-Orientation for school year 2024 - 2025Class-Orientation for school year 2024 - 2025
Class-Orientation for school year 2024 - 2025
KIPAIZAGABAWA1
 
PPT Jessica powerpoint physical geography
PPT Jessica powerpoint physical geographyPPT Jessica powerpoint physical geography
PPT Jessica powerpoint physical geography
np2fjc9csm
 
How to Configure Field Cleaning Rules in Odoo 17
How to Configure Field Cleaning Rules in Odoo 17How to Configure Field Cleaning Rules in Odoo 17
How to Configure Field Cleaning Rules in Odoo 17
Celine George
 
What is the Use of API.onchange in Odoo 17
What is the Use of API.onchange in Odoo 17What is the Use of API.onchange in Odoo 17
What is the Use of API.onchange in Odoo 17
Celine George
 
principles of auditing types of audit ppt
principles of auditing types of audit pptprinciples of auditing types of audit ppt
principles of auditing types of audit ppt
sangeetha280806
 

Recently uploaded (20)

Float Operations in Odoo 17 - Odoo 17 Slides
Float Operations in Odoo 17 - Odoo 17 SlidesFloat Operations in Odoo 17 - Odoo 17 Slides
Float Operations in Odoo 17 - Odoo 17 Slides
 
What is the Difference Between Lot & Serial Number in Odoo 17
What is the Difference Between Lot & Serial Number in Odoo 17What is the Difference Between Lot & Serial Number in Odoo 17
What is the Difference Between Lot & Serial Number in Odoo 17
 
SD_Creating Excellent and Powerful Learning Facilitation.pptx
SD_Creating Excellent and Powerful Learning Facilitation.pptxSD_Creating Excellent and Powerful Learning Facilitation.pptx
SD_Creating Excellent and Powerful Learning Facilitation.pptx
 
Bipolar Junction Transistors and operation .pptx
Bipolar Junction Transistors and operation .pptxBipolar Junction Transistors and operation .pptx
Bipolar Junction Transistors and operation .pptx
 
How to install python packages from Pycharm
How to install python packages from PycharmHow to install python packages from Pycharm
How to install python packages from Pycharm
 
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry  by V.Jesinthal MaryPlato and Aristotle's Views on Poetry  by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
 
Stéphan Vincent-Lancrin, Deputy Head of IMEP division and Senior Analyst - P...
Stéphan Vincent-Lancrin, Deputy Head of IMEP division and Senior Analyst  - P...Stéphan Vincent-Lancrin, Deputy Head of IMEP division and Senior Analyst  - P...
Stéphan Vincent-Lancrin, Deputy Head of IMEP division and Senior Analyst - P...
 
How to Manage Advanced Pricelist in Odoo 17
How to Manage Advanced Pricelist in Odoo 17How to Manage Advanced Pricelist in Odoo 17
How to Manage Advanced Pricelist in Odoo 17
 
english 9 Quarter 1 Week 1 Modals and its Uses
english 9 Quarter 1 Week 1 Modals and its Usesenglish 9 Quarter 1 Week 1 Modals and its Uses
english 9 Quarter 1 Week 1 Modals and its Uses
 
Brigada Eskwela editable Certificate.pptx
Brigada Eskwela editable Certificate.pptxBrigada Eskwela editable Certificate.pptx
Brigada Eskwela editable Certificate.pptx
 
Bagong Pilipinas Pledge in Power pointpptx
Bagong Pilipinas Pledge in Power pointpptxBagong Pilipinas Pledge in Power pointpptx
Bagong Pilipinas Pledge in Power pointpptx
 
How to Integrate Facebook in Odoo 17 - Odoo 17 Slides
How to Integrate Facebook in Odoo 17 - Odoo 17 SlidesHow to Integrate Facebook in Odoo 17 - Odoo 17 Slides
How to Integrate Facebook in Odoo 17 - Odoo 17 Slides
 
Q1_LE_Music and Arts 7_Lesson 1_Weeks 1-2.docx
Q1_LE_Music and Arts 7_Lesson 1_Weeks 1-2.docxQ1_LE_Music and Arts 7_Lesson 1_Weeks 1-2.docx
Q1_LE_Music and Arts 7_Lesson 1_Weeks 1-2.docx
 
great athletes ppt bahasa inggris kelas x kurikulum merdeka
great athletes ppt bahasa inggris kelas x kurikulum merdekagreat athletes ppt bahasa inggris kelas x kurikulum merdeka
great athletes ppt bahasa inggris kelas x kurikulum merdeka
 
Email Marketing in Odoo 17 - Odoo 17 Slides
Email Marketing  in Odoo 17 - Odoo 17 SlidesEmail Marketing  in Odoo 17 - Odoo 17 Slides
Email Marketing in Odoo 17 - Odoo 17 Slides
 
Class-Orientation for school year 2024 - 2025
Class-Orientation for school year 2024 - 2025Class-Orientation for school year 2024 - 2025
Class-Orientation for school year 2024 - 2025
 
PPT Jessica powerpoint physical geography
PPT Jessica powerpoint physical geographyPPT Jessica powerpoint physical geography
PPT Jessica powerpoint physical geography
 
How to Configure Field Cleaning Rules in Odoo 17
How to Configure Field Cleaning Rules in Odoo 17How to Configure Field Cleaning Rules in Odoo 17
How to Configure Field Cleaning Rules in Odoo 17
 
What is the Use of API.onchange in Odoo 17
What is the Use of API.onchange in Odoo 17What is the Use of API.onchange in Odoo 17
What is the Use of API.onchange in Odoo 17
 
principles of auditing types of audit ppt
principles of auditing types of audit pptprinciples of auditing types of audit ppt
principles of auditing types of audit ppt
 

Advance ROP Attacks

  • 1. Advance ROP Attacks Rashid Bhatt @raashidbhatt
  • 2. Agenda • Introduction to ROP Attacks • ROP Attack Variants • Alphanumeric ROP exploits • Searching gadgets • Questions?
  • 3. ROP Attacks • Introduced by hovad shacham • Circumvents DEP (data execution prevention) • Turing Complete`ness • More useful than ret-2-lib ( branching) • Applicable to various architectures
  • 4. ROP Attacks • Gadgets are the building blocks • Gadgets end with RET instruction • Example gadgets • Mov eax, ebx • Ret • Pop eax • Ret
  • 5. ROP attacks x86 stack layout . Registers ebp and esp point to base and top of the stack respective . EBP used to access local and passed paramters eg . [ebp + 8] first parameter (EBP + 4) for ret address . ESP used are a pointer for popping values out from stack
  • 6. ROP attacks • RET x86 instruction • Pops a value from the stack into EIP • Used to return control from a function • RET can have a argument eg RET 8 • RET 8 == EIP = stack[top], add ESP , 8
  • 7. X86 stack layout calling conventions __stdcall ( varadic arguments) Int __stdcall function(int a, int b) // < paramerts { int b,c; // local c variables return 0; } function(10, 20); // function call __stdcall X86 disassembly push 20 // arguments pushed from right to left push 10 call function function: push ebp // Stack epilouge mov ebp, esp sub esp, 8 //8 bytes for two variabeles …. …. add esp, 8 pop ebp ret 8 // ret 8 stack clearance by callie
  • 8. X86 stack layout calling conventions __cdecl( const no of args) Int __cdelc function(int a, int b) // < paramerts { int b,c; // local c variables return 0; } function(10, 20); // function call __cdecl X86 disassembly push 20 // arguments pushed from right to left push 10 call function add esp, 8 // stack clearance function: push ebp // Stack epilouge mov ebp, esp sub esp, 8 //8 bytes for two variabeles …. …. add esp, 8 pop ebp ret // ret no stack clearence
  • 9. Basic stack overflow • A local stack variable gets overflowed • CALL instruction pushes the EIP to the stack • Find a trampoline eg jmp esp to change the value to eip to attacker controlled buffer • demo
  • 10. What about NX bit ? • DEP restricts the execution of segments marked as r/w • We can re-use code from the address space of executable • Useful code chunks called as ROP gadgets • Multiple gadgets can be chained together and even API calls
  • 11. ROP Basics(load and store gadgets) • storing and loading values from and into memory • Primitive example pop eax; ret / pop ebx ret/ pop r32, ret • To memory store pop eax, pop edx, ret / mov [eax], edx; ret
  • 12. Wait a sec! » Handling NULL bytes • Some parameters contain NULL • Even some addresses contain zero values • Cannot inject NULL or zero values • Bug prone functions eg strcpy stop copying when they encounter a NULL byte (00 hex)
  • 13. Handling NULL bytes • Let x = value containing a ( many) NULL byte • Let y = mask = 0xffffffff • Mathematical axiom • A xor B = z (say) • Now z xor B = A • We can 0x00000000 xor 0xffffffff = z (say) • Xor it back to get the original value • We have xor esi, ebx ; ret!
  • 14. ROP basics(arithmetic ) • Msvcrt32.dll 0x77c4d6f add ebx, esi; stc; ret • Kernel32.dll 0x7c902af5 sub eax,ecx; ret • We have same for mul and div ! • Try in immunity search: add r32, r32;any;ret; • You will find huge no. of gadgets
  • 15. ROP basics(LOOPS) • UNCONDITIONAL LOOPS or INFINITE LOOPS • Pop back the value in ESP, pop esp;ret 7C80BCA8 5C POP ESP //kernel32.dll 7C80BCA9 C3 RETN
  • 16. ROP basics(conditional jumps ) • The tricky part • We need to modify ESP , based on certain comparisons . comparisons include greater than , less than , equal to; X <y X >y X == some_val .
  • 17. Comparing with zero • Divert flow through adding a certain value to esp • Store two values on the stack , value_to_be_checked and esp_delta (the value to be added to esp) • Load the val in a general purpose register say eax • X86 instruction NEG computes the two's complement and updates CF . if val == 0 the CF = 0; else CF = 1 • ADC x86 instruction add the source and dest with carry flag(ADC – add with carry flag) • Make a general purpose reg and zero by xor r32,r32; then apply adc r32,32
  • 18. Comparing with zero(contd..) • We have a REG (say eax) containing a single 1 bit or all 0 bits • Apply NEG instruction on that REG to obtain the two's complement • 2's comp will transform it into all zero's or all ones • Perform bit-wise AND with ESP_DELTA . according we will get ESP_DELTA as zero or its original value • ADD esp, ESP_DALTA to divert the control flow • DEMO
  • 19. Checking for == (equality) • Two values val1, val2 to be checked for equality • Load two values using load and store gadgets as shown earlier • Perform x86 SUB val1, val2,store back the result • If both the values are same result will be zero, . Check the result to zero as show in the previous slide • ADD esp, ESP_DALTA to divert the control flow • DEMO
  • 20. Checking for <, > (less or greater) • Two values val1, val2 to be checked for equality • Load two values using load and store gadgets as shown earlier • Perform x86 SUB val1, val2, SUB intruction sets the CF if dest > source • Save CF using xor r32, r32;ret; adc r32,r32 ret; as shown in ealier slide . CF will be 1 if dest > source else 0 • DEMO
  • 22. JUMP oriented Programming Attacks • ROP used gadgets ending with RET x86 instruction • JOP uses statements ending with Indirect Jump call • Instead of stack uses a dispatcher table to jump to different locations • Thwarts certain Anti-ROP defences
  • 23. JOP attacks (Dispatch table and Dispatcher gadget)
  • 24. JUMP oriented Programming Attacks • Dispatcher gadget increments a REG by certain value to make it point to next loc to jump on • Add ebx, 4 ; JMP [ebx] • Here , EBX points to the Dispatcher table • Same gadgets as in ROP attacks
  • 25. JOP(attack Model) • Cannot work on stack buffer overflow , because control flow diverts through a ret Instruction • Will be detected by anti-ROP defenses if(stack overflow is used) • Attack vectors include • 1: pointer overwrite • 2: Arbitrary DWORD overwrite • 3: C++ vtable overwrite
  • 27. Alphanumeric ROP Shellcode • Traditional Shellcode can be made alphanumeric by choosing only certain instruction Example . pop ecx has an opcode 0x59 which is the ASCII code of the character Y) • Similar technique used in ROP shellcode . Selecting a printable address rather than a printable opcode(in trad. shellcodes)
  • 28. Alphanumeric ROP Shellcode Basic Technique by adding two printable addresses. The range of ASCII printable characters is between 0x21 and 0x7e Example . A non-printable gadget in kernel32.dll at 0x77D4B8C2 {pop ebx;ret} can be represented by adding two printable addresses 0X225D414B(printable) + 0x55777777(printable) = 0x77D4B8C2(no-printable) • Combined together can be used to transform a printable code into non- printable • Similar technique used in ROP shellcode . Selecting a printable address rather than a printable opcode(in trad. shellcodes)
  • 29. Alphanumeric ROP Shellcode(gadgets) • Gadgets used for decoding addresses should be printable(bytes should be in range of 0x21 - 0x7e • We also need a memory region which has a printable address to store the decoded gadgets addresses marked as r/w . From reg to mem we have urlmon.dll 0x772C2E5E MOV DWORD PTR DS:[ECX],EAX . ESP related CRYPTUI.dll 0x775513E30 XCHG EAX,ESP . MSCTF.DLL 0x74722973 POP EAX . Mshtml.dll 0x7D504962 ADD EAX,ECX . msimtf.dll MEM to reg 0x74714263 MOV EAX,DWORD PTR DS:[ECX] . All of the dll's loaded by internet explorer
  • 30. Alphanumeric ROP Shellcode Alphanumeric ROP Messagebeep Shellcode >> s)rt:i=3PI'w""w"bIP}PI'www""bIP}PI'w"P` w^.,wxxxxs)rt"P`w0>Qu DEMO
  • 31. Effectively searching gadgets • Immunity debugger search for all sequences in all modules • ANY for any no of op codes and any reg • Match Different registers eg POP RA, RB ; RA and RB will be different • Best Practice search in reverse order