Skip to content

Commit

Permalink
Merge pull request #593 from RedPine404/master
Browse files Browse the repository at this point in the history
Added IPv6 ULA regex match
  • Loading branch information
sstidl authored Dec 6, 2023
2 parents c32bf52 + d949663 commit f5ad810
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions backend/getIP.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ function getLocalOrPrivateIpInfo($ip)
return 'link-local IPv6 access';
}

// fc00::/7 Unique Local IPv6 Unicast Addresses
if (preg_match('/^(fc|fd)([0-9a-f]{0,4}:){1,7}[0-9a-f]{1,4}$/i', $ip) === 1) {
return 'ULA IPv6 access';
}

// anything within the 127/8 range is localhost ipv4, the ip must start with 127.0
if (strpos($ip, '127.') === 0) {
return 'localhost IPv4 access';
Expand Down

0 comments on commit f5ad810

Please sign in to comment.