chore: house cleaning of the caos name and update sec

This commit is contained in:
Florian Forster 2022-10-14 16:54:04 +02:00
parent 01021e71a0
commit 8a8f3b14a5
No known key found for this signature in database
4 changed files with 7 additions and 6 deletions

View file

@ -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

View file

@ -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.

View file

@ -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 {

View file

@ -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