7.9 KiB
TLS Front Profile Fidelity
Overview
This document describes how Telemt reuses captured TLS behavior in the FakeTLS server flight and how to validate the result on a real deployment.
When TLS front emulation is enabled, Telemt can capture useful server-side TLS behavior from the selected origin and reuse that behavior in the emulated success path. The goal is not to reproduce the origin byte-for-byte, but to reduce stable synthetic traits and make the emitted server flight structurally closer to the captured profile.
Why this change exists
The project already captures useful server-side TLS behavior in the TLS front fetch path:
change_cipher_spec_countapp_data_record_sizesticket_record_sizes
Before this change, the emulator used only part of that information. This left a gap between captured origin behavior and emitted FakeTLS server flight.
What is implemented
- The emulator now replays the observed
ChangeCipherSpeccount from the fetched behavior profile. - The emulator now replays observed ticket-like tail ApplicationData record sizes when raw or merged TLS profile data is available.
- The emulator now preserves more of the profiled encrypted-flight structure instead of collapsing it into a smaller synthetic shape.
- The emulator still falls back to the previous synthetic behavior when the cached profile does not contain raw TLS behavior information.
- Operator-configured
tls_new_session_ticketsstill works as an additive fallback when the profile does not provide enough tail records.
Practical benefit
- Reduced distinguishability between profiled origin TLS behavior and emulated TLS behavior.
- Lower chance of stable server-flight fingerprints caused by fixed CCS count or synthetic-only tail record sizes.
- Better reuse of already captured TLS profile data without changing MTProto logic, KDF routing, or transport architecture.
Limitations
This mechanism does not aim to make Telemt byte-identical to the origin server.
It also does not change:
- MTProto business logic;
- KDF routing behavior;
- the overall transport architecture.
The practical goal is narrower:
- reuse more captured profile data;
- reduce fixed synthetic behavior in the server flight;
- preserve a valid FakeTLS success path while changing the emitted shape on the wire.
Validation targets
- Correct count of emulated
ChangeCipherSpecrecords. - Correct replay of observed ticket-tail record sizes.
- No regression in existing ALPN and payload-placement behavior.
How to validate the result
Recommended validation consists of two layers:
- focused unit and security tests for CCS-count replay and ticket-tail replay;
- real packet-capture comparison for a selected origin and a successful FakeTLS session.
When testing on the network, the expected result is:
- a valid FakeTLS and MTProto success path is preserved;
- the early encrypted server flight changes shape when richer profile data is available;
- the change is visible on the wire without changing MTProto logic or transport architecture.
This validation is intended to show better reuse of captured TLS profile data. It is not intended to prove byte-level equivalence with the real origin server.
How to test on a real deployment
The strongest practical validation is a side-by-side trace comparison between:
- a real TLS origin server used as
mask_host; - a Telemt FakeTLS success-path connection for the same SNI;
- optional captures from different Telemt builds or configurations.
The purpose of the comparison is to inspect the shape of the server flight:
- record order;
- count of
ChangeCipherSpecrecords; - count and grouping of early encrypted
ApplicationDatarecords; - lengths of tail or continuation
ApplicationDatarecords.
Recommended environment
Use a Linux host or Docker container for the cleanest reproduction.
Recommended setup:
- One Telemt instance.
- One real HTTPS origin as
mask_host. - One Telegram client configured with an
eeproxy link for the Telemt instance. tcpdumpor Wireshark available for capture analysis.
Step-by-step test procedure
1. Prepare the origin
- Choose a real HTTPS origin.
- Set both
censorship.tls_domainandcensorship.mask_hostto that hostname. - Confirm that a direct TLS request works:
openssl s_client -connect ORIGIN_IP:443 -servername YOUR_DOMAIN </dev/null
2. Configure Telemt
Use a configuration that enables:
censorship.mask = truecensorship.tls_emulation = truecensorship.mask_hostcensorship.mask_port
Recommended for cleaner testing:
- keep
censorship.tls_new_session_tickets = 0, so the result depends primarily on fetched profile data rather than operator-forced synthetic tail records; - keep
censorship.tls_fetch.strict_route = true, if cleaner provenance for captured profile data is important.
3. Refresh TLS profile data
- Start Telemt.
- Let it fetch TLS front profile data for the configured domain.
- If
tls_front_diris persisted, confirm that the TLS front cache is populated.
Persisted cache artifacts are useful, but they are not required if packet captures already demonstrate the runtime result.
4. Capture a direct-origin trace
From a separate client host, connect directly to the origin:
openssl s_client -connect ORIGIN_IP:443 -servername YOUR_DOMAIN </dev/null
Capture with:
sudo tcpdump -i any -w origin-direct.pcap host ORIGIN_IP and port 443
5. Capture a Telemt FakeTLS success-path trace
Now connect to Telemt with a real Telegram client through an ee proxy link that targets the Telemt instance.
openssl s_client is useful for direct-origin capture and fallback sanity checks, but it does not exercise the successful FakeTLS and MTProto path.
Capture with:
sudo tcpdump -i any -w telemt-emulated.pcap host TELEMT_IP and port 443
6. Decode TLS record structure
Use tshark to print record-level structure:
tshark -r origin-direct.pcap -Y "tls.record" -T fields \
-e frame.number \
-e ip.src \
-e ip.dst \
-e tls.record.content_type \
-e tls.record.length
tshark -r telemt-emulated.pcap -Y "tls.record" -T fields \
-e frame.number \
-e ip.src \
-e ip.dst \
-e tls.record.content_type \
-e tls.record.length
Focus on the server flight after ClientHello:
22= Handshake20= ChangeCipherSpec23= ApplicationData
7. Build a comparison table
A compact table like the following is usually enough:
| Path | CCS count | AppData count in first encrypted flight | Tail AppData lengths |
|---|---|---|---|
| Origin | N |
M |
[a, b, ...] |
| Telemt build A | ... |
... |
... |
| Telemt build B | ... |
... |
... |
The comparison should make it easy to see that:
- the FakeTLS success path remains valid;
- the early encrypted server flight changes when richer profile data is reused;
- the result is backed by packet evidence.
Example capture set
One practical example of this workflow uses:
origin-direct-nginx.pcaptelemt-ee-before-nginx.pcaptelemt-ee-after-nginx.pcap
Practical notes:
originwas captured as a direct TLS 1.2 connection tonginx.org;beforeandafterwere captured on the Telemt FakeTLS success path with a real Telegram client;- the first server-side FakeTLS response remains valid in both cases;
- the early encrypted server-flight segmentation differs between
beforeandafter, which is consistent with better reuse of captured profile data; - this kind of result shows a wire-visible effect without breaking the success path, but it does not claim full indistinguishability from the origin.
Stronger validation
For broader confidence, repeat the same comparison on:
- one CDN-backed origin;
- one regular nginx origin;
- one origin with a multi-record encrypted flight and visible ticket-like tails.
If the same directional improvement appears across all three, confidence in the result will be much higher than for a single-origin example.