From 8a8f3b14a5160b192c12fca94e7e93436ec8b4d0 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Fri, 14 Oct 2022 16:54:04 +0200 Subject: [PATCH] chore: house cleaning of the caos name and update sec --- README.md | 2 +- SECURITY.md | 7 ++++--- example/client/api/api.go | 2 +- pkg/op/config.go | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4d32cc3..5b43864 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Versions that also build are marked with :warning:. ## Why another library -As of 2020 there are not a lot of `OIDC` library's in `Go` which can handle server and client implementations. CAOS is strongly committed to the general field of IAM (Identity and Access Management) and as such, we need solid frameworks to implement services. +As of 2020 there are not a lot of `OIDC` library's in `Go` which can handle server and client implementations. ZITADEL is strongly committed to the general field of IAM (Identity and Access Management) and as such, we need solid frameworks to implement services. ### Goals diff --git a/SECURITY.md b/SECURITY.md index dca11f3..90e770e 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,6 +1,6 @@ # Security Policy -At CAOS we are extremely grateful for security aware people that disclose vulnerabilities to us and the open source community. All reports will be investigated by our team. +At ZITADEL we are extremely grateful for security aware people that disclose vulnerabilities to us and the open source community. All reports will be investigated by our team. ## Supported Versions @@ -8,12 +8,13 @@ After the initial Release the following version support will apply | Version | Supported | | ------- | ------------------ | -| 1.x.x | :white_check_mark: (not yet available) | | 0.x.x | :x: | +| 1.x.x | :white_check_mark: | +| 2.x.x | :white_check_mark: (not released) | ## Reporting a vulnerability -To file a incident, please disclose by email to security@caos.ch with the security details. +To file a incident, please disclose by email to security@zitadel.com with the security details. At the moment GPG encryption is no yet supported, however you may sign your message at will. diff --git a/example/client/api/api.go b/example/client/api/api.go index 2220554..0ab669d 100644 --- a/example/client/api/api.go +++ b/example/client/api/api.go @@ -62,7 +62,7 @@ func main() { // protected url which needs an active token and checks if the response of the introspect endpoint // contains a requested claim with the required (string) value - // e.g. /protected/username/livio@caos.ch + // e.g. /protected/username/livio@zitadel.example router.HandleFunc(protectedClaimURL, func(w http.ResponseWriter, r *http.Request) { ok, token := checkToken(w, r) if !ok { diff --git a/pkg/op/config.go b/pkg/op/config.go index 8882964..b1ea135 100644 --- a/pkg/op/config.go +++ b/pkg/op/config.go @@ -8,7 +8,7 @@ import ( "golang.org/x/text/language" ) -const OidcDevMode = "CAOS_OIDC_DEV" +const OidcDevMode = "ZITADEL_OIDC_DEV" type Configuration interface { Issuer() string