André 2017-10-14 23:26:14 +02:00
commit 92e8233c92
2 changed files with 22 additions and 10 deletions

View File

@ -28,7 +28,8 @@ function in_net($addr, $net) {
return substr($addr_bin, 0, $mask) == substr($net_bin, 0, $mask);
}
try {
if (isset($_GET['host'])) {
try {
foreach ($redis->hGetAll('WHITELISTED_FWD_HOST') as $host => $source) {
if (in_net($_GET['host'], $host)) {
echo '200 PERMIT';
@ -36,9 +37,19 @@ try {
}
}
echo '200 DUNNO';
}
catch (RedisException $e) {
}
catch (RedisException $e) {
echo '200 DUNNO';
exit;
}
} else {
try {
foreach ($redis->hGetAll('WHITELISTED_FWD_HOST') as $host => $source) {
echo $host . "\n";
}
}
catch (RedisException $e) {
exit;
}
}
?>

View File

@ -0,0 +1 @@
whitelisted_ip = "http://172.22.1.251:8081/forwardinghosts.php";