栈溢出 利用jmp esp绕过栈帧移位实验代码实验目的实验环境实验过程实验原理
实验代码#include<stdio.h>#include<windows.h>#define PASSWORD "1234567"int verify_password(char *password){ int authenticated; char buffer[44]; authenticated = strcmp(password,PASSWORD); strcpy(buffer,password);//over