2012-04-12 03:20:49 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2012 Tinyboard Development Group
|
|
|
|
*/
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {
|
2012-04-12 03:20:49 -04:00
|
|
|
// You cannot request this file directly.
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$hidden_inputs_twig = array();
|
|
|
|
|
|
|
|
class AntiBot {
|
2012-04-12 07:56:01 -04:00
|
|
|
public $salt, $inputs = array(), $index = 0;
|
2012-04-12 03:20:49 -04:00
|
|
|
|
|
|
|
public static function randomString($length, $uppercase = false, $special_chars = false) {
|
|
|
|
$chars = 'abcdefghijklmnopqrstuvwxyz0123456789';
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($uppercase)
|
2012-04-12 03:20:49 -04:00
|
|
|
$chars .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($special_chars)
|
2012-04-12 03:20:49 -04:00
|
|
|
$chars .= ' ~!@#$%^&*()_+,./;\'[]\\{}|:"<>?=-` ';
|
|
|
|
|
|
|
|
$chars = str_split($chars);
|
|
|
|
|
|
|
|
$ch = array();
|
|
|
|
|
|
|
|
// fill up $ch until we reach $length
|
2012-04-12 10:18:19 -04:00
|
|
|
while (count($ch) < $length) {
|
2012-04-12 03:20:49 -04:00
|
|
|
$n = $length - count($ch);
|
|
|
|
$keys = array_rand($chars, $n > count($chars) ? count($chars) : $n);
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($n == 1) {
|
2012-04-12 03:20:49 -04:00
|
|
|
$ch[] = $chars[$keys];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
shuffle($keys);
|
2012-04-12 10:18:19 -04:00
|
|
|
foreach ($keys as $key)
|
2012-04-12 03:20:49 -04:00
|
|
|
$ch[] = $chars[$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
$chars = $ch;
|
|
|
|
|
|
|
|
return implode('', $chars);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function make_confusing($string) {
|
|
|
|
$chars = str_split($string);
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
foreach ($chars as &$c) {
|
|
|
|
if (rand(0, 2) != 0)
|
2012-04-12 03:20:49 -04:00
|
|
|
continue;
|
|
|
|
$c = mb_encode_numericentity($c, array(0, 0xffff, 0, 0xffff), 'UTF-8');
|
|
|
|
}
|
|
|
|
|
|
|
|
return implode('', $chars);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __construct(array $salt = array()) {
|
|
|
|
global $config;
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (!empty($salt)) {
|
2012-04-12 03:20:49 -04:00
|
|
|
// create a salted hash of the "extra salt"
|
|
|
|
$this->salt = implode(':', $salt);
|
|
|
|
} else {
|
|
|
|
$this->salt = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
shuffle($config['spam']['hidden_input_names']);
|
|
|
|
|
|
|
|
$input_count = rand($config['spam']['hidden_inputs_min'], $config['spam']['hidden_inputs_max']);
|
|
|
|
$hidden_input_names_x = 0;
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
for ($x = 0; $x < $input_count ; $x++) {
|
|
|
|
if ($hidden_input_names_x === false || rand(0, 2) == 0) {
|
2012-04-12 03:20:49 -04:00
|
|
|
// Use an obscure name
|
|
|
|
$name = $this->randomString(rand(10, 40));
|
|
|
|
} else {
|
|
|
|
// Use a pre-defined confusing name
|
|
|
|
$name = $config['spam']['hidden_input_names'][$hidden_input_names_x++];
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($hidden_input_names_x >= count($config['spam']['hidden_input_names']))
|
2012-04-12 03:20:49 -04:00
|
|
|
$hidden_input_names_x = false;
|
|
|
|
}
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (rand(0, 2) == 0) {
|
2012-04-12 03:20:49 -04:00
|
|
|
// Value must be null
|
|
|
|
$this->inputs[$name] = '';
|
2012-04-12 10:18:19 -04:00
|
|
|
} elseif (rand(0, 4) == 0) {
|
2012-04-12 03:20:49 -04:00
|
|
|
// Numeric value
|
|
|
|
$this->inputs[$name] = (string)rand(0, 100);
|
|
|
|
} else {
|
|
|
|
// Obscure value
|
2012-04-12 07:56:01 -04:00
|
|
|
$this->inputs[$name] = $this->randomString(rand(5, 100), true, true);
|
2012-04-12 03:20:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function html($count = false) {
|
2012-04-12 07:56:01 -04:00
|
|
|
global $config;
|
|
|
|
|
2012-04-12 03:20:49 -04:00
|
|
|
$elements = array(
|
|
|
|
'<input type="hidden" name="%name%" value="%value%">',
|
|
|
|
'<input type="hidden" value="%value%" name="%name%">',
|
|
|
|
'<input style="display:none" type="text" name="%name%" value="%value%">',
|
|
|
|
'<input style="display:none" type="text" value="%value%" name="%name%">',
|
|
|
|
'<span style="display:none"><input type="text" name="%name%" value="%value%"></span>',
|
|
|
|
'<div style="display:none"><input type="text" name="%name%" value="%value%"></div>',
|
|
|
|
'<div style="display:none"><input type="text" name="%name%" value="%value%"></div>',
|
|
|
|
'<textarea style="display:none" name="%name%">%value%</textarea>',
|
|
|
|
'<textarea name="%name%" style="display:none">%value%</textarea>'
|
|
|
|
);
|
|
|
|
|
|
|
|
$html = '';
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($count === false) {
|
2012-04-12 07:56:01 -04:00
|
|
|
$count = rand(1, count($this->inputs) / 15);
|
|
|
|
}
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($count === true) {
|
2012-04-12 03:20:49 -04:00
|
|
|
// all elements
|
|
|
|
$inputs = array_slice($this->inputs, $this->index);
|
|
|
|
} else {
|
|
|
|
$inputs = array_slice($this->inputs, $this->index, $count);
|
|
|
|
}
|
|
|
|
$this->index += count($inputs);
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
foreach ($inputs as $name => $value) {
|
2012-04-12 03:20:49 -04:00
|
|
|
$element = false;
|
2012-04-12 10:18:19 -04:00
|
|
|
while (!$element) {
|
2012-04-12 03:20:49 -04:00
|
|
|
$element = $elements[array_rand($elements)];
|
2012-04-12 10:18:19 -04:00
|
|
|
if (strpos($element, 'textarea') !== false && $value == '') {
|
2012-04-12 03:20:49 -04:00
|
|
|
// There have been some issues with mobile web browsers and empty <textarea>'s.
|
|
|
|
$element = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$element = str_replace('%name%', utf8tohtml($name), $element);
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (rand(0, 2) == 0)
|
2012-04-12 03:20:49 -04:00
|
|
|
$value = $this->make_confusing($value);
|
|
|
|
else
|
|
|
|
$value = utf8tohtml($value);
|
2012-04-12 07:56:01 -04:00
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (strpos($element, 'textarea') === false)
|
2012-04-12 07:56:01 -04:00
|
|
|
$value = str_replace('"', '"', $value);
|
|
|
|
|
2012-04-12 03:20:49 -04:00
|
|
|
$element = str_replace('%value%', $value, $element);
|
|
|
|
|
|
|
|
$html .= $element;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hash() {
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
// This is the tricky part: create a hash to validate it after
|
|
|
|
// First, sort the keys in alphabetical order (A-Z)
|
|
|
|
$inputs = $this->inputs;
|
|
|
|
ksort($inputs);
|
|
|
|
|
|
|
|
$hash = '';
|
|
|
|
// Iterate through each input
|
2012-04-12 10:18:19 -04:00
|
|
|
foreach ($inputs as $name => $value) {
|
2012-04-12 03:20:49 -04:00
|
|
|
$hash .= $name . '=' . $value;
|
|
|
|
}
|
|
|
|
// Add a salt to the hash
|
|
|
|
$hash .= $config['cookies']['salt'];
|
|
|
|
|
|
|
|
// Use SHA1 for the hash
|
|
|
|
return sha1($hash . $this->salt);
|
|
|
|
}
|
2012-04-12 07:56:01 -04:00
|
|
|
}
|
2012-04-12 03:20:49 -04:00
|
|
|
|
2012-04-12 07:56:01 -04:00
|
|
|
function _create_antibot($board, $thread) {
|
|
|
|
global $config;
|
2012-04-12 03:20:49 -04:00
|
|
|
|
2012-04-12 07:56:01 -04:00
|
|
|
$antibot = new AntiBot(array($board, $thread));
|
2012-04-12 03:20:49 -04:00
|
|
|
|
2012-04-12 08:14:31 -04:00
|
|
|
query('DELETE FROM `antispam` WHERE `expires` < UNIX_TIMESTAMP()') or error(db_error());
|
2012-04-12 03:20:49 -04:00
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($thread)
|
2012-04-12 07:56:01 -04:00
|
|
|
$query = prepare('UPDATE `antispam` SET `expires` = UNIX_TIMESTAMP() + :expires WHERE `board` = :board AND `thread` = :thread');
|
2012-04-12 03:20:49 -04:00
|
|
|
else
|
2012-04-12 07:56:01 -04:00
|
|
|
$query = prepare('UPDATE `antispam` SET `expires` = UNIX_TIMESTAMP() + :expires WHERE `board` = :board AND `thread` IS NULL');
|
2012-04-12 03:20:49 -04:00
|
|
|
|
2012-04-12 07:56:01 -04:00
|
|
|
$query->bindValue(':board', $board);
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($thread)
|
2012-04-12 07:56:01 -04:00
|
|
|
$query->bindValue(':thread', $thread);
|
|
|
|
$query->bindValue(':expires', $config['spam']['hidden_inputs_expire']);
|
|
|
|
$query->execute() or error(db_error($query));
|
2012-04-12 03:20:49 -04:00
|
|
|
|
2012-04-12 07:56:01 -04:00
|
|
|
$query = prepare('INSERT INTO `antispam` VALUES (:board, :thread, CRC32(:hash), UNIX_TIMESTAMP(), NULL, 0)');
|
|
|
|
$query->bindValue(':board', $board);
|
|
|
|
$query->bindValue(':thread', $thread);
|
|
|
|
$query->bindValue(':hash', $antibot->hash());
|
|
|
|
$query->execute() or error(db_error($query));
|
2012-04-12 03:20:49 -04:00
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($query->rowCount() == 0) {
|
2012-04-12 07:56:01 -04:00
|
|
|
// there was no database entry for this hash. most likely expired.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $antibot;
|
2012-04-12 03:20:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function checkSpam(array $extra_salt = array()) {
|
2012-04-12 07:56:01 -04:00
|
|
|
global $config, $pdo;
|
2012-04-12 03:20:49 -04:00
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (!isset($_POST['hash']))
|
2012-04-12 03:20:49 -04:00
|
|
|
return true;
|
|
|
|
|
|
|
|
$hash = $_POST['hash'];
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (!empty($extra_salt)) {
|
2012-04-12 03:20:49 -04:00
|
|
|
// create a salted hash of the "extra salt"
|
|
|
|
$extra_salt = implode(':', $extra_salt);
|
|
|
|
} else {
|
|
|
|
$extra_salt = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reconsturct the $inputs array
|
|
|
|
$inputs = array();
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
foreach ($_POST as $name => $value) {
|
|
|
|
if (in_array($name, $config['spam']['valid_inputs']))
|
2012-04-12 03:20:49 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
$inputs[$name] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort the inputs in alphabetical order (A-Z)
|
|
|
|
ksort($inputs);
|
|
|
|
|
|
|
|
$_hash = '';
|
|
|
|
|
|
|
|
// Iterate through each input
|
2012-04-12 10:18:19 -04:00
|
|
|
foreach ($inputs as $name => $value) {
|
2012-04-12 03:20:49 -04:00
|
|
|
$_hash .= $name . '=' . $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a salt to the hash
|
|
|
|
$_hash .= $config['cookies']['salt'];
|
|
|
|
|
|
|
|
// Use SHA1 for the hash
|
|
|
|
$_hash = sha1($_hash . $extra_salt);
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($hash != $_hash)
|
2012-04-12 07:56:01 -04:00
|
|
|
return true;
|
|
|
|
|
|
|
|
$query = prepare('UPDATE `antispam` SET `passed` = `passed` + 1 WHERE `hash` = CRC32(:hash)');
|
|
|
|
$query->bindValue(':hash', $hash);
|
|
|
|
$query->execute() or error(db_error($query));
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($query->rowCount() == 0) {
|
2012-04-12 07:56:01 -04:00
|
|
|
// there was no database entry for this hash. most likely expired.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$query = prepare('SELECT `passed` FROM `antispam` WHERE `hash` = CRC32(:hash)');
|
|
|
|
$query->bindValue(':hash', $hash);
|
|
|
|
$query->execute() or error(db_error($query));
|
|
|
|
$passed = $query->fetchColumn(0);
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($passed > $config['spam']['hidden_inputs_max_pass'])
|
2012-04-12 07:56:01 -04:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
2012-04-12 03:20:49 -04:00
|
|
|
}
|
|
|
|
|