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
4
votes
1 answer

Issues with composer.phar with nss and api.github.com

I am attempting to use composer.phar on a server with RHEL6. Installation details: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.14.3.0 zlib/1.2.3 libidn/1.18 libssh2/1.4.2 PHP 5.4.16 Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend…
tedb
  • 61
  • 5
3
votes
3 answers

SSLv3 connection with ssl librairie in Python

I want to make a programm (Python 2.7) which detect the ssl/tls version which are available on a website. And I just want to use standard Python librairies. Here is my code: #encoding=utf-8 import ssl import socket import traceback import…
SWIT ER
  • 35
  • 2
  • 7
3
votes
1 answer

sslv3 alert handshake failure with LWP::UserAgent

I'm trying to make an https request using LWP::UserAgent: #!/usr/bin/perl use strict; use warnings; use LWP::UserAgent; my $login_url = 'https://www.icscards.nl/abnamrogb/login/login'; my $ssl_options = { SSL_version => 'tlsv1', verify_hostname =>…
Jure Merhar
  • 31
  • 2
  • 5
3
votes
1 answer

ASP.net WebRequest Internal SSL protocol?

With the recent disclosure of POODLE (CVE-2014-3566) many servers, including payment gateways, are disabling SSLv3 on their servers and forcing the use of TLS. Does anyone know which SSL protocol is used internally by the ASP.net Framework for…
Sam
  • 9,933
  • 12
  • 68
  • 104
3
votes
2 answers

How do I disallow particular SSL protocols in Jetty?

I have a web application running on Jetty 6 + Open JDK 7 on Debian 6.0.7. I have a security requirement to accept a TLS handshake but not an SSLv3.0 handshake when a client initiates an HTTPS connection. In my jetty.xml I set the protocol to…
Karl
  • 231
  • 1
  • 3
  • 7
2
votes
0 answers

Indy TLS1.2 reported as SSL3

Doing some testing with Indy 10.6.2.5366 on Tokyo 10.2.3 I have both the client and server set with the following SSLOptions, which in my mind would force the connection to TLS 1.2 SSLOptions.Method := sslvTLSv1_2; SSLOptions.SSLVersions :=…
2
votes
1 answer

PayPal SSL error / issue

I keep getting this message while trying to communicate with the paypal api here's my PayPal Class
Dunnow
  • 414
  • 1
  • 5
  • 22
2
votes
1 answer

How to re-enable SSLv3 in Tomcat 8 and Java 8

Using embedded Tomcat 8 with Java 8 and I am unable to get the SSLv3 protocol re-enabled. I am unable to hit the web application with Internet Options -> Advanced settings with SSLv3 checked and all others (SSLv2, TLS1.0, TLS1.1, TLS1.2) unchecked.…
Caleb Adams
  • 494
  • 8
  • 19
2
votes
0 answers

sslv3 alert handshake failure (_ssl.c:645)>

Here is my code: import urllib.request try: url = 'https://bitinfocharts.com/comparison/hashrate-btc-dash-sma90.html' # now, with the below headers, we defined ourselves as a simpleton who is # still using internet explorer. headers = {} …
Tzu Chiang
  • 21
  • 3
2
votes
0 answers

iOS RestKit disable sslv3 client-side

I have disabled the sslv3 on the server side but I want to make sure if I can do something from the client side (iOS app). I'm using this library in my project: https://github.com/RestKit/RestKit I run some tests for the server like www.ssllabs.com…
Emrah Mehmedov
  • 1,492
  • 13
  • 28
2
votes
1 answer

Does Ruby Amazon S3 SDK use SSLv3?

I have a Rails application that uses Amazon S3 for image upload storage. Upload is handled directly in the browser, file manipulation is handled on the serverside. Recently I received an automail that Amazon discontinues support for SSLv3. I wanted…
Vitaly Stanchits
  • 658
  • 2
  • 7
  • 24
2
votes
1 answer

SSLError Poodle Patch - ActiveMerchant & SayPay

I've been using an old version of active_merchant (v1.8) on ruby 1.8 to make payments to SagePay for an online shop for years and three days ago it stopped working. I looked at the log and was getting these errors: OpenSSL::SSL::SSLError…
Alex Fox
  • 1,175
  • 2
  • 15
  • 27
2
votes
0 answers

How to disable SSL v3 for sun os 5.6 (OAS 4.0.8), I am facing POODLE vulnerability issue?

My Website is hosted on Sun OS 5.06 (OAS 4.0.8) and using web server : Oracle_Web_Listener/4.0.8. Website is configured to use https for secure pages and it was working fine from last 10 years but suddenly i am getting complaints from my customers…
Aamir khan
  • 21
  • 2
2
votes
1 answer

TLS/SSLv3 in webview android

Can someone tell me how I can go about forcing webview in android to use TLS or simply block SSLv3 in android ? 11-07 11:40:16.711 D/WebActivity( 6474): onPageStarted-url : example.com 11-07 11:40:16.946 W/chromium( 6474):…
VKO
  • 21
  • 4
2
votes
0 answers

Do Android apps force the use of SSL 3?

In light of the recent POODLE vulnerability, the servers that I talk to in my Android app are disabling SSL 3. The code where I make my HTTP requests looks something like this AndroidHttpClient c = AndroidHttpClient.newInstance("My…
flyingtoaster0
  • 159
  • 1
  • 7