Total Pageviews

Sunday 29 May 2022

uvsocks

 SOCKS gateway based on libuv.

uvsocks is a reliable socks client implemented using libuv for windows and linux.

It has support forward and reverse mode.

More information about socks5 : RFC1928

Building

  1. Install the following build tools and dependencies:
  1. Clone this repository It contains the build script, project files and patches.

  2. Now start a git-command-line window as a regular user. Go to the uvsocks directory and start building with the script. For example, to build 'Libuv' and its dependencies, run:

git submodule update --init --recursive

To build the Windows:

Compile and Run a Project in Visual Studio 2015

Usage

uvsocks [-L listen:port:host:port] [-R listen:port:host:port] [-l login_name] [-a password] [-p port] [user:password@]hostname:port

Examples

uvsocks -L 127.0.0.1:1234:192.168.0.231:8000 user:password@192.168.0.15:1080

uvsocks -L 127.0.0.1:1234:192.168.0.231:8000 192.168.0.15 -l user -a password -p 22

uvsocks -R 5824:192.168.0.231:8000 user:password@192.168.0.15:1080

uvsocks -R 5824:192.168.0.231:8000 192.168.0.15 -l user -a password -p 1080

uvsocks -L 127.0.0.1:1234:192.168.0.231:8000 -R 5824:192.168.0.231:8000 user:password@192.168.0.15:1080

uvsocks -L 127.0.0.1:1234:192.168.0.231:8000 -R 5824:192.168.0.231:8000 192.168.0.15 -l user -a password -p 1080

from https://github.com/nvrsw/uvsocks

 

No comments:

Post a Comment