add in-country-validated Akamai SNIs (IR)#70
Closed
myleshorton wants to merge 1 commit into
Closed
Conversation
Adds 14 SNIs to the akamai provider's masquerade pool. Source: Keith (Psiphon ops, 2026-05-24), based on aggregated client telemetry from Iran. These are SNIs that, when sent in the TLS ClientHello against an Akamai edge, currently pass the censor's DPI fingerprinting in IR. Akamai serves the same default cert (a248.e.akamai.net) regardless of incoming SNI, so these names are pure DPI cover — the inner Host header drives property routing as before. python.org pypi.org www.python.org www.pypi.org files.pythonhosted.org registry.npmjs.org google.com www.google.com go.microsoft.com snapp.ir varzesh3.com aparat.com bmi.ir digikala.com The Iranian domestic names (snapp.ir, varzesh3.com, aparat.com, bmi.ir, digikala.com) are particularly resilient cover — IR can't block these without breaking core domestic services. Consumed by radiance/fronted/scanner via SNIsForProvider(cfg, "akamai"), which feeds AkamaiCandidates (radiance#488) to mix named SNIs alongside the existing bare-SNI strategy. Entries use empty ipaddress because they are SNI-pool-only: the scanner pairs them with discovered Akamai IPs at probe time. CandidatesFromConfig (KnownSample > 0) is the only path that would use the ipaddress, and the default sampling has KnownSample = 0.
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
Author
|
Closing — landed on the correct repo at getlantern/domainfront. getlantern/fronted is deprecated; the kindling path uses domainfront for fronted config now. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds 14 in-country-validated SNIs to the Akamai provider's masquerade pool. Source: Keith (Psiphon ops, 2026-05-24), based on aggregated client telemetry from Iran.
Akamai serves the same default cert (
a248.e.akamai.net) regardless of incoming SNI, so these names are pure DPI cover — the inner Host header drives property routing as before. The Iranian domestic names (snapp.ir,varzesh3.com,aparat.com,bmi.ir,digikala.com) are particularly resilient cover — IR can't block these without breaking core domestic services.SNIs added
python.org,pypi.org,www.python.org,www.pypi.org,files.pythonhosted.org,registry.npmjs.orggoogle.com,www.google.com,go.microsoft.comsnapp.ir(ride-hailing),varzesh3.com(sports),aparat.com(video),bmi.ir(Bank Melli),digikala.com(e-commerce)Consumer
radiance#488 extends
AkamaiCandidatesto consumeSNIsForProvider(cfg, "akamai")and mix named SNIs alongside the existing bare-SNI strategy. Each Akamai IP gets:Why entries have empty
ipaddressSNIsForProvideronly consumes theDomainfield. The emptyipaddressreflects that these are SNI-pool-only entries; the scanner pairs them with Akamai IPs discovered at probe time. The other path that usesipaddress—CandidatesFromConfigviaKnownSample > 0— is off by default in radiance's pool config.Verification
Smoke test (radiance
./cmd/meek-client-smoke/) against the deployed meek server confirms named-SNI candidates round-trip end-to-end:🤖 Generated with Claude Code