HEX
Server: Apache
System: Linux sxb1plzcpnl440011.prod.sxb1.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: xfp2mtarcm67 (7705020)
PHP: 7.3.33
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/limit-login-attempts-reloaded/lib/CidrCheck.php
<?php

namespace LLAR\Lib;

class CidrCheck {

	public function match($ip, $cidr) {

		if (!filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) {

			return false;
		}

		$c = explode('/', $cidr);
		$subnet = isset($c[0]) ? $c[0] : NULL;
		$mask = isset($c[1]) ? $c[1] : NULL;
		if ($mask === null) {
			$mask = 32;
		}

		return $this->IPv4Match($ip, $subnet, $mask);
	}

	private function IPv4Match($address, $subnetAddress, $subnetMask) {

		if (!filter_var($subnetAddress, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) || $subnetMask === NULL || $subnetMask === "" || $subnetMask < 0 || $subnetMask > 32) {
			return false;
		}

		$address = ip2long($address);
		$subnetAddress = ip2long($subnetAddress);
		$mask = -1 << (32 - $subnetMask);
		$subnetAddress &= $mask; # nb: in case the supplied subnet wasn't correctly aligned
		return ($address & $mask) == $subnetAddress;
	}

}