一个缓冲区溢出的问题
这段代码#include "stdio.h"
#include "windows.h"
void main()
{
char*data="shell shell shell shell shell shell shell shell What the Fuck?";
char buf[10];
strcpy(data,buf);
}
缓冲区溢出的基本程序(不是地球人才不知道),怎么修改才能变成病毒呢?
像“红色代码”一样
我看过很多的病毒源码(像远程溢出攻击的代码)都像这样结构的
怎么才能让电脑缓冲区溢出然后就运行指定的恶意代码呢?
(大神快来!)