Looking for white list, this section unclear for me and nothing works
// src/acl/mod.rs
/// ACL rules
///
/// ## Sections
///
/// ACL File is formatted in sections, each section has a name with surrounded by brackets `[` and `]`
/// followed by Rules line by line.
///
/// ```plain
/// [SECTION-1]
/// RULE-1
/// RULE-2
/// RULE-3
///
/// [SECTION-2]
/// RULE-1
/// RULE-2
/// RULE-3
/// ```
///
/// Available sections are
///
/// - For local servers (`sslocal`, `ssredir`, ...)
/// * `[bypass_all]` - ACL runs in `BlackList` mode.
/// * `[proxy_all]` - ACL runs in `WhiteList` mode.
/// * `[bypass_list]` - Rules for connecting directly
/// * `[proxy_list]` - Rules for connecting through proxies
/// - For remote servers (`ssserver`)
/// * `[reject_all]` - ACL runs in `BlackList` mode.
/// * `[accept_all]` - ACL runs in `WhiteList` mode.
/// * `[black_list]` - Rules for rejecting
/// * `[white_list]` - Rules for allowing
/// * `[outbound_block_list]` - Rules for blocking outbound addresses.
///
/// ## Mode
///
/// Mode is the default ACL strategy for those addresses that are not in configuration file.
///
/// - `BlackList` - Bypasses / Rejects all addresses except those in `[proxy_list]` or `[white_list]`
/// - `WhiteList` - Proxies / Accepts all addresses except those in `[bypass_list]` or `[black_list]`
///
/// ## Rules
///
/// Rules can be either
///
/// - CIDR form network addresses, like `10.9.0.32/16`
/// - IP addresses, like `127.0.0.1` or `::1`
/// - Regular Expression for matching hosts, like `(^|\.)gmail\.com$`
/// - Domain with preceding `|` for exact matching, like `|google.com`
/// - Domain with preceding `||` for matching with subdomains, like `||google.com`
[white_list]
||google.com
||github.com
- I still can open everything else
--remote-server socks5://127.0.0.1:123 - fake proxy
[TRACE socks_hub_core::acl] ACL parsing start from mode BlackList and black_list / bypass_list
[TRACE socks_hub_core::acl] switch to mode WhiteList
[TRACE socks_hub_core::acl] loading white_list / proxy_list
[TRACE socks_hub_core::acl] TREE-RULE google.com
[TRACE socks_hub_core::acl] TREE-RULE github.com
[INFO socks_hub] Listening on http://127.0.0.1:1080
Looking for white list, this section unclear for me and nothing works
--remote-server socks5://127.0.0.1:123- fake proxy