
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
rest-node-https-proxy-interceptor
Advanced tools
this is a plugin for the cujojs/rest module. what this plugin does is add support for using an HTTPS proxy.
this plugin ONLY works with the node client of cujojs/rest.
npm install rest-node-https-proxy-interceptor
to use this you need to have a proxy running, for example squid. Change the url accordingly!
An online list of free SSL/HTTPS proxies can be found here
var rest = require("rest/client/node")
var restHttpsProxy = require("rest-node-https-proxy-interceptor")
var client = rest.wrap(restHttpsProxy, {
url: "http://127.0.0.1:3128" // you can also use tcp://127.0.0.1:3128
})
client('https://nodejs.org/en/').then(function(response) {
// response will contain the html of https://nodejs.org/en/
// and the HTTPS request/response will be proxied through http://127.0.0.1:3128
});
You can proxy HTTPS requests through a proxy by using a so called HTTP CONNECT Tunnel. You can read more about it here:
npm test
MIT
FAQs
https proxy for the rest node client
We found that rest-node-https-proxy-interceptor 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.