mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
add ::ffff: to internal ip check (#1701)
* add ::ffff: to internal ip check * check StartsWith
This commit is contained in:
parent
fd37cb5a12
commit
9582e94232
@ -7,7 +7,6 @@ using System.Net.Http;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Bit.Icons.Models;
|
using Bit.Icons.Models;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using System.Text.RegularExpressions;
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using AngleSharp.Html.Parser;
|
using AngleSharp.Html.Parser;
|
||||||
|
|
||||||
@ -428,7 +427,7 @@ namespace Bit.Icons.Services
|
|||||||
}
|
}
|
||||||
|
|
||||||
var ipString = ip.ToString();
|
var ipString = ip.ToString();
|
||||||
if (ipString == "::1" || ipString == "::")
|
if (ipString == "::1" || ipString == "::" || ipString.StartsWith("::ffff:"))
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user