Questions tagged [tls1.1]
41 questions
8
votes
1 answer
NodeJS v12 re-enable TLS 1.1, and 1.0
Node now supports TLS 1.3 which offers increased security and reduced latency.
By implementing TLS 1.3, Node apps will have increased end-user privacy while also improving the performance of requests by reducing the time required for the HTTPS…

Hemm K
- 469
- 7
- 21
6
votes
2 answers
How to enable back TLSv1 and TLSv1.1 on nginx?
My nginx confid files looks like:
server {
listen 80;
listen [::]:80;
server_name hostserver.ru www.hostserver.ru;
return 301 https://hostserver.ru$request_uri;
server_tokens off;
}
server {
listen 443 ssl http2;
…

micsha123
- 655
- 2
- 7
- 20
4
votes
1 answer
SSL Authentication Error after upgrading to .NET 6 when connecting to MySQL database with TLS 1.1
I have a MySQL database with version 5.7.19 and TLS version 1.1. I'm using the following code snippet to establish a connection in my .NET Core 3.1 application:
string connStr = "server=Myserver;user id=myuser;password=my…

janarthanan
- 41
- 4
3
votes
5 answers
Java 7 oracle does not support TLSv1.2
Java 7 oracle does not support TLSv1.2.
I have been trying to run my code and I have tried the following things:
System.setProperty("deployment.security.TLSv1.1", "false")
System.setProperty("deployment.security.TLSv1", "false")
…

orange14
- 371
- 3
- 19
2
votes
1 answer
TLS handshake on EAPOL 802.1X
I am building a EAP-TLS authentication client (802.1X EAPOL). The requirement thus far is just EAP-TLS. I am using the FreeRadius server to test against, and it is using TLS 1.1, so that is the transport version I'm developing to.
Because this…

SpacemanScott
- 953
- 9
- 21
2
votes
1 answer
How to disable TLS1 & TLS1.1 for glassfish 5.0.1 admin-listener (port 4848) from the command-line
How do I disable TLS1.0 & TLS1.1 for glassfish admin console(admin-listener, port 4848, jdk1.8.0_261)?
I don't want to disable it at server level (/usr/java/jdk1.8.0_261-amd64/jre/lib/security/java.security) as it may affect the applications running…

Ranjith knair
- 21
- 4
2
votes
1 answer
Kubernetes NGINX ingress controller activate TLSv1.1
for some legacy systems, I need to activate TLSv1.1 on my NGINX ingress controller until they are switched to TLSv1.2.
It should be fairly easy according to the documentation, but I am getting a handshake error. Looks like Nginx is not serving any…

Antman
- 53
- 2
- 7
2
votes
0 answers
.NET 3.5 + TLS 1.1/1.2 support in Windows 10
.NET 3.5 did not support TLS 1.1 & 1.2 when originally released. Patches were later released for Windows 7 SP 1 & Server 2008 R2 SP1, Windows 8.1 and Server 2012 R2 and Windows Server 2012. However none of these patches will install on Windows 10.…

Keith
- 20,636
- 11
- 84
- 125
2
votes
1 answer
Trouble starting dgraph with TLS
I'm trying to start a dgraph server with TLS enabled, my server config file is defined as following:
# Folder in which to store exports.
export: export
# Fraction of dirty posting lists to commit every few seconds.
gentlecommit: 0.33
# RAFT ID…

Paulo Ferreira
- 423
- 2
- 8
- 16
1
vote
1 answer
Allow using TLSv1.1 on Arch
I'm a dotnet 7 developer and I need my apps to connect to MS SQL <= 2016 databases (compatibility level 110), where the maximum supported TLS version is 1.1. I don't have control over the database servers so they won't get updated any time soon.
I…

Gaël James
- 157
- 13
1
vote
1 answer
Resolve Cipher Suites from ServicePointManager.SecurityProtocol in .NET 5
.NET 5 has breaking changes with TLS. So when I'm connecting to a website (via HttpClient) and it does not support TLS 1.3 (which is the default for .NET5), I get the following error: Interop+Crypto+OpenSslCryptographicException:…

Jesse Gador
- 77
- 7
1
vote
1 answer
TLS session resumption
I use Caddy (a webserver written in GO), I have TLS 1.0-TLS 1.2 allowed, and GO supports only the tickets option of session resumption (the TLS session data is stored on the client side).
Now I'm not quite sure about when the TLS resumption should…

RefaelF
- 11
- 2
1
vote
0 answers
How to find the tls version is being used when API calling
How to find the TLS version when an API call in C# (RestClient and WebRequest)?
How to change the TLS version? Is there any way to change TLS version?
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 |
…

Vinod
- 21
- 2
1
vote
2 answers
Communcation .NET application fails after upgrading TLSv1 to TLSv1_2016
I'm no SSL/TLS expert. but encounter the following
We make a connection to a webservice from a supplier and the "security policy" were TLSv1, and everything worked like a charm.
This supplier upgraded there security policy to TLSv1_2016.
And since…

Joeri H.
- 11
- 3
1
vote
1 answer
Updating Authorize.net since TLS 1.0 and 1.1 is now deprecated
Background
I have taken over a making updates to a site that was running a very old version of PHP. After moving the site from 5.3 to 7.1 I have since noticed that authorize.net keeps sending out emails stating,
we will no longer allow TLS 1.0 and…

wuno
- 9,547
- 19
- 96
- 180