Merge pull request #2388 from Sh4d1/ipv6_brackets

Remove external Ipv6 brackets in servername if any
This commit is contained in:
Mark Drobnak
2018-09-01 19:44:29 -04:00
committed by GitHub

View File

@ -8,6 +8,8 @@
// Sanitise HTTP_HOST output
$serverName = htmlspecialchars($_SERVER["HTTP_HOST"]);
// Remove external ipv6 brackets if any
$serverName = preg_replace('/^\[(.*)\]$/', '${1}', $serverName);
if (!is_file("/etc/pihole/setupVars.conf"))
die("[ERROR] File not found: <code>/etc/pihole/setupVars.conf</code>");