ROP and Shellcode
Source
#include <stdio.h>
void vuln() {
char buffer[20];
puts("Give me the input");
gets(buffer);
}
int main() {
vuln();
return 0;
}Exploitation
Final Exploit
64-bit
ASLR
Potential Problems
Last updated
Was this helpful?