Files
decpdf.site/lib/AntiSpam.php
2026-01-18 00:53:18 +00:00

13 lines
155 B
PHP
Executable File

<?php
class AntiSpam {
public static function tarpit() {
while (true) {
print(chr(rand() & 0xff));
ob_flush();
flush();
sleep(1);
}
}
}