| 123456789101112131415161718192021222324252627282930 |
- using System.Text.RegularExpressions;
- namespace Ryujinx.HLE.HOS.Services.Sockets.Sfdnsres.Proxy
- {
- static class DnsBlacklist
- {
- const RegexOptions RegexOpts = RegexOptions.CultureInvariant | RegexOptions.IgnoreCase | RegexOptions.ExplicitCapture | RegexOptions.Compiled;
- private static readonly Regex[] BlockedHosts = new Regex[]
- {
- new Regex(@"^g(.*)\-lp1\.s\.n\.srv\.nintendo\.net$", RegexOpts),
- new Regex(@"^(.*)\-sb\-api\.accounts\.nintendo\.com$", RegexOpts),
- new Regex(@"^(.*)\-sb\.accounts\.nintendo\.com$", RegexOpts),
- new Regex(@"^accounts\.nintendo\.com$", RegexOpts)
- };
- public static bool IsHostBlocked(string host)
- {
- foreach (Regex regex in BlockedHosts)
- {
- if (regex.IsMatch(host))
- {
- return true;
- }
- }
- return false;
- }
- }
- }
|