| Vulnerabilities | |||||
|---|---|---|---|---|---|
| Version | Suggest | Low | Medium | High | Critical | 
| 2.15.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.14.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.13.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.12.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.11.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.10.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.9.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.8.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.7.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.6.1 | 0 | 0 | 0 | 0 | 0 | 
| 2.6.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.5.3 | 0 | 0 | 0 | 0 | 0 | 
| 2.5.2 | 0 | 0 | 0 | 0 | 0 | 
| 2.5.1 | 0 | 0 | 0 | 0 | 0 | 
| 2.4.2 | 0 | 0 | 0 | 0 | 0 | 
| 2.4.1 | 0 | 0 | 0 | 0 | 0 | 
| 2.3.1 | 0 | 0 | 0 | 0 | 0 | 
| 2.3.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.2.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.1.0 | 0 | 0 | 0 | 0 | 0 | 
| 2.0.0 | 0 | 0 | 0 | 0 | 0 | 
| 1.2.1 | 0 | 0 | 0 | 0 | 0 | 
| 1.2.0 | 0 | 0 | 0 | 0 | 0 | 
| 1.1.0 | 0 | 0 | 0 | 0 | 0 | 
| 1.0.0 | 0 | 0 | 0 | 0 | 0 | 
| 0.7.0 | 0 | 0 | 0 | 0 | 0 | 
| 0.6.0 | 0 | 0 | 0 | 0 | 0 | 
| 0.5.0 | 0 | 0 | 0 | 0 | 0 | 
| 0.4.0 | 0 | 0 | 0 | 0 | 0 | 
| 0.3.0 | 0 | 0 | 0 | 0 | 0 | 
| 0.2.0 | 0 | 0 | 0 | 0 | 0 | 
| 0.1.1 | 0 | 0 | 0 | 0 | 0 | 
2.15.0 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
BSD-3-Clause - BSD 3-Clause "New" or "Revised" LicenseThis Erlang library contains a CA bundle that you can reference in your Erlang application. This is useful for systems that do not have CA bundles that Erlang can find itself, or where a uniform set of CAs is valuable.
This an Erlang specific port of certifi. The CA bundle is derived from Mozilla's canonical set.
List of included certificates: https://ccadb-public.secure.force.com/mozilla/IncludedCACertificateReport
CaCerts = certifi:cacerts(),
SslOptions = [{verify, verify_peer},
              {depth, 99},
              {cacerts, CaCerts}],
ssl:connect( "example.com", 443, SslOptions ).You can also retrieve the path to the file and load it by yourself if needed:
Path = certifi:cacertfile().Testing:
rebar3 eunitDocumentation:
rebar3 ex_doc