Blog

Wildcard subdomains and CORS: when reflection is safe versus dangerous

Reflecting arbitrary subdomains of your root domain can accidentally include attacker-controlled tenants.

1 min read
corssubdomainssecurity

Tenant isolation

Multi-tenant apps should map browser origins to tenant IDs using a server-side registry, not string contains checks alone.

Phishing sites on look-alike domains remain a risk—pair CORS with CSP and cookie policies.

Testing matrices

Automate tests for apex, www, and app subdomains with both HTTP and HTTPS schemes where applicable.

Include port differences in local development to catch accidental mismatches early.

Back to blog