HITCON CTF 2022 EaaS

WriteUp 1年前 (2022) admin
561 0 0

HITCON CTF 2022

EaaS

  • Solved: 3/430
  • Score: 421

Vulnerability

  • Document.save() in the Python fitz package function has a buffer overflow vuln.

Exploit

Some protection is disabled:

  • python binary’s PIE
  • fitz.so’s canary

We can overwrite the return address because the canary is disabled. But the overwrite value has some restrictions:

  1. each byte must be in the 0x00~0x7f range or the byte will be encoded.
  2. cannot write a null byte.
  3. a null byte will be appended to the end of the string.

So we need to do a partial overwrite on the return address. Trying to jump to an gadget near the original return address. But which gadget should we jump on?

Because the python binary is PIE disabled, it should be a great target. In my solution, I want to jump to python’s interactive mode and execute arbitrary python code. After reading the python’s source code, I found a point that can be used: [pymain_repl] (https://github.com/python/cpython/blob/d291a82df33cd8c917a374fef2a2373beda78b77/Modules/main.c#L543). But due to the restrictions, we couldn’t write the address directly.

So we need to use the functionality that allows us to choose an additional option for Document.save(). The option will be put on the stack as an argument. So we can use the option to put the target address we want to jump to and partially overwrite the return address to a pop pop pop... ret gadget. Then we can bypass the restriction.

Depending on the gadget we choose, we may need to race the 1/16 or 1/4096 probability.

 

原文始发于Github:HITCON CTF 2022 EaaS

版权声明:admin 发表于 2022年11月28日 上午10:34。
转载请注明:HITCON CTF 2022 EaaS | CTF导航

相关文章

暂无评论

您必须登录才能参与评论!
立即登录
暂无评论...