if ( hook_is_blocked_ip() ) {
exit();
}
///////////////////////////////////////////////////////////////////////////////////////////////////
function hook_is_blocked_ip()
{
switch ( $_SERVER['REMOTE_ADDR'] ) {
case '207.182.129.42':
case '111.160.70.199':
case '195.234.4.144':
case '83.137.56.69':
case '59.172.182.62':
case '155.212.21.2':
case '119.93.229.211':
case '68.71.223.9':
case '64.22.207.2':
case '62.165.156.2':
case '12.168.203.132':
case '78.133.103.164':
return true;
}
return false;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
?>