10 GB in a 27 KB Gzip File [My Present To HTTP Scanners]

Here’s a gzip bomb I use to redirect http scanners and web scrapers to: 10G.gz Create a PHP file with the following: < ?php header('Content-Encoding: gzip'); echo file_get_contents('10G.gz'); Example: http://rehmann.co/gz-bomb.php How it works: A web-crawler or browser requests the page and sends the "accept-encoding: gzip, deflate, br" header. So long as gzip is accepted, the ... Read more