NULLCON CTF Vuln4 – Stack Buffer Overflow
Brooklynt Overflow Recently Competed in HackIM CTF. This is a writeup of the vuln4 service. The author was kind enough to provide source to this challenge which is nice but ultimately not necessary or terribly helpful.
NULLCON CTF Vuln3 - Heap Buffer Overflow
Brooklynt Overflow Recently Competed in HackIM CTF. This is a writeup of the vuln3 service.
Vuln3 is a service exposed to the Internet via xinetd or something similar. It accepts input from you writes it to the stack, parses it and performs actions based on it. It does this until you disconnect. The important parts of user input are dwords at offset 0x28 and 0x50. The dword at offset 0x28 tell the service what operation to perform. The dword at offset 0x50 is used only when you ask the service to allocate some memory for you, it is then used as the argument to malloc
.
NullCon Vuln 2 Stack Based Buffer Overflow
Exploitation 200 HackIM
NULLCON CTF Vuln1 - DRb
This challenge was relatively straightforward, especially given the fact that we have access to the source.