
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
http-tunneling-proxy
Advanced tools
This is a simple, minimally modifiable HTTP tunneling proxy written in Node.js. It is based on a snippet available in the Node.js docs. The module exposes a single function and a CLI application for launching a local proxy.
http-tunneling-proxy [--port p] [--host h]
This command will spawn a local HTTP tunneling proxy, bound to the specified
port and hostname. Port defaults to 3030
, while host defaults to 127.0.0.1
.
createProxyServer([callback])
This method will return a fresh, unbound
http.Server
instance that can be bound via listen()
. The callback function
will be called at each request:
const createProxyServer = require('http-tunneling-proxy');
const proxyServer = createProxyServer(req => {
console.log(`${req.method} ${req.url}`);
});
proxyServer.listen(3030);
FAQs
fairly simple http tunneling proxy
We found that http-tunneling-proxy 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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.