1

これはコードです:

char *command, *buffer;

command = (char *) malloc(200);
bzero(command, 200);

strcpy(command, "./notesearch \'");
buffer = command + strlen(command);
for(int i=0; i < 160; i+=4) {
    *((unsigned int *)(buffer+i)) = ret; // What does this syntax mean?
}

ここで完全なコードを取得できます => https://raw.githubusercontent.com/intere/hacking/master/booksrc/exploit_notesearch.c

初心者なので助けてください。

4

2 に答える 2