diff --git a/.github/workflows/build-win64.yml b/.github/workflows/build-win64.yml index 0a9a4a4..520df69 100644 --- a/.github/workflows/build-win64.yml +++ b/.github/workflows/build-win64.yml @@ -87,7 +87,7 @@ jobs: copy doc\html\plugins\*.* dist\3proxy\doc\html\plugins\ copy doc\html\man8\*.* dist\3proxy\doc\html\man8\ copy doc\html\man5\*.* dist\3proxy\doc\html\man5\ - copy doc\html\devel\*.rtf dist\3proxy\doc\html\devel\ + copy doc\html\devel\*.* dist\3proxy\doc\html\devel\ copy copying dist\3proxy\ copy authors dist\3proxy\ copy README.md dist\3proxy\ diff --git a/.github/workflows/build-winarm64.yml b/.github/workflows/build-winarm64.yml index 89add3d..bf2d5d4 100644 --- a/.github/workflows/build-winarm64.yml +++ b/.github/workflows/build-winarm64.yml @@ -86,7 +86,7 @@ jobs: copy doc\html\plugins\*.* dist\3proxy\doc\html\plugins\ copy doc\html\man8\*.* dist\3proxy\doc\html\man8\ copy doc\html\man5\*.* dist\3proxy\doc\html\man5\ - copy doc\html\devel\*.rtf dist\3proxy\doc\html\devel\ + copy doc\html\devel\*.* dist\3proxy\doc\html\devel\ copy copying dist\3proxy\ copy authors dist\3proxy\ copy README.md dist\3proxy\ diff --git a/doc/html/man5/3proxy.cfg.5.html b/doc/html/man5/3proxy.cfg.5.html index 3bc1d51..62f30a0 100644 --- a/doc/html/man5/3proxy.cfg.5.html +++ b/doc/html/man5/3proxy.cfg.5.html @@ -552,8 +552,7 @@ username ignored.
Appropriate for most cases
useronly
- authentication by username without checking for any password with authorization by ACLs. Useful for e.g. -SOCKSv4 proxy and icqpr (icqpr set UIN / AOL screen name as -a username)
+SOCKSv4 proxy.
dnsname
- authentication by DNS hostname with authorization by ACLs. The DNS hostname is resolved via a PTR (reverse) record and validated (the resolved name must @@ -564,6 +563,12 @@ strong
- username/password authentication required. It will work with SOCKSv5, FTP, POP3 and HTTP proxy.
cache
- cached authentication, may be used with ´authcache´.
+cacheacl
- cached authentication, same as cache +but the ACL authorization result is also cached and not +re-evaluated on each request. Faster than cache, but +ACL changes do not take effect for cached users until the +cache entry expires. Use cache if ACLs may change +during the cache lifetime.
radius
- authentication with RADIUS.
Plugins may add additional authentication types.

@@ -598,10 +603,20 @@ user,password - both username and password are checked against cached ones.
limit
- limit user to use only one ip, ´ip´ and ´user´ are required
-ack
- only use cached auth if user access service with +acl - only use cached auth if user access service with same ACL
-ext
- cache external IP
-Use auth type cache for cached authentication

+ext - cache external IP
+dstaddr
- cache by destination IP address
+dstport
- cache by destination port
+dsthost
- cache by destination hostname
+dstoper
- cache by destination operation (e.g. HTTP +method)
+srvaddr
- cache by service (listener) address
+srvport
- cache by service (listener) port
+Multiple types can be combined (e.g. +ip,user,dstaddr,dstport).
+Use auth type cache (or cacheacl) for cached +authentication

allow <userlist> <sourcelist> <targetlist> @@ -746,8 +761,14 @@ ha send HAProxy PROXY protocol v1 header to parent proxy. Must be the last in the proxy chain. Useful for passing client IP information to the parent proxy. Example: parent 1000 ha
-Use "+" proxy only with fakeresolve -option

+Use "+" proxy only with fakeresolve option +
+Any parent type above can be suffixed with s (e.g. +https, tcps, socks5s, connect+s) +to establish a TLS-encrypted connection to the parent proxy. +Requires SSL/TLS support (WITH_SSL) and is used with +ssl_client_mode 3, which only handshakes TLS for +s-suffixed parents.

IP and port are ip addres and port of parent proxy server. If IP is zero, ip @@ -946,12 +967,16 @@ The rest of parameters is identical to pwtype is one of:
none (empty) - use system authentication
CL
- password is cleartext
-CR
- password is crypt-style password
+CR
- password is crypt-style password. $1$ prefix +uses MD5-crypt (requires OpenSSL), $3$ prefix uses +BLAKE2b-crypt (always available, see 3proxy_crypt(8)) +
NT
- password is NT password (in hex)
example:
users test1:CL:password1 "test2:CR:$1$lFDGlder$pLRb4cU2D7GAT58YQvY49."
users test3:NT:BD7DFBF29A93F93C63CB84790DA00E63
+users "test4:CR:$3$salt$G47yV9w...."
Note: double quotes are required because the password contains a $ sign.

@@ -1268,8 +1293,8 @@ to 3proxy@3proxy.org

3proxy(8), -proxy(8), ftppr(8), socks(8), pop3p(8), tcppm(8), udppm(8), -syslogd(8),
+3proxy_crypt(8), proxy(8), ftppr(8), socks(8), pop3p(8), +smtpp(8), tlspr(8), tcppm(8), udppm(8), syslogd(8),
https://3proxy.org/

AUTHORS diff --git a/doc/html/man8/tlspr.8.html b/doc/html/man8/tlspr.8.html index 79747bf..83de805 100644 --- a/doc/html/man8/tlspr.8.html +++ b/doc/html/man8/tlspr.8.html @@ -232,6 +232,20 @@ with TLS 1.3)

+

-s

+ + + + +

Split the TLS Client HELLO +packet across multiple TCP segments to make SNI-based DPI +detection harder. An optional numeric value can follow (e.g. +-s1) to control the splitting behaviour.

+ + + + +

-l

diff --git a/doc/html/plugins/PCREPlugin.html b/doc/html/plugins/PCREPlugin.html deleted file mode 100644 index 64297c6..0000000 --- a/doc/html/plugins/PCREPlugin.html +++ /dev/null @@ -1,90 +0,0 @@ -

3proxy PCRE (Perl Compatible Regular Expressions) Filtering

- -

Note: Since version 0.9.7, PCRE filtering is built into 3proxy and does not require -a separate plugin. All pcre_* commands are available directly when 3proxy is compiled with -PCRE2 support (WITH_PCRE). The plugin line is no longer needed.

- -

This filtering functionality can be used to create matching and replacement -rules with regular expressions for client requests, client and -server headers, and client and server data. It adds 3 additional -configuration commands:

- -
-pcre TYPE FILTER_ACTION REGEXP [ACE]
-pcre_rewrite TYPE FILTER_ACTION REGEXP REWRITE_EXPRESSION [ACE]
-pcre_extend FILTER_ACTION [ACE]
-pcre_options OPTION1 [...]
-
-pcre - allows applying a rule for matching -
pcre_rewrite - in addition to 'pcre', allows substituting substrings -
pcre_extend - extends the ACL of the last pcre or pcre_rewrite command by -adding an additional ACE (like with allow/deny configuration commands). -
pcre_options - allows setting matching options. Available options are: -PCRE_CASELESS, -PCRE_MULTILINE, -PCRE_DOTALL, -PCRE_EXTENDED, -PCRE_ANCHORED, -PCRE_DOLLAR_ENDONLY, -PCRE_EXTRA, -PCRE_NOTBOL, -PCRE_NOTEOL, -PCRE_UNGREEDY, -PCRE_NOTEMPTY, -PCRE_UTF8, -PCRE_NO_AUTO_CAPTURE, -PCRE_NO_UTF8_CHECK, -PCRE_AUTO_CALLOUT, -PCRE_PARTIAL, -PCRE_DFA_SHORTEST, -PCRE_DFA_RESTART, -PCRE_FIRSTLINE, -PCRE_DUPNAMES, -PCRE_NEWLINE_CR, -PCRE_NEWLINE_LF, -PCRE_NEWLINE_CRLF, -PCRE_NEWLINE_ANY, -PCRE_NEWLINE_ANYCRLF, -PCRE_BSR_ANYCRLF, -PCRE_BSR_UNICODE - - - - -

Example:

-
-pcre request deny "porn|sex" user1,user2,user3 192.168.0.0/16
-pcre srvheader deny "Content-type: application"
-pcre_rewrite clidata,srvdata dunno "porn|sex|pussy" "***" baduser
-pcre_extend deny * 192.168.0.1/16
-
- -© Vladimir Dubrovin, License: BSD style diff --git a/doc/html/plugins/PCREPlugin.ru.html b/doc/html/plugins/PCREPlugin.ru.html deleted file mode 100644 index cff579e..0000000 --- a/doc/html/plugins/PCREPlugin.ru.html +++ /dev/null @@ -1,89 +0,0 @@ -

Фильтрация PCRE (Perl Compatible Regular Expressions) в 3proxy

- -

Примечание: Начиная с версии 0.9.7 фильтрация PCRE встроена в 3proxy и не требует -отдельного плагина. Все команды pcre_* доступны напрямую при компиляции 3proxy с поддержкой -PCRE2 (WITH_PCRE). Строка plugin больше не нужна.

- -

Фильтрующий плагин используется для создания правил поиска и замены -регулярных выражений в запросе, заголовков запроса и ответа и данных. -Добавляет поддержку 3х новых команд в файле конфигурации:

- -
-pcre TYPE FILTER_ACTION REGEXP [ACE]
-pcre_rewrite TYPE FILTER_ACTION REGEXP REWRITE_EXPRESSION [ACE]
-pcre_extend FILTER_ACTION [ACE]
-pcre_options OPTION1 [...]
-
-pcre - позволяет искать совпадения -
pcre_rewrite - дополнительно позволяет производить замену подстрок -
pcre_extend - расширяет ACL последней команды pcre или pcre_rewrite путем -добавления еще одной ACE (аналогично списку правил allow/deny). -
pcre_options - позволяет устанавливать опции поиска, доступны следующие опции: -PCRE_CASELESS, -PCRE_MULTILINE, -PCRE_DOTALL, -PCRE_EXTENDED, -PCRE_ANCHORED, -PCRE_DOLLAR_ENDONLY, -PCRE_EXTRA, -PCRE_NOTBOL, -PCRE_NOTEOL, -PCRE_UNGREEDY, -PCRE_NOTEMPTY, -PCRE_UTF8, -PCRE_NO_AUTO_CAPTURE, -PCRE_NO_UTF8_CHECK, -PCRE_AUTO_CALLOUT, -PCRE_PARTIAL, -PCRE_DFA_SHORTEST, -PCRE_DFA_RESTART, -PCRE_FIRSTLINE, -PCRE_DUPNAMES, -PCRE_NEWLINE_CR, -PCRE_NEWLINE_LF, -PCRE_NEWLINE_CRLF, -PCRE_NEWLINE_ANY, -PCRE_NEWLINE_ANYCRLF, -PCRE_BSR_ANYCRLF, -PCRE_BSR_UNICODE - - - - - -

Пример:

-
-pcre request deny "porn|sex" user1,user2,user3 192.168.0.0/16
-pcre srvheader deny "Content-type: application"
-pcre_rewrite clidata,srvdata dunno "porn|sex|pussy" "***" baduser
-pcre_extend deny * 192.168.0.1/16
-
- -© Vladimir Dubrovin, License: BSD style diff --git a/doc/html/plugins/SSLPlugin.html b/doc/html/plugins/SSLPlugin.html deleted file mode 100644 index b33c070..0000000 --- a/doc/html/plugins/SSLPlugin.html +++ /dev/null @@ -1,124 +0,0 @@ -

3proxy SSL/TLS Support

- -

Note: Since version 0.9.7, SSL/TLS support is built into 3proxy and does not require -a separate plugin. All ssl_* commands are available directly when 3proxy is compiled with -OpenSSL support (WITH_SSL). The plugin line is no longer needed.

- -

SSL/TLS support can be used to transparently decrypt SSL/TLS data, provide TLS encryption -for proxy traffic, and authenticate using client certificates.

- -

For transparent certificate spoofing (MITM):

- -
ssl_mitm - spoof certificates for services started below. Usage without ssl_client_verify is insecure. -
ssl_nomitm - do not spoof certificates for services started below - -

To protect traffic to the server (https:// proxy):

- -ssl_serv (or ssl_server) - require TLS connection from clients for services below -
ssl_noserv (or ssl_noserver) - do not require TLS connection from clients for services below - -

To use TLS for upstream connections:

- -ssl_cli (or ssl_client) - establish TLS connection to upstream server for services below -
ssl_nocli (or ssl_noclient) - do not establish TLS connection to upstream server for services below - -

Parameters:

- -
ssl_server_cert /path/to/cert - Server certificate (should not be self-signed and must contain an Alternative Name) for ssl_serv -
ssl_server_key /path/to/key - Server certificate key for ssl_server_cert or generated MITM certificate -
ssl_client_cert /path/to/cert - Client certificate for authentication on upstream server (used with ssl_cli) -
ssl_client_key /path/to/key - Client certificate key for ssl_client_cert -
ssl_client_ciphersuites ciphersuites_list - TLS client ciphers for TLS 1.3, e.g., ssl_client_ciphersuites TLS_AES_128_GCM_SHA256 -
ssl_server_ciphersuites ciphersuites_list - TLS server ciphers for TLS 1.3 -
ssl_client_cipher_list ciphers_list - TLS client ciphers for TLS 1.2 and below, e.g., ssl_client_cipher_list ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305 -
ssl_server_cipher_list ciphers_list - TLS server ciphers for TLS 1.2 and below -
ssl_client_min_proto_version tls_version - TLS client minimum TLS version (e.g., TLSv1.2) -
ssl_server_min_proto_version tls_version - TLS server minimum TLS version (e.g., TLSv1.2) -
ssl_client_max_proto_version tls_version - TLS client maximum TLS version (e.g., TLSv1.2) -
ssl_server_max_proto_version tls_version - TLS server maximum TLS version (e.g., TLSv1.2) -
ssl_client_verify - verify the certificate for the upstream server in TLS client functionality (used with ssl_mitm or ssl_cli) -
ssl_client_no_verify - do not verify the certificate for the upstream server in TLS client functionality (default) -
ssl_server_verify - require client certificate authentication (mTLS) for ssl_serv -
ssl_server_no_verify - do not require client certificate (default) -
ssl_server_ca_file /path/to/cafile - CA certificate file for MITM -
ssl_server_ca_key /path/to/cakey - key for ssl_server_ca_file MITM CA -
ssl_server_ca_dir /path/to/cadir - CA directory for ssl_server_verify -
ssl_server_ca_store /path/to/castore - CA store for ssl_server_verify (OpenSSL 3.0+) -
ssl_client_ca_file /path/to/cafile - CA file for ssl_client_verify -
ssl_client_ca_dir /path/to/cadir - CA directory for ssl_client_verify -
ssl_client_ca_store /path/to/castore - CA store for ssl_client_verify (OpenSSL 3.0+) -
ssl_client_sni hostname - SNI hostname to send to upstream server (overrides the requested hostname) -
ssl_client_alpn protocol1 protocol2 ... - ALPN protocols to negotiate with upstream server (e.g., ssl_client_alpn h2 http/1.1) -
ssl_client_mode mode - when to establish TLS connection: 0 - on connect (default), 1 - after authentication, 2 - before data, 3 - only for secure parent types (ending with 's') -
ssl_certcache /path/to/cache/ - location for the generated MITM certificates cache, optional if ssl_server_ca_file / ssl_server_ca_key are configured. -The cache may contain 3 files: 3proxy.pem - public -self-signed certificates (used if ssl_server_ca_file is not configured), -3proxy.key - key for public certificates, used if ssl_server_ca_key is not configured, server.key - this key is used if ssl_server_key is not configured to generate -spoofed certificates. If server.key is absent, 3proxy.key is used to generate certificates. -Generated certificates are placed in the same path. - - -

MITM example:

-
-ssl_server_ca_file /path/to/cafile
-ssl_server_ca_key /path/to/cakey
-ssl_mitm
-proxy -p3128
-ssl_nomitm
-proxy -p3129
-
-MITM's traffic with a spoofed certificate for the port 3128 proxy. - -

https:// proxy example:

-
-ssl_server_cert path_to_cert
-ssl_server_key path_to_key
-ssl_serv
-proxy -p33128
-ssl_noserv
-proxy -p3128
-
-Creates an https:// proxy on port 33128 and an http:// proxy on port 3128 - -

TLS client example (connect to upstream via TLS):

-
-ssl_client_cert /path/to/client.crt
-ssl_client_key /path/to/client.key
-ssl_client_verify
-ssl_client_ca_file /path/to/ca.crt
-ssl_cli
-proxy -p3128
-
-Creates an HTTP proxy that connects to upstream servers via TLS with client certificate authentication. - -

Conditional TLS for parent proxy (ssl_client_mode 3):

-
-ssl_server_cert /path/to/server.crt
-ssl_server_key /path/to/key
-ssl_client_mode 3
-
-auth strong
-allow user1
-parent 1000 https parent1.example.com 443
-allow user2
-parent 1000 socks5 parent2.example.com 1080
-ssl_serv
-ssl_cli
-proxy -p3128
-ssl_noserv
-ssl_nocli
-
-Creates an HTTP proxy on port 3128 that uses TLS for client connections (ssl_serv). With ssl_client_mode 3, TLS handshake to parent proxy is performed only if the parent type ends with 's' (secure types). In this example, user1's traffic goes through an https parent proxy with TLS encryption, while user2's traffic goes through a regular socks5 parent without TLS. Secure parent types include: tcps, https, connects, connect+s, socks4s, socks5s, socks4+s, socks5+s, pop3s, smtps, ftps. - -

mTLS example (require client certificate):

-
-ssl_server_cert /path/to/server.crt
-ssl_server_key /path/to/server.key
-ssl_server_ca_file /path/to/ca.crt
-ssl_server_verify
-ssl_serv
-proxy -p3128
-
-Creates an https:// proxy that requires client certificate authentication. - -© Vladimir Dubrovin, License: BSD style diff --git a/doc/html/plugins/SSLPlugin.ru.html b/doc/html/plugins/SSLPlugin.ru.html deleted file mode 100644 index dc9238b..0000000 --- a/doc/html/plugins/SSLPlugin.ru.html +++ /dev/null @@ -1,120 +0,0 @@ -

3proxy SSL/TLS поддержка

- -

Примечание: Начиная с версии 0.9.7 поддержка SSL/TLS встроена в 3proxy и не требует -отдельного плагина. Все команды ssl_* доступны напрямую при компиляции 3proxy с поддержкой -OpenSSL (WITH_SSL). Строка plugin больше не нужна.

- -

Плагин можно использовать для перехвата и дешифровки SSL/TLS трафика, для шифрования трафика прокси-сервера и аутентификации с помощью клиентских сертификатов.

- -

Для прозрачного перехвата трафика (MITM):

- -
ssl_mitm - подменять сертификаты для сервисов, запущенных ниже. Использование без ssl_client_verify небезопасно. -
ssl_nomitm - не подменять сертификаты для сервисов, запущенных ниже. - -

Для защиты трафика прокси-сервера (https:// proxy):

- -ssl_serv (или ssl_server) - требовать TLS-соединение от клиентов для сервисов, запущенных ниже -
ssl_noserv (или ssl_noserver) - не требовать TLS-соединение от клиентов для сервисов, запущенных ниже - -

Для использования TLS при соединении к вышестоящему серверу:

- -ssl_cli (или ssl_client) - устанавливать TLS-соединение к вышестоящему серверу для сервисов, запущенных ниже -
ssl_nocli (или ssl_noclient) - не устанавливать TLS-соединение к вышестоящему серверу для сервисов, запущенных ниже - -

Параметры:

- -
ssl_server_cert /path/to/cert - сертификат сервера (не должен быть самоподписанным, должен содержать альтернативные имена) для ssl_serv -
ssl_server_key /path/to/key - ключ сертификата сервера для ssl_server_cert или сгенерированного MITM-сертификата -
ssl_client_cert /path/to/cert - клиентский сертификат для аутентификации на вышестоящем сервере (используется с ssl_cli) -
ssl_client_key /path/to/key - ключ клиентского сертификата для ssl_client_cert -
ssl_client_ciphersuites ciphersuites_list - наборы шифров TLS для TLS 1.3 (клиент), пример: ssl_client_ciphersuites TLS_AES_128_GCM_SHA256 -
ssl_server_ciphersuites ciphersuites_list - наборы шифров TLS для TLS 1.3 (сервер) -
ssl_client_cipher_list ciphers_list - наборы шифров TLS для TLS 1.2 и ниже (клиент), пример: ssl_client_cipher_list ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305 -
ssl_server_cipher_list ciphers_list - наборы шифров TLS для TLS 1.2 и ниже (сервер) -
ssl_client_min_proto_version tls_version - минимальная версия TLS клиента (например, ssl_client_min_proto_version TLSv1.2) -
ssl_server_min_proto_version tls_version - минимальная версия TLS сервера -
ssl_client_max_proto_version tls_version - максимальная версия TLS клиента -
ssl_server_max_proto_version tls_version - максимальная версия TLS сервера -
ssl_client_verify - проверять сертификат вышестоящего сервера (используется с ssl_mitm или ssl_cli) -
ssl_client_no_verify - не проверять сертификат вышестоящего сервера (по умолчанию) -
ssl_server_verify - требовать клиентский сертификат (mTLS) для ssl_serv -
ssl_server_no_verify - не требовать клиентский сертификат (по умолчанию) -
ssl_server_ca_file /path/to/cafile - файл CA-сертификата для MITM -
ssl_server_ca_key /path/to/cakey - ключ CA-сертификата ssl_server_ca_file для MITM -
ssl_server_ca_dir /path/to/cadir - директория CA-сертификатов для ssl_server_verify -
ssl_server_ca_store /path/to/castore - хранилище CA-сертификатов для ssl_server_verify (OpenSSL 3.0+) -
ssl_client_ca_file /path/to/cafile - файл CA-сертификатов для ssl_client_verify -
ssl_client_ca_dir /path/to/cadir - директория CA-сертификатов для ssl_client_verify -
ssl_client_ca_store /path/to/castore - хранилище CA-сертификатов для ssl_client_verify (OpenSSL 3.0+) -
ssl_client_sni hostname - SNI-имя хоста для отправки вышестоящему серверу (переопределяет запрошенное имя хоста) -
ssl_client_alpn протокол1 протокол2 ... - ALPN-протоколы для согласования с вышестоящим сервером (например, ssl_client_alpn h2 http/1.1) -
ssl_client_mode режим - когда устанавливать TLS-соединение: 0 - при подключении (по умолчанию), 1 - после аутентификации, 2 - перед передачей данных, 3 - только для защищённых типов parent прокси (заканчивающихся на 's') -
ssl_certcache /path/to/cache/ - расположение кеша сгенерированных MITM-сертификатов. Кеш может содержать -файлы 3proxy.pem, 3proxy.key, server.key, которые используются как ssl_server_ca_file, -ssl_server_ca_key и ssl_server_key соответственно, если они не заданы. Если server.key не задан, -3proxy.key используется для генерации серверного сертификата. - -

Пример MITM:

-
-ssl_server_ca_file /path/to/cafile
-ssl_server_ca_key /path/to/cakey
-ssl_mitm
-proxy -p3128
-ssl_nomitm
-proxy -p3129
-
-Перехватывается трафик в прокси на порту 3128. - -

Пример конфигурации https:// прокси:

-
-ssl_server_cert path_to_cert
-ssl_server_key path_to_key
-ssl_serv
-proxy -p33128
-ssl_noserv
-proxy -p3128
-
-На порту 33128 создается https:// прокси, на порту 3128 - http:// прокси. - -

Пример TLS-клиента (соединение к вышестоящему серверу через TLS):

-
-ssl_client_cert /path/to/client.crt
-ssl_client_key /path/to/client.key
-ssl_client_verify
-ssl_client_ca_file /path/to/ca.crt
-ssl_cli
-proxy -p3128
-
-Создается HTTP-прокси, который соединяется с вышестоящими серверами через TLS с аутентификацией по клиентскому сертификату. - -

Условное TLS для parent прокси (ssl_client_mode 3):

-
-ssl_server_cert /path/to/server.crt
-ssl_server_key /path/to/key
-ssl_client_mode 3
-
-auth strong
-allow user1
-parent 1000 https parent1.example.com 443
-allow user2
-parent 1000 socks5 parent2.example.com 1080
-ssl_serv
-ssl_cli
-proxy -p3128
-ssl_noserv
-ssl_nocli
-
-Создается HTTP-прокси на порту 3128, использующий TLS для клиентских соединений (ssl_serv). При ssl_client_mode 3 TLS-рукопожатие с родительским прокси выполняется только если тип parent прокси заканчивается на 's' (защищённые типы). В данном примере трафик user1 идёт через https родительский прокси с TLS-шифрованием, а трафик user2 — через обычный socks5 родитель без TLS. Защищённые типы parent прокси: tcps, https, connects, connect+s, socks4s, socks5s, socks4+s, socks5+s, pop3s, smtps, ftps. - -

Пример mTLS (требование клиентского сертификата):

-
-ssl_server_cert /path/to/server.crt
-ssl_server_key /path/to/server.key
-ssl_server_ca_file /path/to/ca.crt
-ssl_server_verify
-ssl_serv
-proxy -p3128
-
-Создается https:// прокси, требующий аутентификацию по клиентскому сертификату. - -© Vladimir Dubrovin, License: BSD style diff --git a/man/3proxy.cfg.5 b/man/3proxy.cfg.5 index f536b41..d238a65 100644 --- a/man/3proxy.cfg.5 +++ b/man/3proxy.cfg.5 @@ -591,8 +591,7 @@ This is the default authentication type Appropriate for most cases .br \fBuseronly\fR - authentication by username without checking for any password with -authorization by ACLs. Useful for e.g. SOCKSv4 proxy and icqpr (icqpr set UIN / -AOL screen name as a username) +authorization by ACLs. Useful for e.g. SOCKSv4 proxy. .br \fBdnsname\fR - authentication by DNS hostname with authorization by ACLs. The DNS hostname is resolved via a PTR (reverse) record and validated (the resolved @@ -604,6 +603,11 @@ NB: there is no password check; the name may be spoofed. SOCKSv5, FTP, POP3 and HTTP proxy. .br \fBcache\fR - cached authentication, may be used with \'authcache\'. +.br + \fBcacheacl\fR - cached authentication, same as \fBcache\fR but the ACL +authorization result is also cached and not re-evaluated on each request. Faster +than \fBcache\fR, but ACL changes do not take effect for cached users until the +cache entry expires. Use \fBcache\fR if ACLs may change during the cache lifetime. .br \fBradius\fR - authentication with RADIUS. .br @@ -641,11 +645,25 @@ assigned to the same user without actual authentication. .br \fBlimit\fR - limit user to use only one ip, \'ip\' and \'user\' are required .br - \fBack\fR - only use cached auth if user access service with same ACL + \fBacl\fR - only use cached auth if user access service with same ACL .br \fBext\fR - cache external IP .br -Use auth type \fBcache\fR for cached authentication + \fBdstaddr\fR - cache by destination IP address +.br + \fBdstport\fR - cache by destination port +.br + \fBdsthost\fR - cache by destination hostname +.br + \fBdstoper\fR - cache by destination operation (e.g. HTTP method) +.br + \fBsrvaddr\fR - cache by service (listener) address +.br + \fBsrvport\fR - cache by service (listener) port +.br +Multiple types can be combined (e.g. \fBip,user,dstaddr,dstport\fR). +.br +Use auth type \fBcache\fR (or \fBcacheacl\fR) for cached authentication .br .BR allow @@ -808,6 +826,12 @@ in the proxy chain. Useful for passing client IP information to the parent proxy Example: parent 1000 ha .br Use "+" proxy only with \fBfakeresolve\fR option +.br +Any parent type above can be suffixed with \fBs\fR (e.g. \fBhttps\fR, +\fBtcps\fR, \fBsocks5s\fR, \fBconnect+s\fR) to establish a TLS-encrypted +connection to the parent proxy. Requires SSL/TLS support (WITH_SSL) and is +used with \fBssl_client_mode 3\fR, which only handshakes TLS for \fBs\fR-suffixed +parents. .br IP and port are ip addres and port of parent proxy server. @@ -1047,7 +1071,9 @@ the format: .br \fBCL\fR - password is cleartext .br - \fBCR\fR - password is crypt-style password + \fBCR\fR - password is crypt-style password. \fB$1$\fR prefix uses MD5-crypt +(requires OpenSSL), \fB$3$\fR prefix uses BLAKE2b-crypt (always available, see +.BR 3proxy_crypt (8)) .br \fBNT\fR - password is NT password (in hex) .br @@ -1056,6 +1082,8 @@ the format: users test1:CL:password1 "test2:CR:$1$lFDGlder$pLRb4cU2D7GAT58YQvY49." .br users test3:NT:BD7DFBF29A93F93C63CB84790DA00E63 +.br + users "test4:CR:$3$salt$G47yV9w...." .br Note: double quotes are required because the password contains a $ sign. @@ -1356,7 +1384,7 @@ authentication and/or allow/deny ACLs. Report all bugs to .BR 3proxy@3proxy.org .SH SEE ALSO -3proxy(8), proxy(8), ftppr(8), socks(8), pop3p(8), tcppm(8), udppm(8), syslogd(8), +3proxy(8), 3proxy_crypt(8), proxy(8), ftppr(8), socks(8), pop3p(8), smtpp(8), tlspr(8), tcppm(8), udppm(8), syslogd(8), .br https://3proxy.org/ .SH AUTHORS diff --git a/man/tlspr.8 b/man/tlspr.8 index d9a30c9..ede7847 100644 --- a/man/tlspr.8 +++ b/man/tlspr.8 @@ -75,6 +75,9 @@ destination_port. Port to establish outgoing connections. Required unless the Tr .B -c TLS_CHECK_LEVEL. 0 (default) - allow non-TLS traffic to pass, 1 - require TLS, only check client HELLO packet, 2 - require TLS, check both client and server HELLO, 3 - require TLS, check that the server sends a certificate (not compatible with TLS 1.3), 4 - require mutual TLS, check that the server sends a certificate request and the client sends a certificate (not compatible with TLS 1.3) .TP +.B -s +Split the TLS Client HELLO packet across multiple TCP segments to make SNI-based DPI detection harder. An optional numeric value can follow (e.g. \fB-s1\fR) to control the splitting behaviour. +.TP .B -l Log. By default logging is to stdout. If .I logfile