Questions tagged [sslv3]

SSLV3 is the Secure Sockets Layer ([tag:SSL]) Version 3, are cryptographic protocols that provide communication security over the Internet. SSL V3 has reached end of life and has been deprecated in favor of Transport Layer Security ([tag:TLS]).

SSLV3 is the Secure Sockets Layer () Version 3, are cryptographic protocols that provide communication security over the Internet. SSL V3 has reached end of life and has been deprecated in favor of Transport Layer Security ().

109 questions
2
votes
1 answer

How do I force QWebView to use SSLv3?

There is a web server which does not support the SSLv2 HELO and therefore I must force QWebView to do an SSLv3 HELO. Unfortunately, the following does not work: QList ciphers = QSslSocket::supportedCiphers(); for (int i = ciphers.count() - 1; i >=…
chacham15
  • 13,719
  • 26
  • 104
  • 207
1
vote
0 answers

How to fix "SSLv3/TLS Renegotiation Stream Injection" vulnerability?

My server inspected an "SSLv3/TLS Renegotiation Stream Injection(10942)" vulnerability. Suggested fix said use openssl-0.9.8l or use apache patch 2.2.14/CVE-2009-3555-2.2 but my openssl version is 1.1.1 and my apache version is 2.4.29(Ubuntu) seems…
少強甘
  • 11
  • 2
1
vote
0 answers

error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure

I know this was already posted so many times, but was not helpful. I currently have php 7.1.7 and using cURL successfully. However I will be forced to update to 7.4.15 in a few days and when I tried it, SSL error occured. Tried also…
zedols
  • 11
  • 2
1
vote
1 answer

Can you specify TLS v1.3 only in phpmailer?

Is it possible to specify the encryption protocol version used in PHPMailer? Trying to build a small web tool for testing SMTP configurations. I used to be able to specify protocol version in .NET, but now that I am using apache, I am trying to do…
DontStealMyFish
  • 75
  • 1
  • 10
1
vote
0 answers

Why is python Celery trying to use SSLv3 authentication when trying to connect to RabbitMQ over TLS?

I installed the latest version of Erlang and RabbitMQ from source: Erlang/OTP 22 [erts-10.4.4] [source] [64-bit] [smp:2:2] [ds:2:2:10] [async-threads:1] RabbitMQ 3.7.17 Ubuntu 18.04 Python 3.6.7 celery 4.3.0 My /etc/rabbitmq/rabbitmq.config [ …
lollerskates
  • 964
  • 1
  • 11
  • 28
1
vote
1 answer

How can I enable SSLv3 on IBM HTTP Server?

Some of our customers visit the website by using SSL3.0,but fail. The log in ihs is as follows: "SSL0222W: SSL Handshake Failed, No ciphers specified (no shared ciphers or no shared protocols)" how can I solve this problem? I have modified the…
Kin
  • 13
  • 1
  • 4
1
vote
2 answers

sslv3 handshake failure (0x14077410) connecting from MarkLogic Server

I'm using MarkLogic 8 and trying to do a POST request to a server. I'm able to connect via curl or using POSTMan, however, its failing with Markloigc. A similar post suggested that its an issue with SNI as Markloigc uses OpenSSL. I have tried to…
SalH
  • 91
  • 5
1
vote
1 answer

gSOAP throws SSLv3 alert handshake failure

We are using one server which is currently gone through TLS 1.2 up-gradation. Before that, our one tool which is communicating to server via gsoap works fine. Now I am getting SSLv3 alert handshake failure in soap_connect method. More precisely…
Bha01
  • 50
  • 5
1
vote
0 answers

codeception phantomjs sslv3

I used phantomjs for my acceptence test in php project. But phantomjs returns blank page when i redirect to other page. Output of resposnse is configuration of my acceptance.suite.yml is class_name: AcceptanceTester modules: enabled: -…
1
vote
0 answers

How to disable OpenSSL version verification

I'm using docker-py and dockerpty to connect and execute commands in a container in ucp. Everything works correctly, except when I try to hijack the pseudo-terminal allocated in the container: import docker import dockerpty import requests client =…
cybertextron
  • 10,547
  • 28
  • 104
  • 208
1
vote
0 answers

SSLv3 mutual authentication using libcurl and smart card

I need some help to establish a communication channel to consume a webservice using SSLv3 with mutual authentication, libcurl and a smart card, which will store the client certificate, the key pair and will be responsible for signatures,…
Tgomes
  • 51
  • 2
1
vote
2 answers

Due to a openssl error, unable to know whether sslv3 is completely disabled or not

In Solaris, after I modified my server.xml tag with sslProtocols="TLSv1,TLSv1.1,TLSv1.2", the command to check if SSLv3 is supported responds as below: $ /usr/sfw/bin/openssl s_client -connect IPADDRESS:PORT -ssl3 CONNECTED(00000003)…
Vijay
  • 1,026
  • 3
  • 11
  • 28
1
vote
1 answer

SSLHandshakeException using HttpsURLConnection in Android

Details about my app: compileSdkVersion 22 buildToolsVersion '22.0.1' defaultConfig { applicationId "My application id" minSdkVersion 13 targetSdkVersion 22 versionCode 4 versionName "2" } I'm…
1
vote
2 answers

AWS DynamoDbMapper Error... Caused by: javax.net.ssl.SSLProtocolException:

I am trying to implement DynamoDBMapper from AWS but the application crashes when I try to connect to the AWS servers. To start, I am running Android 4.4.2 on an Android Studio emulator and everything seems to be working fine. No problems there.…
SydStorm
  • 68
  • 7
1
vote
1 answer

python: sslv3 alert handshake failure when scraping a site

I am using requests to scrape Project Gutenberg when I do: import requests requests.get("https://www.gutenberg.org/wiki/Science_Fiction_(Bookshelf)", verify = True) I get the error: SSLError Traceback (most…
Sam
  • 571
  • 1
  • 6
  • 18