diff options
author | Mary <me@thog.eu> | 2022-01-11 08:58:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 08:58:57 +0100 |
commit | e32a19520b0f466f8e58116e6d81c096dbcd7a01 (patch) | |
tree | e30ee567ac8b872717d8154f0201a3540732143f | |
parent | 7f6b3d234a0dd82866e89930f05c520aca94946e (diff) |
sfdnsres: Block communication attempt with NPLN servers (#2990)
Seen on Monster Hunter Rise.
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs b/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs index 92c92f66..ddfe232c 100644 --- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs +++ b/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs @@ -9,6 +9,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Sfdnsres.Proxy private static readonly Regex[] BlockedHosts = new Regex[] { new Regex(@"^(.*)\-lp1\.(n|s)\.n\.srv\.nintendo\.net$", RegexOpts), + new Regex(@"^(.*)\-lp1\.lp1\.t\.npln\.srv\.nintendo\.net$", RegexOpts), new Regex(@"^(.*)\-lp1\.(znc|p)\.srv\.nintendo\.net$", RegexOpts), new Regex(@"^(.*)\-sb\-api\.accounts\.nintendo\.com$", RegexOpts), new Regex(@"^(.*)\-sb\.accounts\.nintendo\.com$", RegexOpts), |