Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

socks5server

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socks5server

A simple SOCKS 5/4/4a implementation and demo proxy

  • 4.0.9
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
increased by37.5%
Maintainers
1
Weekly downloads
 
Created
Source

SOCKS v4/v4a/v5 server implementation with user/pass authentication node.js

A simple SOCKS v5/v4/v4a server implementation and demo proxy.

You can run it easily as:

socks5server [options]

This will create a proxy defaults at 127.0.0.1:1080.

options:see socks5server --help

Install

npm i socks5server

Add a -g if you want to install it globally or use socks5server command.

Use the server in your project

const socks5server=require('socks5server');

var server=socks5server.createServer();
//or
var server=new socks5server.socksServer();

server
.on('tcp',(socket, port, address, CMD_REPLY)=>{
	//do sth with the tcp proxy request
}).on('udp',(socket, clientPort, clientAddress, CMD_REPLY)=>{
	//do sth with the udp proxy request
}).on('error', function (e) {
	console.error('SERVER ERROR: %j', e);
}).on('client_error',(socket,e)=>{
	console.error('  [client error]',`${net.isIP(socket.targetAddress)?'':'('+socket.targetAddress+')'} ${socket.remoteAddress}:${socket.targetPort}`,e.message);
}).on('socks_error',(socket,e)=>{
	console.error('  [socks error]',`${net.isIP(socket.targetAddress)?'':'('+(socket.targetAddress||"unknown")+')'} ${socket.remoteAddress||"unknown"}}:${socket.targetPort||"unknown"}`,e);
}).listen(1080, "127.0.0.1");

/*
CMD_REPLY(reply code,addr,port)
see https://www.ietf.org/rfc/rfc1928.txt "6 Replies"@page5 for details
*/

The proxy.js is a simple demo of the server.

Implementations

✅:OK ❌:not implemented ❓:i don't kown

Socks4
Socks4a
Socks5
  • address

    • ipv4 ✅
    • ipv6 ✅
    • domain name ✅
  • auth methods

    • no auth ✅
    • userpass ✅
    • GSSAPI ❌
    • iana assigned ❌
    • private methods ✅ (use as a module)
  • CMD

    • connect ✅
    • udp ✅ (maybe usable)
      • fragment ❌ (no plan on it)
    • bind ❌

I mainly modified the socks5 part and not sure if socks4 has been completely implemented.

RFC:

  • socks5

License

(The MIT License)

Keywords

FAQs

Package last updated on 28 Feb 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc