Security Protocol Changes

- Removed TLS13 from the list of accepted security protocols, as not all OS support TLS13.
This commit is contained in:
Brett Hewitson 2022-05-09 16:11:16 +10:00
parent a73b9978cf
commit 6fd9d9c555
7 changed files with 55 additions and 7 deletions

View file

@ -82,7 +82,7 @@ namespace ServerManagerTool
Title = string.Empty;
Version = AppUtils.GetDeployedVersion(Assembly.GetEntryAssembly());
ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00 + 0x3000); // TLS12, TLS13
ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00); // TLS12
AppDomain.CurrentDomain.UnhandledException += ErrorHandling.CurrentDomain_UnhandledException;
MigrateSettings();

View file

@ -9,8 +9,8 @@
<entry>
<id>urn:uuid:632DF17A-04C7-4A74-8C82-0106D0770393</id>
<title>1.1.426 (1.1.426.1)</title>
<summary>1.1.426.1</summary>
<title>1.1.426 (1.1.426.2)</title>
<summary>1.1.426.2</summary>
<link href="" />
<updated>2022-05-09T00:00:00Z</updated>
<content type="xhtml">
@ -20,6 +20,7 @@
<br/>
<ul>
<li>Rcon Player List - fixed a bug when displaying the player details for Epic Players.</li>
<li>Removed TLS13 from the list of accepted security protocols, as not all OS support TLS13.</li>
</ul>
</p>
</div>

View file

@ -7,6 +7,29 @@
<link href="http://arkservermanager.freeforums.net/" />
<updated>2022-05-09T00:00:00Z</updated>
<entry>
<id>urn:uuid:0F1FA607-8CA0-4926-8783-0B3D14B9B672</id>
<title>1.1.426 (1.1.426.2)</title>
<summary>1.1.426.2</summary>
<link href="" />
<updated>2022-05-09T00:00:00Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
<p>
<u style="font-size: .9em;">BUGFIX</u>
<br/>
<ul>
<li>Removed TLS13 from the list of accepted security protocols, as not all OS support TLS13.</li>
</ul>
</p>
</div>
</content>
<author>
<name>bletch</name>
<email>bletch1971@hotmail.com</email>
</author>
</entry>
<entry>
<id>urn:uuid:632DF17A-04C7-4A74-8C82-0106D0770393</id>
<title>1.1.426 (1.1.426.1)</title>

View file

@ -81,7 +81,7 @@ namespace ServerManagerTool
Title = string.Empty;
Version = AppUtils.GetDeployedVersion(Assembly.GetEntryAssembly());
ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00 + 0x3000); // TLS12, TLS13
ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00); // TLS12
AppDomain.CurrentDomain.UnhandledException += ErrorHandling.CurrentDomain_UnhandledException;
MigrateSettings();

View file

@ -9,8 +9,8 @@
<entry>
<id>urn:uuid:86CF3CE5-C935-4C04-8D31-224B2E1DD203</id>
<title>1.1.70 (1.1.70.1)</title>
<summary>1.1.70.1</summary>
<title>1.1.70 (1.1.70.2)</title>
<summary>1.1.70.2</summary>
<link href="" />
<updated>2022-05-09T00:00:00Z</updated>
<content type="xhtml">
@ -20,6 +20,7 @@
<br/>
<ul>
<li>Rcon Player List - fixed a bug when displaying the player details for Epic Players.</li>
<li>Removed TLS13 from the list of accepted security protocols, as not all OS support TLS13.</li>
</ul>
</p>
</div>

View file

@ -7,6 +7,29 @@
<link href="http://servermanagers.freeforums.net/" />
<updated>2022-05-09T00:00:00Z</updated>
<entry>
<id>urn:uuid:A9EE6916-474D-44AA-B6D5-F2EEFEB889C4</id>
<title>1.1.70 (1.1.70.2)</title>
<summary>1.1.70.2</summary>
<link href="" />
<updated>2022-05-09T00:00:00Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
<p>
<u style="font-size: .9em;">BUGFIX</u>
<br/>
<ul>
<li>Removed TLS13 from the list of accepted security protocols, as not all OS support TLS13.</li>
</ul>
</p>
</div>
</content>
<author>
<name>bletch</name>
<email>bletch1971@hotmail.com</email>
</author>
</entry>
<entry>
<id>urn:uuid:86CF3CE5-C935-4C04-8D31-224B2E1DD203</id>
<title>1.1.70 (1.1.70.1)</title>

View file

@ -32,7 +32,7 @@ namespace ServerManagerTool.Updater
{
Console.Title = "Server Manager Updater";
ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00 + 0x3000); // TLS12, TLS13
ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00); // TLS12
var updaterArgs = args;
ApplicationArgs = null;