13 lines
155 B
PHP
Executable File
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);
|
|
}
|
|
}
|
|
}
|