Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
syswide-cas
Advanced tools
Enable node to use system wide certificate authorities in conjunction with the bundled root CAs
Enable node to use custom certificate authorities in conjunction with the bundled root CAs.
Up until version 7, node did not support system-wide installed trusted certificate authorities. It was only possible to specify a custom
CA via the ca
option in the tls
and https
modules, or fallback to using the bundled list of root CAs that
node is compiled with.
Starting with node 7, it's possible to set the NODE_EXTRA_CA_CERTS
environment variable to a single file containing additional root CA
to trust, however it still does not allow programatic addition of several directories and files containing root CAs.
This module enables loading custom CAs to be used in conjunction with the node bundled root CAs.
syswide-cas will auto load root CAs from the file /etc/ssl/ca-node.pem
if it exists.
npm install --save syswide-cas
Add require('syswide-cas')
as soon as possible as it affects all later TLS calls.
// "require('syswide-cas')" immediatley loads CAs from the file /etc/ssl/ca-node.pem if it exists
const syswidecas = require('syswide-cas');
// optionally load all files from a custom directory
syswidecas.addCAs('/my/custom/path/to/certs/dir');
// or multiple directories
syswidecas.addCAs(['/my/custom/path/to/certs/dir1', '/my/other/path/to/certs/dir2']);
// optionally load a file directly
syswidecas.addCAs('/my/custom/path/to/cert.pem');
// or multiple files
syswidecas.addCAs(['/my/custom/path/to/cert1.pem', '/my/other/path/to/cert2.pem']);
const https = require('https');
https.get('https://my.custom.domain.com/with/self/signed/cert');
Copyright 2016 Capriza. Code released under the MIT license
FAQs
Enable node to use system wide certificate authorities in conjunction with the bundled root CAs
The npm package syswide-cas receives a total of 4,000 weekly downloads. As such, syswide-cas popularity was classified as popular.
We found that syswide-cas demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.