Top 0.3% dependent packages on proxy.golang.org
Top 0.3% dependent repos on proxy.golang.org
Top 1.5% forks on proxy.golang.org
Top 0.1% docker downloads on proxy.golang.org
proxy.golang.org : github.com/crewjam/saml
Package saml contains a partial implementation of the SAML standard in golang. SAML is a standard for identity federation, i.e. either allowing a third party to authenticate your users or allowing third parties to rely on us to authenticate their users. In SAML parlance an Identity Provider (IDP) is a service that knows how to authenticate users. A Service Provider (SP) is a service that delegates authentication to an IDP. If you are building a service where users log in with someone else's credentials, then you are a Service Provider. This package supports implementing both service providers and identity providers. The core package contains the implementation of SAML. The package samlsp provides helper middleware suitable for use in Service Provider applications. The package samlidp provides a rudimentary IDP service that is useful for testing or as a starting point for other integrations. Version 0.4.0 introduces a few breaking changes to the _samlsp_ package in order to make the package more extensible, and to clean up the interfaces a bit. The default behavior remains the same, but you can now provide interface implementations of _RequestTracker_ (which tracks pending requests), _Session_ (which handles maintaining a session) and _OnError_ which handles reporting errors. Public fields of _samlsp.Middleware_ have changed, so some usages may require adjustment. See [issue 231](https://github.com/crewjam/saml/issues/231) for details. The option to provide an IDP metadata URL has been deprecated. Instead, we recommend that you use the `FetchMetadata()` function, or fetch the metadata yourself and use the new `ParseMetadata()` function, and pass the metadata in _samlsp.Options.IDPMetadata_. Similarly, the _HTTPClient_ field is now deprecated because it was only used for fetching metdata, which is no longer directly implemented. The fields that manage how cookies are set are deprecated as well. To customize how cookies are managed, provide custom implementation of _RequestTracker_ and/or _Session_, perhaps by extending the default implementations. The deprecated fields have not been removed from the Options structure, but will be in future. In particular we have deprecated the following fields in _samlsp.Options_: - `Logger` - This was used to emit errors while validating, which is an anti-pattern. - `IDPMetadataURL` - Instead use `FetchMetadata()` - `HTTPClient` - Instead pass httpClient to FetchMetadata - `CookieMaxAge` - Instead assign a custom CookieRequestTracker or CookieSessionProvider - `CookieName` - Instead assign a custom CookieRequestTracker or CookieSessionProvider - `CookieDomain` - Instead assign a custom CookieRequestTracker or CookieSessionProvider - `CookieDomain` - Instead assign a custom CookieRequestTracker or CookieSessionProvider Let us assume we have a simple web application to protect. We'll modify this application so it uses SAML to authenticate users. ```golang package main import ( ) ``` Each service provider must have an self-signed X.509 key pair established. You can generate your own with something like this: We will use `samlsp.Middleware` to wrap the endpoint we want to protect. Middleware provides both an `http.Handler` to serve the SAML specific URLs and a set of wrappers to require the user to be logged in. We also provide the URL where the service provider can fetch the metadata from the IDP at startup. In our case, we'll use [samltest.id](https://samltest.id/), an identity provider designed for testing. ```golang package main import ( ) ``` Next we'll have to register our service provider with the identity provider to establish trust from the service provider to the IDP. For [samltest.id](https://samltest.id/), you can do something like: Navigate to https://samltest.id/upload.php and upload the file you fetched. Now you should be able to authenticate. The flow should look like this: 1. You browse to `localhost:8000/hello` 1. The middleware redirects you to `https://samltest.id/idp/profile/SAML2/Redirect/SSO` 1. samltest.id prompts you for a username and password. 1. samltest.id returns you an HTML document which contains an HTML form setup to POST to `localhost:8000/saml/acs`. The form is automatically submitted if you have javascript enabled. 1. The local service validates the response, issues a session cookie, and redirects you to the original URL, `localhost:8000/hello`. 1. This time when `localhost:8000/hello` is requested there is a valid session and so the main content is served. Please see `example/idp/` for a substantially complete example of how to use the library and helpers to be an identity provider. The SAML standard is huge and complex with many dark corners and strange, unused features. This package implements the most commonly used subset of these features required to provide a single sign on experience. The package supports at least the subset of SAML known as [interoperable SAML](http://saml2int.org). This package supports the Web SSO profile. Message flows from the service provider to the IDP are supported using the HTTP Redirect binding and the HTTP POST binding. Message flows from the IDP to the service provider are supported via the HTTP POST binding. The package can produce signed SAML assertions, and can validate both signed and encrypted SAML assertions. The _RelayState_ parameter allows you to pass user state information across the authentication flow. The most common use for this is to allow a user to request a deep link into your site, be redirected through the SAML login flow, and upon successful completion, be directed to the originally requested link, rather than the root. Unfortunately, _RelayState_ is less useful than it could be. Firstly, it is not authenticated, so anything you supply must be signed to avoid XSS or CSRF. Secondly, it is limited to 80 bytes in length, which precludes signing. (See section 3.6.3.1 of SAMLProfiles.) The SAML specification is a collection of PDFs (sadly): - [SAMLCore](http://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf) defines data types. - [SAMLBindings](http://docs.oasis-open.org/security/saml/v2.0/saml-bindings-2.0-os.pdf) defines the details of the HTTP requests in play. - [SAMLProfiles](http://docs.oasis-open.org/security/saml/v2.0/saml-profiles-2.0-os.pdf) describes data flows. - [SAMLConformance](http://docs.oasis-open.org/security/saml/v2.0/saml-conformance-2.0-os.pdf) includes a support matrix for various parts of the protocol. [SAMLtest](https://samltest.id/) is a testing ground for SAML service and identity providers. Please do not report security issues in the issue tracker. Rather, please contact me directly at [email protected] ([PGP Key `78B6038B3B9DFB88`](https://keybase.io/crewjam)).
Registry
-
Source
- Documentation
- JSON
purl: pkg:golang/github.com/crewjam/saml
License: BSD-2-Clause
Latest release: 22 days ago
First release: over 5 years ago
Namespace: github.com/crewjam
Dependent packages: 263
Dependent repositories: 716
Stars: 1,005 on GitHub
Forks: 449 on GitHub
Docker dependents: 223
Docker downloads: 3,664,533,699
Total Commits: 337
Committers: 104
Average commits per author: 3.24
Development Distribution Score (DDS): 0.57
More commit stats: commits.ecosyste.ms
See more repository details: repos.ecosyste.ms
Funding links: https://github.com/sponsors/crewjam
Last synced: about 12 hours ago
github.com/paralus/paralus v0.2.8
All-in-one Kubernetes access manager. User-level credentials, RBAC, SSO, audit logs.19 versions - Latest release: 11 months ago - 4 dependent packages - 4 dependent repositories - 699 stars on GitHub
github.com/doodlescheduling/saml-exporter v0.3.0
SAML Metadata exporter for prometheus12 versions - Latest release: 12 months ago - 0 stars on GitHub
github.com/vdbulcke/cert-monitor v1.5.0
A tool to discover and monitor X509 certificates22 versions - Latest release: 12 months ago - 2 stars on GitHub
github.com/tekker-dev/caddy-security v1.99.4
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...51 versions - Latest release: about 1 year ago - 0 stars on GitHub
gitlab.ard.de/kabelliste/backend v0.2.1
Package Server kabelliste API This is the backend, which offers the cable database through a RES...4 versions - Latest release: about 1 year ago
github.com/derekmckinnon/test-saml-idp v0.1.2
A simple and configurable SAML IdP for testing and development scenarios18 versions - Latest release: about 1 year ago - 3 stars on GitHub
github.com/influenzanet/api-gateway v1.5.0
Service implementation for the API entry point of the backend services56 versions - Latest release: about 1 year ago - 1 dependent package - 0 stars on GitHub
github.com/imdevinc/go-links v0.0.15
15 versions - Latest release: over 1 year ago - 0 stars on GitHubgithub.phpd.cn/cble-platform/cble-backend v0.1.3
1 version - Latest release: over 1 year agogithub.1git.de/cble-platform/cble-backend v0.1.3
1 version - Latest release: over 1 year agogithub.hscsec.cn/cble-platform/cble-backend v0.1.3
1 version - Latest release: over 1 year agogithub.com/cble-platform/cble-backend v0.1.3
16 versions - Latest release: over 1 year ago - 1 dependent package - 1 dependent repositories - 2 stars on GitHubgithub.skymusic.top/cble-platform/cble-backend v0.1.3
1 version - Latest release: over 1 year agogithub.com/cble-platform/backend v0.1.3
5 versions - Latest release: over 1 year ago - 0 stars on GitHubgithub.xiaoq7.com/cble-platform/cble-backend v0.1.3
1 version - Latest release: over 1 year agogithub.com/tyrantlink/caddy-security v0.0.0-20240126041306-dfd34b611d02
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...2 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/tyrantlink/go-authcrunch v1.0.47
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...1 version - Latest release: over 1 year ago - 0 stars on GitHub
github.com/cortezaproject/corteza/server v0.0.0-20240125115439-f6d3702d330b
Low-code platform336 versions - Latest release: over 1 year ago - 1 dependent package - 1 dependent repositories - 805 stars on GitHub
github.com/okta/terraform-provider-okta v0.0.0-20240122192257-0c04e25afc45
Package main terraform initial entrypoint & redirect to the okta package143 versions - Latest release: over 1 year ago - 11 dependent packages - 40 dependent repositories - 184 stars on GitHub
github.com/Opsly/terraformer v1.12.0
CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastruc...23 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/opsly/terraformer v1.12.0
CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastruc...23 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/famarks/grafarg v0.0.0-20240118154311-f9049aa366ff
11 versions - Latest release: over 1 year ago - 0 stars on GitHubgithub.com/famarker/grafarg v0.0.0-20240104161148-900be4e9d525
Grafarg is an interactive data analytics and graphical data visualization application. Grafarg be...3 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/matthias-stone/caddy-security v0.0.0-20240104024333-5b9fc8f75328
Fork for testing dependency2 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/matthias-stone/go-authcrunch v0.0.0-20240104024032-4abe2e0f5cef
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...2 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/RushikeshMarkad16/saml_test v0.0.0-20231229090707-f54553c43e7c
1 version - Latest release: over 1 year ago - 0 stars on GitHubgithub.com/hashicorp/cap/saml v0.0.0-20231222024454-1d58e0e8bd5f
A collection of authentication Go packages related to OIDC, JWKs, Distributed Claims, LDAP11 versions - Latest release: over 1 year ago - 368 stars on GitHub
github.com/fieldkit/cloud/server v0.0.0-20231215020625-b9360c4dc879
cloud implementation for the fk platform. server and web architecture, etc...20 versions - Latest release: over 1 year ago - 1 dependent package - 1 dependent repositories - 5 stars on GitHub
github.com/verder-helpen/auth-digid v0.0.0-20231212144434-326c0c129f9c
DigiD authentication plugin for Verder Helpen Platform1 version - Latest release: over 1 year ago - 1 stars on GitHub
github.com/itzg/saml-auth-proxy v0.0.0-20231207154724-6d1c7b264ac2 π°
Provides a SAML SP authentication proxy for backend web services17 versions - Latest release: over 1 year ago - 40 stars on GitHub
github.com/allcloud-io/clisso v0.0.0-20231101090520-0d5420ebc833
* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a cop...21 versions - Latest release: over 1 year ago - 42 stars on GitHub
github.com/malinyamato/gotrue2 v0.0.3
A JWT based API for managing users and issuing JWT tokens3 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/MalinYamato/gotrue2 v0.0.3
A JWT based API for managing users and issuing JWT tokens3 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/poettig/caddy-security v0.0.0-20231023143803-6f629641785d
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...2 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/poettig/go-authcrunch v0.0.0-20231023141013-8b121b27bd53
1 version - Latest release: over 1 year agogithub.com/galleybytes/terraform-operator-api v0.0.0-20231006120933-5514e19a09d9
10 versions - Latest release: over 1 year ago - 1 dependent repositories - 0 stars on GitHubgithub.com/blcvn/lib-golang-test v0.0.0-20231002100002-6db30fba222f
1 version - Latest release: over 1 year ago - 1 stars on GitHubgithub.com/deepsourcecorp/runner v1.0.0-beta.5
DeepSource Runner delivers the power of DeepSource Cloud with the safety of your infrastructure.5 versions - Latest release: over 1 year ago - 6 stars on GitHub
github.com/DeepSourceCorp/runner v1.0.0-beta.5
DeepSource Runner delivers the power of DeepSource Cloud with the safety of your infrastructure.5 versions - Latest release: over 1 year ago - 6 stars on GitHub
github.com/suse/linux-security-sensor v0.7.0
Linux security sensor65 versions - Latest release: over 1 year ago - 17 stars on GitHub
github.com/SUSE/linux-security-sensor v0.7.0
Linux security sensor65 versions - Latest release: over 1 year ago - 17 stars on GitHub
git.autistici.org/id/sso-server v0.0.0-20230819134408-8201636975b9
3 versions - Latest release: over 1 year agogithub.com/Gianfranco753/caddy-security v1.2.1 π°
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...6 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/gianfranco753/caddy-security v1.2.1 π°
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...3 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/gianfranco753/go-authcrunch v1.1.0
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...5 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/Gianfranco753/go-authcrunch v1.1.0
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...4 versions - Latest release: over 1 year ago - 1 dependent package - 0 stars on GitHub
github.com/palantir/go-baseapp v0.5.2
A lightweight starting point for Go web servers14 versions - Latest release: over 1 year ago - 27 dependent packages - 63 dependent repositories - 63 stars on GitHub
github.com/ipfs-scrape/api v1.1.0
API service2 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/cigncloud/terraformer v0.9.0
CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastruc...1 version - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/dekkart/terraformer-hw v1.0.0
CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastruc...1 version - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/dekkart/terraformer-ct v0.0.0-20230707100236-ec2e68e4a120
CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastruc...2 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/fore-stun/spanx v0.0.0-20230707004223-cf5f5418d695
1 version - Latest release: almost 2 years ago - 0 stars on GitHubgithub.com/salasberryfin/rancher v0.0.9-csalas
Complete container management platform10 versions - Latest release: almost 2 years ago - 1 stars on GitHub
github.com/tekenradar/researcher-backend v1.2.0
Backend code for researcher data plattform6 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/invisionapp/saml v0.4.13-inv.2
Package saml contains a partial implementation of the SAML standard in golang. SAML is a standard...4 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/InVisionApp/saml v0.4.13-inv.2
Package saml contains a partial implementation of the SAML standard in golang. SAML is a standard...6 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/rhafer/lico v0.60.0
Package konnect is a Go implementation of an OpenID Connect server with flexibale authorization a...96 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/whalebone/go-saml-sso v0.0.0-20230509111222-22d8a0717dea
Simple SAML authentication service4 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/oskoi/caddy-security v0.0.0-20230507133958-b8edfe2ad6d4
1 version - Latest release: almost 2 years agogithub.com/oskoi/go-authcrunch v0.0.0-20230507132804-8699e9fad3e5
1 version - Latest release: almost 2 years ago - 1 dependent packagegithub.com/nicholasngai/gothsaml v0.1.0
1 version - Latest release: about 2 years agogithub.com/afritzler/awesaml v0.3.0
π‘οΈServing SSO enabled static web content via a SAML enabled Go backend18 versions - Latest release: about 2 years ago - 6 stars on GitHub
github.com/afritzler/samlr v0.3.0
18 versions - Latest release: about 2 years agogithub.com/afritzler/AweSAML v0.3.0
π‘οΈServing SSO enabled static web content via a SAML enabled Go backend18 versions - Latest release: about 2 years ago - 6 stars on GitHub
github.com/jothflee/vigor v1.3.0
4 versions - Latest release: about 2 years ago - 1 stars on GitHubgithub.com/codecomet-io/caddy-security v1.1.19
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...36 versions - Latest release: about 2 years ago - 0 stars on GitHub
github.com/nixm0nk3y/caddy-security v1.1.19
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...37 versions - Latest release: about 2 years ago - 0 stars on GitHub
github.com/NixM0nk3y/caddy-security v1.1.19
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...37 versions - Latest release: about 2 years ago - 0 stars on GitHub
github.com/awingu/caddy-security v1.1.19
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...36 versions - Latest release: about 2 years ago - 0 stars on GitHub
github.com/Awingu/caddy-security v1.1.19
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...36 versions - Latest release: about 2 years ago - 0 stars on GitHub
github.com/codecomet-io/go-authcrunch v1.0.40
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...35 versions - Latest release: about 2 years ago - 1 dependent repositories - 0 stars on GitHub
github.com/kiinami/caddy-security v0.0.0-20230324100619-7eb2ef7823f5
1 version - Latest release: about 2 years agogithub.com/pulumi/pulumi-okta/provider/v3 v3.0.0-20230321164853-112f5b1c1f25
An Okta Pulumi resource package, providing multi-language access to Okta16 versions - Latest release: about 2 years ago - 7 stars on GitHub
github.com/alexbathome/bazel-build-protobuf v0.0.0-20230310145932-6d9a82d8e4c1
a test repo to mess around with building the @com_google_protobuf dependency1 version - Latest release: about 2 years ago - 0 stars on GitHub
github.com/gucki/caddy-security v0.0.0-20230307203506-80c4e757616d
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...1 version - Latest release: about 2 years ago - 0 stars on GitHub
github.com/gucki/go-authcrunch v0.0.0-20230307203204-314a98280702
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...1 version - Latest release: about 2 years ago - 1 dependent package - 0 stars on GitHub
github.com/ibrahimker/golang-intermediate v0.0.0-20230304035937-7332ef218dcb
Personal Working Notepad on the Golang Intermediate Course4 versions - Latest release: about 2 years ago - 0 stars on GitHub
github.com/drio/caddy-saml-sso v0.0.7
Caddy module that provides SSO via SAML.11 versions - Latest release: about 2 years ago - 0 stars on GitHub
github.com/rgl/terraform-provider-saml v0.3.0
This caches a stable SAML document in the terraform state because the Azure AD SAML federation me...3 versions - Latest release: about 2 years ago - 0 stars on GitHub
github.com/CoPhi/cophi-auth-service v0.0.0-20230125093932-ee8309229f33
Authentication service for the CoPhi Editor2 versions - Latest release: over 2 years ago - 0 stars on GitHub
github.com/mattjm/caddy-security v0.0.0-20221231164836-3e2b94ac6629
1 version - Latest release: over 2 years agogithub.com/owncloud/ocis/v2 v2.0.0
:atom_symbol: ownCloud Infinite Scale Stack13 versions - Latest release: over 2 years ago - 6 dependent packages - 1 dependent repositories - 852 stars on GitHub
github.com/galgotech/grafana v0.0.0-20221121175056-80dd783f1b60
1 version - Latest release: over 2 years agogo.sebtobie.de/httpserver v0.5.7
Package httpserver provides developers with an HTTP-Server that route parts of the site on differ...12 versions - Latest release: over 2 years ago - 1 dependent package
github.com/hajimeo/samples/golang v0.0.0-20221109114254-c6b4a327a65c
To save and record sample scripts1 version - Latest release: over 2 years ago - 1 dependent repositories - 7 stars on GitHub
github.com/d-rk/mini-saml-idp v0.0.0-20221107072851-872d7a7ceefb
1 version - Latest release: over 2 years ago - 2 stars on GitHubgithub.com/rawis/raw-terraformer v0.0.0-20221105080639-53af832109e2
1 version - Latest release: over 2 years agogithub.com/aporia-ai/go-authcrunch v1.0.36-patched.4
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...4 versions - Latest release: over 2 years ago - 0 stars on GitHub
github.com/alirf81/go-authcrunch v1.0.362 π°
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...7 versions - Latest release: over 2 years ago - 1 stars on GitHub
github.com/alirf81/caddy-security v1.1.151
3 versions - Latest release: over 2 years agogithub.com/seriousben/dev-identity-provider v0.0.3
dev-identity-provider is a SAML2 and OIDC (OpenID Connect) Provider with SCIM2 support3 versions - Latest release: over 2 years ago - 0 stars on GitHub
gitlab.com/andrewheberle/go-zero-trust-rp v1.2.0
4 versions - Latest release: over 2 years ago - 0 stars on GitLab.comgithub.com/myrteametrics/myrtea-engine-api/v4 v4.2.1
18 versions - Latest release: almost 3 years ago - 6 stars on GitHubgithub.com/datamixio/lib-go-authcrunch v1.0.35 π°
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...1 version - Latest release: almost 3 years ago - 1 dependent package - 0 stars on GitHub
github.com/datamixio/lib-caddy-security v0.0.0-20220801080001-690e4a8a84cc π°
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...1 version - Latest release: almost 3 years ago - 0 stars on GitHub
github.com/tekkamanendless/saml-simulator v0.2.0
A SAML simulator to aid in the development and testing of applications that authenticate using SAML.3 versions - Latest release: almost 3 years ago - 1 stars on GitHub
github.com/nthsky/saml v0.4.10
Package saml contains a partial implementation of the SAML standard in golang. SAML is a standard...13 versions - Latest release: almost 3 years ago - 0 stars on GitHub
github.com/kennethklee/saml-auth-proxy v1.6.3-alpha.3 π°
Provides a SAML SP authentication proxy for backend web services6 versions - Latest release: almost 3 years ago - 0 stars on GitHub
github.com/mikaelmello/caddy-security v1.1.13 π°
π Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. π Implements F...30 versions - Latest release: almost 3 years ago - 0 stars on GitHub
github.com/cogolabs/beyond v1.8.10
BeyondCorp-inspired HTTPS/SSO Access Proxy. Secure internal services outside your VPN/perimeter n...21 versions - Latest release: almost 3 years ago - 226 stars on GitHub
Check this option to include packages that no longer depend on this package in their latest version but previously did.