
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.
socket-proxy
Advanced tools
socket agent! proxy. support custom setting
support any tcp protocol! e.g. http https ssh ftp
{
"you custom name":{ //this name can custom
"remoteip":"127.0.0.1", // remote host
"remoteport":3306, // remote port
"listenport":3333 // listen port
},
"you custom name 2":{ //this name can custom
"remoteip":"127.0.0.1", // remote host
"remoteport":6379, // remote port
"listenport":6378 // listen port
},
...
}
npm install socket-proxy --save
docker pull smallwhite/socket-proxy
docker run --network host -e REMOTE_PORT=3006 -e REMOTE_HOST=127.0.0.1 -e LOCAL_LISTEN_PORT=3005 -d smallwhite/socket-proxy
// or full configs
docker run --network host -e CONFIGS="{\"you custom name\":{\"remoteip\":\"127.0.0.1\",\"remoteport\":3306,\"listenport\":3333},\"you custom name 2\":{\"remoteip\":\"127.0.0.1\",\"remoteport\":6379,\"listenport\":6378}}" -d smallwhite/socket-proxy
// or edit you self compose
docker-compose up
var proxy = require('socket-proxy');
proxy.start({
"you custom name":{ //this name can custom
"remoteip":"127.0.0.1", // remote host
"remoteport":3306, // remote port
"listenport":3333 // listen port
}
});
var net = require('net');
var client = net.connect({port:3333},function(err){
client.write('hello~');
});
(ISC License)
FAQs
socket agent! proxy. support custom setting
We found that socket-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.

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.