DEFCON Qual CTF 2024 - PWN - suscall challenge

( بِسْمِ اللَّـهِ الرَّحْمَـٰنِ الرَّحِيمِ )
(إن أحسنت فمن الله، وإن أسأت فمن نفسي والشيطان)


Solving "suscall" challenge from DEFCON Qual 2024. (challenge solved after the CTF)

The first thing is reversing it with Ghidra and after some static and dynamic analysis we can see that


there is a struct is created in the start of main if the file start with "sus" we will call the second function which is the challenge and this is a part of it


we can notice that there is call to our input file "(*ppcVar1[5])(file_path);" with whatever in "ppcVar[5]" and it point to a function that print if there is a sus file detected and this var is an allocated location so i added a break point on it and did more dynamic analysis. lets say if we control it and added "system" and replace the function that print sus detection with filename "sus;sh;" to give us our shell code but how we can get the system function and control this location?

if we check the stack we can find the allocation and this addr [0x4040c8] is pointing to the print function which is in [0x4012e9]. 


we have two issues now:
  • The first issue is the "exit" function which will exit after detection or printing that there is a sus file so how can we bypass it? if we can overwrite the address of exit it will solve our issue.
  • after understanding the binary more the struct which create in the first contain the address which will start write into it so if we can write the "exit@got" address in the ptr of this struct whatever we send after it will be stored in this new location
  • our idea now is to writing the "exit@got" into [0x4064a0] and we will send what we wanna to replace with "exit" function we can use a "ret" instruction.

  • The second issue is how we can get the libc address to calculate the address of system function.
  • to solve this a teammate overwrite the print function with printf to add another vulnerability to the binary which is FormatString to leak the libc and do the same when we get the system function.

note that offset "0x2308+8" is ptr that we will add where we wanna write the next input so we will add padding "0x2308+our_addr".

So our script will do the following

  • will overwrite the "exit@got" with "ret" instruction and we will be in the top of the custom_heap so we do not wanna to corrupt it so we will add the read function again after padding offset "0x18".
  • we will replace the print function with "printf" to make it vulnerable to FMT and leak the libc addr.


  • calculate the system function.
  • overwrite the "printf" function with the system function and send a new file with our payload "sus;sh;" so the "system" function will be called with it and we get a shell. 

and we will get our shell



The final script is in Github.

Special thanks to my teammates (specially @pipironii) without them I could not have solved this challenge or any other challenge in this CTF.

Comments

Popular posts from this blog

Exploit & Debug Looney Tunables CVE-2023-4911 Local Privilege Escalation in the glibc's ld.so

Lets Analysis STM32F103 Chip Firmware from Attify

[Debug/Exploit CVE-2022-24355] TP-Link TL-WR940N Stack-based Buffer Overflow