mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-25 23:41:04 +00:00
13 lines
378 B
PHP
13 lines
378 B
PHP
<?php
|
|
while(true)
|
|
{
|
|
$handle = fsockopen('127.0.0.1', 11211, $errno, $errstr, 2);
|
|
for($i = rand(0, 200) ; $i < 300 ; $i++)
|
|
{
|
|
fwrite($handle, 'set ' . md5(microtime(true) . rand(0, 250000000)) . ' 0 18000 10' . "\r\n");
|
|
fwrite($handle, 'aaaaaaaaaa' . "\r\n");
|
|
}
|
|
usleep(rand(0, 10000));
|
|
set_time_limit(5);
|
|
//sleep(rand(0,10));
|
|
} |