Protostar - stack3
Moving on to the next challenge. Things get pretty interesting over here. Our task is to somehow call the “win()” method. Again as you can see this is actually a buffer overflow attack. Here’s the code, let’s take a closer look at it.
We’re dealing with function pointers in this case, which we get to know from “int (fp)()”.
A pointer is a special kind of variable which ‘points’ to a particular memory location. If we have to access the contents at that location we ‘dereference’ it using the “*****” operator.
So you can think of it in this way, if I declare a pointer “int *a”. This tells me that a
will give me the memory location and *a
will actually give me the contents of that memory location.
A function pointer is the same, it isn’t a true function in it’s true sense. The function pointer just points to executable code, where as a normal pointer points to certain data.
Now that we know that a pointer ‘points’ to a certain location, we can exploit this.
The solution
This solution to this challenge is pretty simple once you understand how function pointers work. We somehow have to change the value of fp
and make it point to the location of the “win()” method.
Now the question arises… how the heck do I get the address of the “win()” method? If we take a look at the hints on the site we see two ways. One is gdb and the other objdump. I’ll demonstrate both the ways.
First let’s take a look at the address of “win()” using objdump.
We get the address of the “win()” method which is “0x08048424”. Now let’s do the same, but this time using gdb.
This is how you get the address of the function using gdb.
Now that we have our address, let’s exploit the binary. Since we know the “buffer” variable is of 64 bytes, we add that much padding. Also, keep in mind that we’re working on a little endian architecture so we write the address accordingly.
Pwned! Nice and simple, considering that we learn’t a thing or two about function pointers, this challenge wasn’t that boring.
Sites
Protostar Phrack Function Pointers