Questions tagged [tls1.0]

Transport Layer Security version 1.0 - formerly an upgrade of SSL Version 3.0

Transport Layer Security version 1.0 - formerly an upgrade of SSL Version 3.0

88 questions
0
votes
1 answer

How to exclude weak protocols (ciphers suits) from the Netty SSLContext?

On my Netty server, I need to exclude TLS_1.0 and TLS_1.1 protocols. However, seems like Netty SslContextBuilder doesn't allow to exclude specific suits. Current code is used to build a SSL context: SslContextBuilder.forServer(serverCert, serverKey,…
Dmitriy Dumanskiy
  • 11,657
  • 9
  • 37
  • 57
0
votes
1 answer

Connection fail in end user browser after disable weak ciphers and lower tls version in windows server

First I disable the following things in windows server 2016. Triple DES cipher RC4 cipher TLS CBC Mode ciphers TLS 1.0 TLS 1.1 Then, I reboot the server. Finally, I call the web application which is hosted at above server from my client…
0
votes
0 answers

Microsoft Graph API calls giving invalid remote certificate error

I am using Microsoft Graph API to send and read user details from AD with "Application permissions" from an web app. Microsoft.Graph SDK 3.5 is used for this. .Net framework version - 4.6.1 Intermittently it is erroring out exception : "The remote…
0
votes
0 answers

Disable TSL1.0 and TSL1.1 having modified protocols and still not working

I have been trying to disable TLS1.0 and TLS1.1, but having no success in it. We have already disabled them in regedit, with this, and rebooted the systems. Windows Registry Editor Version 5.00 …
0
votes
1 answer

The caller was not authenticated by the service when tls1.0 is disabled

using c# i have two aplications on .net framework 4 - client and one more on .net framework 4.5 - server and communicate each other using WCF. using IISCrypto i turned off tls1.0 and then i get this error 'The caller was not authenticated by the…
GomuGomuNoRocket
  • 771
  • 2
  • 11
  • 37
0
votes
1 answer

Is it true that support for TLS 1.0 and 1.1 has been completely removed in later Jetty versions that support TLS 1.3?

Referencing this doc, https://www.eclipse.org/jetty/documentation/current/configuring-ssl.html#configuring-sslcontextfactory-cipherSuites toward the top there is a note: Once TLS v1.3 is released, there will be no workaround available for TLS v1.0…
0
votes
3 answers

In DDEV-Local v1.13+ I get API failures (SSL/TLS errors) against external sites

My DDEV-Local project accesses an external SOAP API on a server on the internet, for example "SOAP-ERROR: Parsing WSDL: Couldn't load from ...". I didn't have any trouble before upgrading to DDEV v1.13. What could the problem be here? (SOAP is just…
rfay
  • 9,963
  • 1
  • 47
  • 89
0
votes
0 answers

Powerbuilder 6.5 not able to connect to SQL Server 2008 R2 after disabling TLS1.0

We are using PB 6.5 version, which uses ntwdblib.dll for DB connection, We are suing SQL Server 2008 R2. recently TLS1.0 on the SQL Server is disabled. As a result, we are not able to access the database from PB. Every time when the application…
Pani
  • 125
  • 2
  • 15
0
votes
1 answer

Does only TLS_AES_128_GCM_SHA256 cipher work for psk connections for TLS 1.3?

I have a server running on Ubuntu 1804 with OpenSSL 1.1.1 11 Sep 2018. Clients talk to the server using PSK authentication with PSK-AES256-CBC-SHA as the cipher. When I use a client built on Windows with openssl-1.1.1c (built using Microsoft Visual…
skboro
  • 195
  • 10
0
votes
0 answers

Server's chain certificate verification failed in azure Client

I am trying to run my IoT-client on Threadx-Os Client which doesn't have file- system/certificate trusted store kind of things like in linux. When i look into Wireshark the client closing connection with Fatal,Bad certificate error. I tried all…
Chinna
  • 23
  • 10
0
votes
1 answer

WCF/SOAP client in .NET 4.6.1 and TLS 1.0 server: client hello missing

I'm having really hard time to find solution for following scenario: we have legacy SOAP Service created in Java, for which we don't have any reasonable way to upgrade/modify. This legacy service is accessible using https endpoint and supports…
Marek Kembrowski
  • 1,252
  • 9
  • 21
0
votes
0 answers

.Net website being forced to use TLS1.2 "The request was aborted: Could not create SSL/TLS secure channel"

I'm trying to force a website to use TLS1.2 with the following code: if (ServicePointManager.SecurityProtocol.HasFlag(SecurityProtocolType.Tls12) == false) { ServicePointManager.SecurityProtocol =…
user7528326
0
votes
1 answer

SQL Server with TLS 1.2 from .NET Core with ODBC

I know this has come up a million times, but apparently not with .NET Core using System.Data.Odbc. With TLS 1.0 turned of in the registry, I get an error: {System.Data.Odbc.OdbcException (0x80131937): ERROR [08001] [Microsoft][ODBC SQL Server…
Pieter van Kampen
  • 1,957
  • 17
  • 21
0
votes
1 answer

Crystal Report shows credential's popup after deployment and This issue occurs only when we turn off TLS 1.0 at server

We have an issue of Crystal Report. Crystal Report shows credential's popup on server. This issue occurs only when we turn off TLS 1.0 at server If we turn on the TLS 1.0 then it is not displaying popup. It is also working properly at local. We…
0
votes
0 answers

Azure - Disabled TLS 1.0 on windows server 2012 R2 which broken RDP capability

After the security audit, we have disabled TLS 1.0 and TLS 1.1 on our Windows server 2012 R2 (Azure cloud service) machines. After the above change, we were not able to RDP on our cloud VM's. Following is the script that used to disable TLS. …