Tags: pwn 

Rating:

<h1> The Weather Challenge Writeup [pwn]</h1>

In this Challenge we were given a service to connect, but no binary has been given.

When we connect to the service it prints a long base64 encoded string and asks us to give name as input after that
it gretts us and closes.

The long base64 encoded string is a elf binary bytes and same elf is running on the service after printing the base64 encoded string.

After connecting to the server two to three times, we can observe that elf file is changing slightly.

Every binary follows the same pattern i.e Asks for the name using gets (with random offsets) then greet us and close.

So, our goal is to find the offset between the return address and input buffer and then construct a ROP chain to get a
shell.We have to do all this dynamically before the service timesout.

I used pwn tools to calculate the offset.

In the strings of the binary we can find "libc.so.6". I assumed it to be the libc file that the service is using.


Exploit path would be

1.) find offset to return address
2.) construct rop chain to leak libc address (__libc_start_main@got)
3.) return to main to use bof vuln again.
4.) calculate system address and
5.) construct rop chain to pop /bin/sh address into rdi and return to system


But I haven't got an idea on how to find the main function address as the binary is stripped.

This forced me to use buffer overflow vuln only once.

The restriction is that we have to construct all our rop chain in the first iteration only and we don't
know any libc address before returing to our first rop chain.

My idea is to write "/bin/sh" in a known address (.bss section) and overwrite one of functions GOT entry with

system function address and return to that functions plt with "/bin/sh" address in rdi.

We can use gets function as the write primitive.It is the best choice as we can give input after calculating the system address.


1.) find offset to return address
2.) construct rop chain to leak libc address (__libc_start_main@got) and to ask for input twice.
3.) calculate system address and
4.) overwrite puts@got with system address
5.) write "/bin/sh" in .bss section
6.) return to puts@plt with bss section adress in rdi register.

See the exploit.py file for code.

Original writeup (https://github.com/S3v3ru5/CTF-writeups/tree/master/X-MAS%20CTF/The%20Weather).