-
-
新手求助,0day安全中栈溢出实验问题
-
发表于:
2014-3-2 21:53
5949
-
如上。。。为何不会在函数返回时根据被溢出的返回地址去执行shellcode呢?
实验是0day安全第二章的。。
源码如下:
#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);
__asm int 3
return authenticated;
}
main()
{
int valid_flag=0;
char password[1024];
FILE * fp;
LoadLibrary("user32.dll");
if (!(fp=fopen("password.txt","rw+")))
{
exit(0);
}
fscanf(fp,"%s",password);
valid_flag=verify_password(password);
if(valid_flag)
{
printf("incorrect password");
}
else
{
printf("Congratulations!You have passed the verification!\n");
}
fclose(fp);
}
[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)