- Implemented `check_dns_availability` to measure DNS server latency
- Added `DNS_AVAILABILITY_SERVERS` and `DNS_AVAILABILITY_DOMAINS` to config
- Updated `_format_summary` to include DNS availability statistics
- Integrated DNS availability results into the CLI menu (Test 2)
- Added DoH wire-format (RFC 8484) support for improved probe reliability
- Enhanced `_parse_dns_response` for better error handling and parsing
- Refactored `run_domains_test` to better classify ISP, local, and Fake-IP
- Implemented new `core/telegram_scanner.py` module
- Added functionality to check Telegram DC reachability via TCP
- Included tests for Telegram download and upload speed and stalls
- Used `httpx` for HTTP-based download and upload tests
- Provided live status updates during Telegram test with Rich
- Integrated Telegram test into `dpi_detector.py` main loop
- Updated test selection UI to include Telegram test (option 5)
- Added summary reporting for Telegram test results (DL, UL, DC)
- Parallelize SNI whitelist probing for all detected ASes
- Collect and display up to 3 working SNIs per blocked AS
- Improve feedback for SNI test results, including bans/rate-limits
- Allow "show legend" option (5) to be combined with other tests
- Remove interactive legend display from main loop for smoother flow
- Simplify DNS check conditions by removing redundant config check
- Added a new menu option `5` to display the status legend.
- Implemented logic to show the legend when selected as a standalone action.
- Revamped the `print_legend()` function for better clarity.
- Categorized status entries and added more detailed descriptions.
- Introduced new status terms for various network and protocol errors.
- Removed `rich.Live` usage for `run_wl_sni` progress display.
- Switched to `sys.stderr` with `\r` for `run_wl_sni` progress updates.
- Modified `run_wl_sni` to print results per AS immediately.
- Optimized SNI search within batches for the first "OK" result.
- Introduce `stub_ips` for early ISP page detection via DNS.
- Refactor redirect classification.
- Differentiate between same-domain/subdomain and external redirects.
- Remove `config.BLOCK_MARKERS` and `BODY_BLOCK_MARKERS` usage.
- Update `cli/ui` legend for new ISP page and redirect statuses.
- Integrate `stub_ips` into TLS and HTTP scanning workers.
- Simplify HTTP/TLS status reporting for redirects and connections.
- Introduced granular httpx.Timeout configurations for AsyncClient.
- Replaced a single config.TIMEOUT with CONNECT_TIMEOUT, READ_TIMEOUT.
- Added POOL_TIMEOUT to manage connection pool wait times.
- Refactored tls_scanner.py and tcp16_scanner.py for error handling.
- Leveraged utils.error_classifier for consistent error classification.
- Enhanced classify_connect_error with specific PoolTimeout handling.
- Updated cli/runners.py to display the new CONNECT_TIMEOUT.
- Improved error labels and details within error_classifier.py.
- Refactored SNI whitelist test (Test 4) for improved accuracy and UX
- Added `hint_rtt` to TCP scanning functions for dynamic timeout optimization
- Introduced `check_tcp_16_20_with_rtt` to measure and return initial RTT
- Implemented a two-phase approach:
- Base check to identify detected ASNs with port 443 IPs
- Select lowest RTT detected IP per ASN for SNI probing
- Probed SNIs in batches, including an initial "no SNI" attempt
- Integrated a live progress table for real-time updates during SNI enumeration
- Enabled cancellation of SNI probes in a batch upon first success
- Introduce new "Search for whitelisted SNI for ASN" (Test 4).
- Load SNI whitelist from `whitelist_sni.txt`.
- Update test selection UI and logic to include Test 4.
- Remove IPv6 resolution and related logic from domain checks.
- Simplify `cli/runners._resolve_worker` by dropping IPv6.
- Adjust domain test output table and summary after IPv6 removal.
- Update `cli/ui.format_domain_details` to reflect IPv6 removal.
- Display target count for domain availability test
- Show timeout configuration for domain availability test
- Display target count for TCP fat header test
- Show timeout configuration for TCP fat header test
- Implement display for T13 IPv6 test results
- Update `build_domain_row` to handle T13v4 and T13v6 data
- Refactor detail aggregation logic for T12, T13v4, T13v6
- Reorder columns in the domain result table
- Clarify test selection prompt for DNS integrity option
- Explicitly use `resolved_ipv4` in domain row
- Implement separate DNS resolution for IPv4 and IPv6.
- Introduce a dedicated TLS 1.3 IPv6 testing phase.
- Update `_resolve_worker` to return both IPv4 and IPv6 addresses.
- Adjust `_tls_worker` to conditionally skip IPv6 test if no IPv6 is resolved.
- Modify domain test table to display distinct TLS 1.3 IPv4 and IPv6 results.
- Refine DNS fail and blocking detection to include IPv6 outcomes.
- Rename internal TLS clients for improved clarity (e.g., `client_t13v4`).