All Projects → tostercx → ssocks

tostercx / ssocks

Licence: MIT license
sSocks fork for windows support; original: https://sourceforge.net/projects/ssocks/

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to ssocks

Socks5
A full-fledged high-performance socks5 proxy server written in C#. Plugin support included.
Stars: ✭ 331 (+134.75%)
Mutual labels:  socks5, socks5-server
socks5
(支持UDP和TCP的纯Go/Golang socks5服务器) socks5 proxy server builds with go/golang, which UDP and TCP are supported.
Stars: ✭ 107 (-24.11%)
Mutual labels:  socks5, socks5-server
rsp
Rapid SSH Proxy
Stars: ✭ 223 (+58.16%)
Mutual labels:  socks5, socks5-server
microsocks11
A cross-platform SOCKS5 library and server based on the microsocks project.
Stars: ✭ 22 (-84.4%)
Mutual labels:  socks5, socks5-server
3proxy
3proxy - tiny free proxy server
Stars: ✭ 2,493 (+1668.09%)
Mutual labels:  socks5, socks5-server
mtproxy autoinstaller
MTProxy autoinstaller for Ubuntu
Stars: ✭ 25 (-82.27%)
Mutual labels:  socks5, socks5-server
3proxy
3proxy - tiny free proxy server
Stars: ✭ 2,263 (+1504.96%)
Mutual labels:  socks5, socks5-server
yellowsocks
transparent TCP to SOCKS5 redirector
Stars: ✭ 30 (-78.72%)
Mutual labels:  socks5
socks-cli
A solution to make CLI commands use socks5 proxy.
Stars: ✭ 48 (-65.96%)
Mutual labels:  socks5
spp
A simple and powerful proxy
Stars: ✭ 575 (+307.8%)
Mutual labels:  socks5
Awesome Relay
Awesome resources for Relay
Stars: ✭ 246 (+74.47%)
Mutual labels:  relay
docker-windscribe-socks-server
Containerizes a SOCKS5 proxy server with traffic tunneled through Windscribe's VPN service
Stars: ✭ 28 (-80.14%)
Mutual labels:  socks5
universal-react-relay-starter-kit
A starter kit for React in combination with Relay including a GraphQL server, server side rendering, code splitting, i18n, SEO.
Stars: ✭ 14 (-90.07%)
Mutual labels:  relay
azure-relay-dotnet
☁️ .NET Standard client library for Azure Relay Hybrid Connections
Stars: ✭ 35 (-75.18%)
Mutual labels:  relay
relay-helpers
Helpers to simplify and enhance Relay (https://facebook.github.io/relay/)
Stars: ✭ 19 (-86.52%)
Mutual labels:  relay
onionfruit
OnionFruit™ Connect - Tor access client with country selection, bridge configuration, pluggable transports and experimental DNS support
Stars: ✭ 150 (+6.38%)
Mutual labels:  socks5
Relay.swift
Relay for GraphQL, ported to Swift and SwiftUI
Stars: ✭ 58 (-58.87%)
Mutual labels:  relay
Isomorphic Relay
Adds server side rendering support to React Relay
Stars: ✭ 247 (+75.18%)
Mutual labels:  relay
sx
🖖 Fast, modern, easy-to-use network scanner
Stars: ✭ 1,267 (+798.58%)
Mutual labels:  socks5
react-relay-example
Example project how to use React, Relay and TypeScript
Stars: ✭ 27 (-80.85%)
Mutual labels:  relay

About:

sSocks is a package which contains: a socks5 server implements RFC 1928 (SOCKS V5) and RFC 1929 (Authentication for SOCKS V5), a reverse socks server and client, a netcat like tool, which supports socks5 with authentication and a socks5 relay (run a server and send to a another socks5 server).


Status on windows:

All tools have been ported and "work". They are still in alpha stage and may not work as expected in all circumstances. Daemon / background options are disabled on windows for now.


Building on Windows:

From VS Dev Command Prompt run

mkdir build
cd build
cmake ..
msbuild ssocks.sln /p:Configuration=Release

Building on linux:

mkdir build
cd build
cmake ..
make

Original README:


Features:

  • Configuration file
  • Authentication file
  • Generate a connection log file
  • Daemon mode
  • Server support bind mode
  • Socks4 support (if authentication is enable socks4 is disable)
  • Support choose of interface to bind

TODO:

  • IPV6 support
  • UDP support
  • Stock password with a hash ( md5 or sha256 )
  • GSSAPI auth support ( maybe )
  • Set number of client max ( actually 255 is in client.h MAXCLI var )
  • Add --pid-file option to server
  • ssocks bind localhost, not all
  • SSL implements out of RFC

Software:

  • nsocks is a netcat like through a socks5 (usefull to test socks server)
  • ssocksd is the socks5 server
  • ssocks is a socks5 relay, it run a socks server on your localhost interface, and relay all data to the server specified in parameter (works but under dev)
  • rssocks is a reverse socks5 server ( POC under dev )
  • rcsocks is a reverse socks5 client ( POC under dev )

File:

  • /etc/ssocksd.conf is server configuration file
  • /etc/ssocksd.auth is password file
  • /var/log/ssocksd.log is default log (specified in configuration file)
  • /var/run/ssocksd.pid is create in daemon mode and delete when it receive SIGTERM

Copyright (C) 2011 by Hugo Caron

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].