摘要: 原文地址:http://blog.csdn.net/morewindows/article/details/6887136缓冲区溢出与数据执行保护DEP介绍先看一个缓冲区溢出的C++实例程序,代码如下(VC6.0下编译通过): 1 #include <windows.h> 2 #include <conio.h> 3 #include <stdio.h> 4 #include <process.h> 5 #include <string.h> 6 void foo(const char *input) 7 { 8 char buf[4 阅读全文