Files
decpdf.site/lib/AntiSpam.php
T
2026-06-04 11:13:34 +01: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);
}
}
}