-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrop-02.c
53 lines (39 loc) · 1.09 KB
/
rop-02.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// rop-02.c
#include <sys/types.h>
#include <sys/stat.h>
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
void aid() {
asm("pop %rdi; ret");
asm("pop %rsi; ret");
asm("pop %rdx; ret");
}
int main(int argc, char **argv) {
char x;
char buffer[256];
// Obtenemos el valor del base pointer.
register uint64_t rbp asm("rbp");
// Obtenemos el valor de la dirección de retorno.
uint64_t *ret_addr = (uint64_t *)(rbp + 8);
// Obtenemos el valor del canario.
uint64_t canario = *(uint64_t *)(rbp - 8);
printf("\n");
printf("Explotando una vulnerabilidad de lectura obtenemos "
"los siguientes valores:\n\n");
printf("Canario:\n");
printf("0x%lx\n\n", canario);
printf("&x:\n");
printf("%p\n\n", &x);
printf("&exit:\n");
printf("%p\n\n", exit);
printf("&aid:\n");
printf("%p\n\n", aid);
printf("Inyectar shellcode en el stack y ejecutarlo.\n");
getchar();
int fd = open("/tmp/rop-02/input.bin", O_RDONLY);
read(fd, &buffer, 512);
return 0;
}