diff --git a/.dotnet6.0.metadata b/.dotnet6.0.metadata
index 36b519d..6521720 100644
--- a/.dotnet6.0.metadata
+++ b/.dotnet6.0.metadata
@@ -1 +1 @@
-81198a6aab86269f1a3b418f8e7e112b3dceda3f SOURCES/dotnet-v6.0.114.tar.gz
+2ab042bd26f92c6d7608a790b43a284e8721463e SOURCES/dotnet-v6.0.133.tar.gz
diff --git a/.gitignore b/.gitignore
index 8260a5c..d5876d4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-SOURCES/dotnet-v6.0.114.tar.gz
+SOURCES/dotnet-v6.0.133.tar.gz
diff --git a/SOURCES/arcade-no-apphost.patch b/SOURCES/arcade-no-apphost.patch
index cec03a1..04507f9 100644
--- a/SOURCES/arcade-no-apphost.patch
+++ b/SOURCES/arcade-no-apphost.patch
@@ -1,15 +1,3 @@
-Index: a/src/Microsoft.DotNet.GitSync.CommitManager/Microsoft.DotNet.GitSync.CommitManager.csproj
-===================================================================
---- a/src/Microsoft.DotNet.GitSync.CommitManager/Microsoft.DotNet.GitSync.CommitManager.csproj
-+++ b/src/Microsoft.DotNet.GitSync.CommitManager/Microsoft.DotNet.GitSync.CommitManager.csproj
-@@ -5,6 +5,7 @@
- netcoreapp3.1
- latest
- true
-+ false
-
-
-
Index: a/src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CmdLine/Microsoft.DotNet.SwaggerGenerator.CmdLine.csproj
===================================================================
--- a/src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CmdLine/Microsoft.DotNet.SwaggerGenerator.CmdLine.csproj
diff --git a/SOURCES/runtime-re-enable-implicit-rejection.patch b/SOURCES/runtime-re-enable-implicit-rejection.patch
new file mode 100644
index 0000000..3e96a1e
--- /dev/null
+++ b/SOURCES/runtime-re-enable-implicit-rejection.patch
@@ -0,0 +1,142 @@
+From 076687f5f9e7e1fce24f33f498b4e03c4150108e Mon Sep 17 00:00:00 2001
+From: Omair Majid
+Date: Fri, 2 Feb 2024 12:09:52 -0500
+Subject: [PATCH] Revert "Disable implicit rejection for RSA PKCS#1 (#95218)"
+
+This reverts commit e3500b8e8ad18e8bf067dc5250863b64bb8f0de0.
+
+To quote Clemens Lang:
+
+> [Disabling implcit rejection] re-enables a Bleichenbacher timing oracle
+> attack against PKCS#1v1.5 decryption. See
+> https://people.redhat.com/~hkario/marvin/ for details and
+> https://github.com/dotnet/runtime/pull/95157#issuecomment-1842784399 for a
+> comment by the researcher who published the vulnerability and proposed the
+> change in OpenSSL.
+
+For more details, see:
+https://github.com/dotnet/runtime/pull/95216#issuecomment-1842799314
+---
+ .../RSA/EncryptDecrypt.cs | 49 ++++---------------
+ .../opensslshim.h | 6 ---
+ .../pal_evp_pkey_rsa.c | 13 -----
+ 3 files changed, 10 insertions(+), 58 deletions(-)
+
+diff --git a/src/libraries/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/EncryptDecrypt.cs b/src/libraries/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/EncryptDecrypt.cs
+index 55a044d62a6..e72d42e87d2 100644
+--- a/src/libraries/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/EncryptDecrypt.cs
++++ b/src/libraries/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/EncryptDecrypt.cs
+@@ -338,10 +338,19 @@ private void RsaCryptRoundtrip(RSAEncryptionPadding paddingMode, bool expectSucc
+ Assert.Equal(TestData.HelloBytes, output);
+ }
+
+- [ConditionalFact(nameof(PlatformSupportsEmptyRSAEncryption))]
++ [ConditionalFact]
+ [SkipOnTargetFramework(TargetFrameworkMonikers.NetFramework)]
+ public void RoundtripEmptyArray()
+ {
++ if (OperatingSystem.IsIOS() && !OperatingSystem.IsIOSVersionAtLeast(13, 6))
++ {
++ throw new SkipTestException("iOS prior to 13.6 does not reliably support RSA encryption of empty data.");
++ }
++ if (OperatingSystem.IsTvOS() && !OperatingSystem.IsTvOSVersionAtLeast(14, 0))
++ {
++ throw new SkipTestException("tvOS prior to 14.0 does not reliably support RSA encryption of empty data.");
++ }
++
+ using (RSA rsa = RSAFactory.Create(TestData.RSA2048Params))
+ {
+ void RoundtripEmpty(RSAEncryptionPadding paddingMode)
+@@ -726,23 +715,5 @@ public static IEnumerable