2
I received an email from AWS that basically says S3 will no longer support Sslv3. Then they listed the list of Buckets that are receiving requests on Sslv3 and one of my Buckets is production. The complete e-mail can be seen here:
https://gist.github.com/anonymous/4240c8af5208782c144c
My question is: how can I test this scenario and what I need to do to fix this problem?
I use Python 2.7, Django(1.4.20) and Boto(2.27.0)
This is just a client problem or something I need to better understand and test/fix?
Already made the exchange protocol of the requests that use
SSLv3
for the use of the protocolS3 HTTPS Endpoints
, as stated in the email?– Marciano.Andrade
Where should this change take place? In the Amazon console or in the application?
– jpklzm
To avoid interrupted access, you must update any client software (or inform any clients to update software) making the requests that are using SSLv3 to connect to S3 HTTPS endpoints.
-> Based on this line, is specifying that the modification should be made in the application (software).– Marciano.Andrade
But how do I test if my application is making the requests via Sslv3 or S3 HTTPS endpoints?
– jpklzm
so S3 http endpoints is not a protocol, it is a url that is no longer accessed by Sslv3 for people to test the access of applications
– jpklzm
Simple guy just see which server you’re using (like apache, Nginx, etc.) and disable Sslv3 support here’s a howto http://disablessl3.com/
– Adir Kuhn
By all indications, just exchange the URL you are calling in the application for the most current replacement of it.
– Bacco