Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax <michal@naiman.eu>2022-03-19 16:01:20 +0300
committerGitHub <noreply@github.com>2022-03-19 16:01:20 +0300
commit8e176de004c075a168fd85c0932dddffe35773c5 (patch)
tree42dedbcc1e1f82d7258e324d0559943e1e92bc49 /Duplicati
parentc3604a5e3cecd77de7934a06913f64d93523201a (diff)
TrayIcon SSL security increase
Diffstat (limited to 'Duplicati')
-rw-r--r--Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs b/Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs
index 31b4025d9..90d5ab9c4 100644
--- a/Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs
+++ b/Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs
@@ -225,7 +225,7 @@ namespace Duplicati.GUI.TrayIcon
{
try
{
- System.Net.ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
+ System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls13;
using (Connection = new HttpServerConnection(serverURL, password, saltedpassword, databaseConnection != null ? PasswordSource.Database : PasswordSource.HostedServer, disableTrayIconLogin, options))
{