Ret2lib + Printf leak - arm64
Ret2lib - NX bypass with ROP (no ASLR)
#include <stdio.h>
void bof()
{
char buf[100];
printf("\nbof>\n");
fgets(buf, sizeof(buf)*3, stdin);
}
void main()
{
printfleak();
bof();
}Find offset
x30 offset


Find system and /bin/sh string
/bin/sh string
Find Gadgets
Exploit
Ret2lib - NX, ASL & PIE bypass with printf leaks from the stack
PIE and ASLR but no canary
Printf leaks


x30 offset
Find Gadgets
Exploit
Last updated

