Keebin’ with Kristina: the One With the Curved Typewriter

Illustrated Kristina with an IBM Model M keyboard floating between her hands.

Aerodox Flies on Wireless Wings [Simon Merrett] didn’t know anything about keyboards when he started this project, but he didn’t let that stop him. [Simon] did what any of us …read more Continue reading Keebin’ with Kristina: the One With the Curved Typewriter

What are some exploitable memory corruption attacks I have not listed?

Dangling pointer(heap)
Use After Free(heap)
Double Free(heap)
Off by one(stack)
Integer Overflow(stack)
Unused Variable(stack and heap)
underrun(stack and heap)
race condition(stack and heap)

From what I’ve seen unused variable and under… Continue reading What are some exploitable memory corruption attacks I have not listed?

Can you perform a buffer overflow and a format string attack at the same time?

So I hope I’m phrasing this right. I’m trying to exploit a piece of c code which you can see below.
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>

int user_age;
void secretClub(){
Continue reading Can you perform a buffer overflow and a format string attack at the same time?