Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
node-tcp-proxy
Advanced tools
A classical TCP proxy that may be used to access a service on another network. An extensible replacement for socat when used thus
socat TCP-LISTEN:port,fork TCP:host:port
port
is where socat listens for incoming requests. host:port
are the host and port where the actual service is listening at.
To achieve the same with node-tcp-proxy
tcpproxy --proxyPort port [--hostname <name or IP>] --serviceHost host1,host2 --servicePort port1,port2 [--q] [--tls [both]] [--pfx file] [--passphrase secret]
Optionally, use --hostname
to specify host or IP address to listen at. Node.js listens on unspecified IPv6 address ::
by default. If --serviceHost
and --servicePort
specify a comma separated list, the proxy will perform load balancing on a round-robin basis.
TLS can be enabled at the proxy port using --tls
. Use --pfx
followed by path to specify server certificate, and --passphrase
to provide the password required to access it. Use --tls both
, to also enable TLS with the service.
Install node-tcp-proxy using npm
sudo npm install -g node-tcp-proxy
To create a proxy in your own code
var proxy = require("node-tcp-proxy");
var newProxy = proxy.createProxy(8080, "host", 10080);
To end the proxy
newProxy.end();
hostname
can be provided through an optional fourth parameter e.g. {hostname: 0.0.0.0}
to createProxy
. Console output may be silenced by adding quiet: true
e.g. {hostname: 0.0.0.0, quiet: true}
.
If you specify more than one service host and port pair, the proxy will perform round-robin load balancing
var hosts = ["host1", "host2"];
var ports = [10080, 10080];
var newProxy = proxy.createProxy(8080, hosts, ports);
// or var newProxy = proxy.createProxy(8080, "host1,host2", "10080,10080");
You can intercept and modify data sent in either direction, and modify the service host selection strategy
var proxy = require("node-tcp-proxy");
var util = require("util");
var serviceHosts = ["www.google.com", "www.bing.com"];
var servicePorts = [80, 80];
var newProxy = proxy.createProxy(8080, serviceHosts, servicePorts, {
upstream: function(context, data) {
console.log(util.format("Client %s:%s sent:",
context.proxySocket.remoteAddress,
context.proxySocket.remotePort));
// do something with the data and return modified data
return data;
},
downstream: function(context, data) {
console.log(util.format("Service %s:%s sent:",
context.serviceSocket.remoteAddress,
context.serviceSocket.remotePort));
// do something with the data and return modified data
return data;
},
serviceHostSelected: function(proxySocket, i) {
console.log(util.format("Service host %s:%s selected for client %s:%s.",
serviceHosts[i],
servicePorts[i],
proxySocket.remoteAddress,
proxySocket.remotePort));
// use your own strategy to calculate i
return i;
}
});
You may want to check out these interesting alternatives
http-proxy - programmable proxying library that supports websockets. It is suitable for implementing components such as reverse proxies and load balancers.
sslh - accepts connections on specified ports, and forwards them further based on tests performed on the first data packet sent by the remote client.
socat - socat is a relay for bidirectional data transfer between two independent data channels. Each of these data channels may be a file, pipe, device (serial line etc. or a pseudo terminal), a socket (UNIX, IP4, IP6 - raw, UDP, TCP), an SSL socket, proxy CONNECT connection, a file descriptor (stdin etc.), the GNU line editor (readline), a program, or a combination of two of these.
FAQs
A simple TCP proxy built using Node.js
We found that node-tcp-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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.