Crashing the Application
In order to exploit the target application, we need to crash the application and be able to overwrite the EIP with our own values.
Fuzzing the Application
This step can be skipped for some applications as we already know the buffer size that causes the crash.
Fuzzer.py
Fuzzing
The fuzzer tells us that the program crashed when600 bytes
was sent in as the buffer size. We also notice that the EIP
has been overwritten with \x41
.
Crashing the Application
This step can be used to verify the value from the fuzzing process.
Crasher.py
Crashing
Once Crasher.py
is ran, notice that the target application crashes and the EIP
is overwritten with \x41
. This confirms that 600 bytes
is indeed the buffer size that causes the target application to crash.
Last updated