[Solved] PHP – Is it possible to implement a gzip bomb in PHP for malware scanners
I found a ready-to-use solution on Github. It’s called GzipBloat and it does exactly what I was looking for. First you generate a 10GB gzip file (10MB after first compression) filled with input from /dev/zero dd if=/dev/zero bs=1M count=10240 | gzip > 10G.gzip In PHP you then set the content encoding and send the gzip … Read more