socksv5
socksv5 copied to clipboard
SOCKS protocol version 5 server and client implementations for node.js
so,when ``` const server = socks5.createServer((reqInfo, accept, deny) => { console.log('Requested target:', reqInfo); const socket = accept(false); if (socket) { socket.on('data', (data) => { const requestData = data.toString(); if (requestData.startsWith('GET')...
As topic. If you use this server as a web proxy, because websites nowadays make a lot of requests, it also creates a lot of sockets on socksv5 server. As...
Can I forward the request to another socks5 proxy. how to do that?
how to get domain of dstAddr?
got error ,normalizeConnectArgs is not a function, my node version is v16.x
This resolves #22 #25 #40
Fixes issue #22
### Simple socks chaining Now you able to use this socks server as a SOCKS5 gate / relay (i mean pass traffic thru other socks servers, especially useful when you...
hi beautiful lib! congrants I was trying to write a proxy socks that could log the http traffic and contents and show in stdout. how can I do it? is...
Hello, Im unable to open port on PC(SERVERB) cause of ISP rejects. I have coded with Socket.io Client (ServerB). Its connecting to SocketIO Server(Server A). I can open ports on...