add in-country-validated Akamai SNIs (IR)#7
Closed
myleshorton wants to merge 1 commit into
Closed
Conversation
Adds 14 SNIs to the akamai provider's masquerade pool as SNI-only entries. Source: Keith (Psiphon ops, 2026-05-24), from aggregated Iranian client telemetry showing which outer-SNI values currently pass IR DPI when sent in the TLS ClientHello to an Akamai edge. Akamai serves the same default cert (a248.e.akamai.net) regardless of incoming SNI, so these 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 Iranian domestic names are particularly resilient cover — IR can't block them 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 bare-SNI strategy. Entries have empty ipaddress because they are SNI-pool-only; the scanner pairs them with discovered Akamai IPs at probe time, and CandidatesFromConfig (the only path that consumes ipaddress) is gated by KnownSample > 0, which is off by default.
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 — wrong section. The generator regenerates the masquerades list daily from a fresh CDN-IP scan in lantern-cloud/cmd/update_masquerades, so manual masquerade-list additions get wiped. The durable home for SNI cover is provider_map.yaml's akamai.frontingsnis.default.arbitrarysnis. Re-opening over there. |
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 are particularly resilient — IR can't block them 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 1 bare-SNI candidate + up to 3 named-SNI candidates drawn at random from the pool.Why entries have empty
ipaddressSNIsForProvideronly consumes theDomainfield, so these are SNI-pool-only entries. The scanner pairs them with Akamai IPs discovered at probe time.CandidatesFromConfigis the only path that would use theipaddress, and it's gated byKnownSample > 0(off by default in radiance's pool config).Verification
Smoke test (radiance
./cmd/meek-client-smoke/) confirms named-SNI candidates round-trip end-to-end against the deployed meek server:🤖 Generated with Claude Code