求C写的对计算机无害的病毒代码

"FastCGI Hello! (C, fcgi_stdio library)""FastCGI Hello! (C, fcgi_stdio library)""Request number %d running on host %s ",++count, getenv("SERVER_HOSTNAME"));} }
求C写的对计算机无害的病毒代码
#include "fcgi_stdio.h"
#include <stdlib.h>
int count;
void initialize(void)
{
count=0;
}
void main(void)
{
initialize();
while (FCGI_Accept() >= 0) {
printf("Content-type: text/html "
" "
"<title>FastCGI Hello! (C, fcgi_stdio library)</title>"
"<h1>FastCGI Hello! (C, fcgi_stdio library)</h1>"
"Request number %d running on host <i>%s</i> ",
++count, getenv("SERVER_HOSTNAME"));
}
}2011-03-27
mengvlog 阅读 10 次 更新于 2025-07-21 02:38:58 我来答关注问题0
檬味博客在线解答立即免费咨询

代码相关话题

Copyright © 2023 WWW.MENGVLOG.COM - 檬味博客
返回顶部