Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 255 Vote(s) - 3.6 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed

#21
The reason that you get this error on OSX is the rvm-installed ruby.

If you run into this issue on OSX you can find a really broad explanation of it in this blog post:

[To see links please register here]


The short version is that, for some versions of Ruby, RVM downloads pre-compiled binaries, which look for certificates in the wrong location. By forcing RVM to download the source and compile on your own machine, you ensure that the configuration for the certificate location is correct.

The command to do this is:

rvm install 2.2.0 --disable-binary

if you already have the version in question, you can re-install it with:

rvm reinstall 2.2.0 --disable-binary

(obviously, substitute your ruby version as needed).
Reply

#22
Here's another option for debugging purposes.

**Be sure never to use this in any production environment, as it will negate benefits of using SSL in the first place. It is only ever valid to do this in your local development environment.**

require 'openssl'
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
Reply

#23
I fixed this problem by running this in terminal. Full writeup is available over [here][1]

rvm install 2.2.0 --disable-binary


[1]:

[To see links please register here]

Reply

#24
If you're using RVM on OS X, you probably need to run this:

rvm osx-ssl-certs update all

More information here:

[To see links please register here]


And here is the full explanation:

[To see links please register here]



----------

## Update ##
On Ruby 2.2, you may have to reinstall Ruby from source to fix this. Here's how (replace `2.2.3` with your Ruby version):

rvm reinstall 2.2.3 --disable-binary

Credit to

[To see links please register here]

and [Ian Connor][1].


[1]:

[To see links please register here]

Reply

#25
Sometime it's **not always rvm's problem**
in MAC OSX,if you remove .rvm,the problem still(espcially while you backup data from timemachine) ,you can try this way.

1.brew update
2.brew install openssl
Reply

#26
Adding `gem 'certified', '~> 1.0'` to my `Gemfile` and running `bundle` solved this issue for me.
Reply

#27
Installing the following package on Ubuntu fixed the issue for me

``` sudo apt-get install libssl-dev ```
Reply

#28
Just add gem 'certified' in your gemfile and run bundle install.

1. gem '**certified**'
2. bundle install
Reply

#29
Add this to your gemfile:

`gem 'cliver', :git => 'git://github.com/yaauie/cliver', :ref => '5617ce'
`
Reply

#30
If you are running your rails app locally then just add this line at the bottom of application.rb.

OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE

After this you can use the app without any issues. You may call it a hack but it is not recommended. Use only when you need to run locally
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through