ret2plt ASLR bypass
Overview
#include <stdio.h>
void vuln() {
puts("Come get me");
char buffer[20];
gets(buffer);
}
int main() {
vuln();
return 0;
}Analysis
Exploitation
Final Exploit
64-bit
Last updated
Was this helpful?