added bomb for hack scanners

w00tw00t, ratz and shits like these crash when reading the 10gb gzip file
This commit is contained in:
Albirew 2018-07-22 00:06:47 +02:00
parent f3838c8b17
commit bf6b6d026f
4 changed files with 30 additions and 2 deletions

BIN
10G.gzip Normal file

Binary file not shown.

10
bombe.php Normal file
View file

@ -0,0 +1,10 @@
<?php
//prepare the client to recieve GZIP data. This will not be suspicious
//since most web servers use GZIP by default
header("Content-Encoding: gzip");
header("Content-Length: ".filesize('10G.gzip'));
//Turn off output buffering
if (ob_get_level()) ob_end_clean();
//send the gzipped file to the client
readfile('10G.gzip');
?>

View file

@ -1 +1,10 @@
<?php header('Location: /w00tw00t-redirection-de-wp-login.php-pour-ban'); ?>
<?php
//prepare the client to recieve GZIP data. This will not be suspicious
//since most web servers use GZIP by default
header("Content-Encoding: gzip");
header("Content-Length: ".filesize('10G.gzip'));
//Turn off output buffering
if (ob_get_level()) ob_end_clean();
//send the gzipped file to the client
readfile('10G.gzip');
?>

View file

@ -1 +1,10 @@
<?php header('Location: /w00tw00t-redirection-de-xmlrpc.php-pour-ban'); ?>
<?php
//prepare the client to recieve GZIP data. This will not be suspicious
//since most web servers use GZIP by default
header("Content-Encoding: gzip");
header("Content-Length: ".filesize('10G.gzip'));
//Turn off output buffering
if (ob_get_level()) ob_end_clean();
//send the gzipped file to the client
readfile('10G.gzip');
?>