Skip to main content

A forward and reverse socks over websocket server and client implementation in Python.

Project description

GitHub Actions Workflow Status Codecov Python Version PyPI - Version Docker Pulls License

Pywssocks

Pywssocks is a SOCKS proxy implementation over WebSocket protocol.

Overview

This tool allows you to securely expose SOCKS proxy services under Web Application Firewall (WAF) protection (forward socks), or enable clients to connect and serve as SOCKS proxy servers when they don't have public network access (reverse socks).

Main Diagram

For golang version, please check linksocks/linksocks.

Note: LinkSocks is implemented in Go and also ships with a thin Python binding. Pywssocks, however, is written entirely in pure Python (no C extensions) and remains minimally compatible with the latest linksocks protocol and feature set.

Features

  1. Both client and server modes, supporting command-line usage or library integration.
  2. Forward and reverse proxy capabilities.
  3. Round-robin load balancing for reverse proxy.
  4. SOCKS proxy authentication support.
  5. IPv6 over SOCKS5 support.
  6. UDP over SOCKS5 support.

Potential Applications

  1. Distributed HTTP backend.
  2. Bypassing CAPTCHA using client-side proxies.
  3. Secure intranet penetration, using CDN network.

Usage

As a tool

Forward Proxy:

# Server (WebSockets at port 8765, as network connector)
pywssocks server -t example_token

# Client (SOCKS5 at port 1080)
pywssocks client -t example_token -u ws://localhost:8765 -p 1080

Reverse Proxy:

# Server (WebSockets at port 8765, SOCKS at port 1080)
pywssocks server -t example_token -p 1080 -r

# Client (as network connector)
pywssocks client -t example_token -u ws://localhost:8765 -r

As a library

Forward Proxy:

import asyncio
from pywssocks import WSSocksServer, WSSocksClient

# Server
server = WSSocksServer(
    ws_host="0.0.0.0",
    ws_port=8765,
)
token = server.add_forward_token()
print(f"Token: {token}")
asyncio.run(server.start())

# Client
client = WSSocksClient(
    token="<token>",
    ws_url="ws://localhost:8765",
    socks_host="127.0.0.1",
    socks_port=1080,
)
asyncio.run(client.start())

Reverse Proxy:

import asyncio
from pywssocks import WSSocksServer, WSSocksClient

# Server
server = WSSocksServer(
    ws_host="0.0.0.0",
    ws_port=8765,
    socks_host="127.0.0.1",
    socks_port_pool=range(1024, 10240),
)
token, port = server.add_reverse_token()
print(f"Token: {token}\nPort: {port}")
asyncio.run(server.start())

# Client
client = WSSocksClient(
    token="<token>",
    ws_url="ws://localhost:8765",
    reverse=True,
)
asyncio.run(client.start())

Installation

Pywssocks requires python >= 3.8, and can be installed by:

pip install pywssocks

Pywssocks is also available via docker:

docker run --rm -it jackzzs/pywssocks --help

Documentation

Visit the documentation: https://pywssocks.zetx.tech

License

Pywssocks is open source under the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pywssocks-1.5.1.tar.gz (50.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pywssocks-1.5.1-py3-none-any.whl (54.9 kB view details)

Uploaded Python 3

File details

Details for the file pywssocks-1.5.1.tar.gz.

File metadata

  • Download URL: pywssocks-1.5.1.tar.gz
  • Upload date:
  • Size: 50.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pywssocks-1.5.1.tar.gz
Algorithm Hash digest
SHA256 0cc47bdc9f33ada5ca24ee8fbfb73a0ac23c150b99c79fc97f0060b3513a6be1
MD5 1b369eeaf79b68a35084b0fda5140b70
BLAKE2b-256 d011c5a02c5091b27c7552e6b1e1bab3b5429782d60ebc689c4e1323bd3fb344

See more details on using hashes here.

Provenance

The following attestation bundles were made for pywssocks-1.5.1.tar.gz:

Publisher: pypi.yml on linksocks/pywssocks

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pywssocks-1.5.1-py3-none-any.whl.

File metadata

  • Download URL: pywssocks-1.5.1-py3-none-any.whl
  • Upload date:
  • Size: 54.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pywssocks-1.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c8b85d65e1a554a817f160275116fa2937ff28bceca9aee41db524a287893302
MD5 0b0ec5ce1abac60fa46a4c944f7408e6
BLAKE2b-256 d2bf485843b31d90148cef3a8990bbf68b762a8b33328c3e3f4b9535b658e2f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pywssocks-1.5.1-py3-none-any.whl:

Publisher: pypi.yml on linksocks/pywssocks

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page