From 4387d12159dbe5b3bec076dc3ccc1eb8298b1eef Mon Sep 17 00:00:00 2001 From: Jamie Mansfield Date: Fri, 3 May 2024 21:55:32 +0100 Subject: [PATCH] LibWeb/Fetch: Block ports 4190 and 6679 See: - https://github.com/whatwg/fetch/commit/4c3750d --- Userland/Libraries/LibWeb/Fetch/Infrastructure/PortBlocking.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/PortBlocking.cpp b/Userland/Libraries/LibWeb/Fetch/Infrastructure/PortBlocking.cpp index bdfc572c388..2411410c915 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/PortBlocking.cpp +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/PortBlocking.cpp @@ -100,6 +100,7 @@ bool is_bad_port(u16 port) 2049, // nfs 3659, // apple-sasl 4045, // npp + 4190, // sieve 5060, // sip 5061, // sips 6000, // x11 @@ -109,6 +110,7 @@ bool is_bad_port(u16 port) 6667, // ircu 6668, // ircu 6669, // ircu + 6679, // osaut 6697, // ircs-u 10080, // amanda };