some_guy@lemmy.sdf.org to Technology@lemmy.world · 21 hours agoI use Zip Bombs to Protect my Serveridiallo.comexternal-linkmessage-square76fedilinkarrow-up1435arrow-down112file-text
arrow-up1423arrow-down1external-linkI use Zip Bombs to Protect my Serveridiallo.comsome_guy@lemmy.sdf.org to Technology@lemmy.world · 21 hours agomessage-square76fedilinkfile-text
minus-squaremelroy@kbin.melroy.orglinkfedilinkarrow-up13arrow-down1·21 hours agoLooks fine to me. Only 1 CPU core I think was 100%. 10+0 records in 10+0 records out 10737418240 bytes (11 GB, 10 GiB) copied, 28,0695 s, 383 MB/s
minus-squaremelroy@kbin.melroy.orglinkfedilinkarrow-up12arrow-down2·21 hours agoow… now the idea is to unzip it right? nice idea: if (ipIsBlackListed() || isMalicious()) { header("Content-Encoding: deflate, gzip"); header("Content-Length: "+ filesize(ZIP_BOMB_FILE_10G)); // 10 MB readfile(ZIP_BOMB_FILE_10G); exit; }
minus-squarembirth@lemmy.mllinkfedilinkEnglisharrow-up8arrow-down1·20 hours agoMight need some if (ob_get_level()) ob_end_clean(); before the readfile. 😉
Looks fine to me. Only 1 CPU core I think was 100%.
10+0 records in 10+0 records out 10737418240 bytes (11 GB, 10 GiB) copied, 28,0695 s, 383 MB/s
ow… now the idea is to unzip it right?
nice idea:
if (ipIsBlackListed() || isMalicious()) { header("Content-Encoding: deflate, gzip"); header("Content-Length: "+ filesize(ZIP_BOMB_FILE_10G)); // 10 MB readfile(ZIP_BOMB_FILE_10G); exit; }
Might need some
if (ob_get_level()) ob_end_clean();
before the
readfile
. 😉