Un simple serveur proxy SOCKS V5.
Utilisez make
pour terminer la compilation et la liaison.
$ make
Si suivi de CFLAG=-DDEBUG
le mode débogage est activé :
$ make CFLAG=-DDEBUG
S'il est démarré sans aucune option, il écoutera sur le port 1080 et aucune authentification n'est requise.
$ ./server
NO AUTHENTICATION REQUIRED
Listening at 0.0.0.0:1080
Avec l'option -h
, les informations d'aide sont affichées.
$ ./server -h
usage: ./server [options]
options:
-a < address > Local Address to bind (default: 0.0.0.0).
-p < port > Port number to bind (default: 1080).
-u < path/to/passwd > The path to passwd.
-d Run as a daemon.
-h Show this help message.
Les options -a
et -p
sont utilisées pour spécifier respectivement l'adresse IP et le numéro de port liés au serveur.
$ ./server -a 127.0.0.1 -p 8080
NO AUTHENTICATION REQUIRED
Listening at 127.0.0.1:8080
L'option -u
est utilisée pour activer l'authentification par nom d'utilisateur et mot de passe. L'option doit être suivie du chemin d'accès à un fichier. Chaque ligne du fichier correspond à un utilisateur, et le nom d'utilisateur et le mot de passe sont séparés par des virgules ,
par exemple :
$ cat ./passwd
user1,123456
user2,666
user3,2333
$ ./server -u ./passwd
USERNAME/PASSWORD
3 users
Listening at 0.0.0.0:1080
Si le paramètre -d
est donné, le serveur quittera le terminal et deviendra un processus démon.
$ ./server -d
NO AUTHENTICATION REQUIRED
Listening at 0.0.0.0:1080
PID is [xxxxx]
$ netstat -ntlp | grep xxxxx
tcp 0 0 0.0.0.0:1080 0.0.0.0: * LISTEN xxxxx/./server
Ce projet adopte l'accord de licence open source du MIT.
MIT License
Copyright (c) 2019-2021 totravel
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.