Replies: 1 comment 3 replies
-
I haven't tested this, but I think you can actually override the allowed list of hostnames/IPs using these hidden settings in your connector: spec:
...
client_redirect_settings:
allowed_https_hostnames:
- "*.localhost"
insecure_allowed_cidr_ranges:
- "127.0.0.1/8" Docs: https://goteleport.com/docs/admin-guides/access-controls/sso/sso/#changing-callback-address |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Since #41833,
localhost
,127.0.0.1
, and::1
are the onlyhttp:
scheme hostnames allowed for client redirect URLs. Please consider allowing more:*.localhost
domains, which can't be registered in the Internet DNS.I use IP addresses other than
127.0.0.1
in the127/8
block and add*.localhost
entries to/etc/hosts
to easily manage many local addresses.I believe there is no security concern to consider since these hostnames are as safe as
127.0.0.1
andlocalhost
.Beta Was this translation helpful? Give feedback.
All reactions