socks5 server c
1.0.0
シンプルな SOCKS V5 プロキシ サーバー。
make
使用してコンパイルとリンクを完了します。
$ make
CFLAG=-DDEBUG
デバッグ モードが有効になります。
$ make CFLAG=-DDEBUG
オプションを指定せずに開始した場合、ポート 1080 で待機し、認証は必要ありません。
$ ./server
NO AUTHENTICATION REQUIRED
Listening at 0.0.0.0:1080
-h
オプションを指定すると、ヘルプ情報が表示されます。
$ ./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.
オプション-a
と-p
それぞれサーバーにバインドされる IP アドレスとポート番号を指定するために使用されます。
$ ./server -a 127.0.0.1 -p 8080
NO AUTHENTICATION REQUIRED
Listening at 127.0.0.1:8080
オプション-u
、ユーザー名とパスワードの認証を有効にするために使用されます。このオプションの後にファイルへのパスを指定する必要があります。ファイルの各行はユーザーに対応し、ユーザー名とパスワードはカンマで区切られます,
次に例を示します。
$ cat ./passwd
user1,123456
user2,666
user3,2333
$ ./server -u ./passwd
USERNAME/PASSWORD
3 users
Listening at 0.0.0.0:1080
-d
パラメータが指定されている場合、サーバーはターミナルを離れてデーモン プロセスになります。
$ ./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
このプロジェクトは、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.