Файл: klubwm_ru_krutilka/index.php
Строк: 62
<?php
error_reporting(0);
ob_start('ob_gzhandler');
header('Content-type: application/xhtml+xml; charset=utf-8');
$cfg = unserialize(file_get_contents('data/cfg.dat'));
include 'inc/head.php'; echo '
<form action="go.php" method="post">
<div class="title">Адрес:</div><div class="menu">
<input name="url" value="'.$cfg['url'].'" /><br />
</div><div class="title">Реферер:</div><div class="menu">
<input name="referer" value="'.$cfg['referer'].'" /><br />
</div><div class="title">Количество:</div><div class="menu">
<input name="count" value="'.$cfg['count'].'" maxlength="3" size="5" /><br />
</div><div class="title">Таймаут:</div><div class="menu">
<input name="min" value="'.$cfg['min'].'" maxlength="2" size="3" /> - <input name="max" value="'.$cfg['max'].'" maxlength="2" size="3" /><br />
</div><div class="title">Юзер агент:</div><div class="menu">';
$user_agent = count(file('data/user_agent.dat'));
$mobile_user_agent = count(file('data/mobile_user_agent.dat'));
echo '<input name="ua" type="radio" value="0"'.($cfg['ua'] == '0' ? ' checked="checked"' : '').' /> Все (В базе '.($user_agent + $mobile_user_agent).' шт.)<br />
<input name="ua" type="radio" value="1"'.($cfg['ua'] == '1' ? ' checked="checked"' : '').' /> Компьютерные (В базе '.$user_agent.' шт.)<br />
<input name="ua" type="radio" value="2"'.($cfg['ua'] == '2' ? ' checked="checked"' : '').' /> Мобильные (В базе '.$mobile_user_agent.' шт.)<br />
</div><div class="title">Дополнительно:</div><div class="menu">
<input name="proxy" type="checkbox" value="1"'.($cfg['proxy'] == '1' ? ' checked="checked"' : '').' /> Использование прокси (В базе '.count(file('data/proxy.dat')).' шт.)<br />
<input name="ip" type="checkbox" value="1"'.($cfg['ip'] == '1' ? ' checked="checked"' : '').' /> Подмена IP в заголовках<br />
<input name="redirect" type="checkbox" value="1"'.($cfg['redirect'] == '1' ? ' checked="checked"' : '').' /> Перехват переадресаций<br />
<input type="submit" value="Запустить" />
</form>
</div>
'; include 'inc/foot.php';
ob_end_flush();
?>