
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
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
The npm package rest-node-https-proxy-interceptor receives a total of 6 weekly downloads. As such, rest-node-https-proxy-interceptor popularity was classified as not popular.
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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.