BugTraq
Back to list
|
Post reply
RE: Decompression Bombs
Feb 09 2004 05:33PM
SBNelson thermeon com
> dd if=/dev/zero of=testfile count=10000&&gzip testfile&&ls -la testfile
No need to fill up your own disk -- do this instead:
dd if=/dev/zero bs=1k count=10000 | gzip - > testfile.gz
[ reply ]
Privacy Statement
Copyright 2010, SecurityFocus
No need to fill up your own disk -- do this instead:
dd if=/dev/zero bs=1k count=10000 | gzip - > testfile.gz
[ reply ]