Ruby’s net/http is setup to never verify SSL certificates by default. Most ruby libraries do the same. That means that you’re not verifying the identity of the server you’re communicating with and are therefore exposed to man in the middle attacks. This gem monkey-patches net/http to force certificate verification and make turning it off impossible.
gem install always_verify_ssl_certificatesNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Require the gem to enforce SSL certificate verification globally
Use only in production or where strict SSL verification is required; consider using an environment variable to conditionally load.
No dependency data recorded yet.