fixed parser error, need parentheses
Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
7a9456d5ac
commit
cc4b481bc9
|
@ -879,7 +879,7 @@ function zrl_init(App $a) {
|
|||
$urlparts = parse_url($tmp_str);
|
||||
|
||||
$result = Cache::get("gprobe:" . $urlparts["host"]);
|
||||
if (!is_null($result)) && (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) {
|
||||
if ((!is_null($result)) && (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM)))) {
|
||||
logger("DDoS attempt detected for " . $urlparts["host"] . " by " . $_SERVER["REMOTE_ADDR"] . ". server data: " . print_r($_SERVER, true), LOGGER_DEBUG);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user