Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 0.9% on proxy.golang.org
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. It does not support signed or encrypted requests. 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: 8 months ago
First release: over 4 years ago
Namespace: github.com/crewjam
Dependent packages: 263
Dependent repositories: 716
Stars: 793 on GitHub
Forks: 372 on GitHub
Docker dependents: 223
Docker downloads: 3,664,531,614
See more repository details: repos.ecosyste.ms
Funding links: https://github.com/sponsors/crewjam
Last synced: 3 days ago

Top 8.0% on proxy.golang.org
github.com/myrteametrics/myrtea-engine-api/v5 v5.4.6
50 versions - Latest release: 14 days ago - 6 stars on GitHub
Top 2.0% on proxy.golang.org
github.com/pachyderm/pachyderm/v2 v2.9.6
Data-Centric Pipelines and Data Versioning
583 versions - Latest release: 16 days ago - 2 dependent packages - 8 dependent repositories - 5,909 stars on GitHub
Top 8.6% on proxy.golang.org
github.com/vdbulcke/cert-monitor v1.5.0
A tool to discover and monitor X509 certificates
22 versions - Latest release: 21 days ago - 2 stars on GitHub
Top 6.7% on proxy.golang.org
github.com/tum-dev/gocast v1.4.19
TUMs lecture streaming service.
87 versions - Latest release: 21 days ago - 154 stars on GitHub
Top 6.7% on proxy.golang.org
github.com/TUM-Dev/gocast v1.4.19
TUMs lecture streaming service.
87 versions - Latest release: 21 days ago - 154 stars on GitHub
Top 7.0% on proxy.golang.org
github.com/TUM-dev/gocast v1.4.19
TUMs lecture streaming service.
87 versions - Latest release: 21 days ago - 158 stars on GitHub
Top 9.1% on proxy.golang.org
github.imxd.top/pachyderm/pachyderm v1.13.4
150 versions - Latest release: 22 days ago
Top 5.6% on proxy.golang.org
github.com/joschahenningsen/TUM-Live v1.4.18
TUMs lecture streaming service.
86 versions - Latest release: 28 days ago - 143 stars on GitHub
Top 9.2% on proxy.golang.org
github.com/cisco-open/go-lanai v0.14.0
go-lanai is a set of application frameworks and modules that make writing applications (especiall...
4 versions - Latest release: about 1 month ago - 0 stars on GitHub
Top 9.1% on proxy.golang.org
github.com/siderolabs/omni v0.34.0 💰
SaaS-simple deployment of Kubernetes - on your own hardware.
14 versions - Latest release: about 1 month ago - 240 stars on GitHub
Top 7.6% on proxy.golang.org
github.com/authcrunch/authcrunch v1.0.11
Authentication Portal based on Caddy Security
11 versions - Latest release: about 2 months ago - 29 stars on GitHub
Top 7.5% on proxy.golang.org
github.com/authp/authp v1.0.11
Authentication Portal based on Caddy Security
11 versions - Latest release: about 2 months ago - 6 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/jmpsec/osctrl v0.3.6
Fast and efficient osquery management
19 versions - Latest release: about 2 months ago - 268 stars on GitHub
Top 9.2% on proxy.golang.org
github.hscsec.cn/jmpsec/osctrl v0.3.6
19 versions - Latest release: about 2 months ago
github.com/andrewheberle/go-http-auth-server v1.3.7
12 versions - Latest release: about 2 months ago - 0 stars on GitHub
Top 8.4% on proxy.golang.org
k0s.io/pkg/simple v0.1.15
Kubernot is not Kubernetes
29 versions - Latest release: 3 months ago - 5 dependent packages - 2 dependent repositories - 2 stars on GitHub
Top 7.7% on proxy.golang.org
k0s.io v0.1.15
Kubernot is not Kubernetes
34 versions - Latest release: 3 months ago - 20 dependent packages - 6 dependent repositories - 2 stars on GitHub
github.com/zackarywelch/saml/samlidp v1.0.4
SAML library for go
4 versions - Latest release: 3 months ago - 0 stars on GitHub
Top 9.2% on proxy.golang.org
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: 3 months ago
Top 2.8% on proxy.golang.org
github.com/Checkmarx/kics v1.7.13
Find security vulnerabilities, compliance issues, and infrastructure misconfigurations early in t...
111 versions - Latest release: 3 months ago - 1 dependent package - 1 dependent repositories - 1,454 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/checkmarx/kics v1.7.13
Find security vulnerabilities, compliance issues, and infrastructure misconfigurations early in t...
111 versions - Latest release: 3 months ago - 1,454 stars on GitHub
Top 2.8% on proxy.golang.org
github.com/paralus/paralus v0.2.7
All-in-one Kubernetes access manager. User-level credentials, RBAC, SSO, audit logs.
18 versions - Latest release: 3 months ago - 4 dependent packages - 4 dependent repositories - 699 stars on GitHub
Top 6.1% on proxy.golang.org
github.com/libregraph/lico v0.61.2
Package lico is a Go implementation of an OpenID Connect server with flexibale authorization and ...
100 versions - Latest release: 3 months ago - 2 dependent packages - 6 dependent repositories - 14 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/derekmckinnon/test-saml-idp v0.1.2
A simple and configurable SAML IdP for testing and development scenarios
18 versions - Latest release: 3 months ago - 3 stars on GitHub
Top 5.4% on proxy.golang.org
github.com/gravitational/teleport-plugins v1.2.4
Set of plugins for Teleport
64 versions - Latest release: 4 months ago - 1 dependent repositories - 64 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/influenzanet/api-gateway v1.5.0
Service implementation for the API entry point of the backend services
52 versions - Latest release: 4 months ago - 1 dependent package - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/lonelycode/tyk-auth-proxy v1.5.1
80 versions - Latest release: 4 months ago
Top 5.4% on proxy.golang.org
github.com/tyktechnologies/tyk-identity-broker v1.5.1
Tyk Authentication Proxy for third-party login
81 versions - Latest release: 4 months ago - 107 stars on GitHub
Top 5.4% on proxy.golang.org
github.com/Tyktechnologies/tyk-identity-broker v1.5.1
Tyk Authentication Proxy for third-party login
80 versions - Latest release: 4 months ago - 107 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/TykTechnologies/tyk-identity-broker v1.5.1
Tyk Authentication Proxy for third-party login
80 versions - Latest release: 4 months ago - 107 stars on GitHub
Top 9.3% on proxy.golang.org
github.com/andrewsonpradeep/caddy-security v1.0.47
🔐 Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. 💎 Implements F...
1 version - Latest release: 4 months ago - 0 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/imdevinc/go-links v0.0.15
15 versions - Latest release: 4 months ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/btwiuse/k0s v0.1.12
Kubernot is not Kubernetes
25 versions - Latest release: 4 months ago - 2 stars on GitHub
Top 8.6% on proxy.golang.org
github.com/btwiuse/conntroll v0.1.12
Kubernot is not Kubernetes
26 versions - Latest release: 4 months ago - 2 stars on GitHub
Top 9.2% on proxy.golang.org
github.skymusic.top/cble-platform/cble-backend v0.1.3
1 version - Latest release: 4 months ago
github.com/cble-platform/backend v0.1.3
5 versions - Latest release: 4 months ago - 0 stars on GitHub
github.com/cble-platform/cble-backend v0.1.3
16 versions - Latest release: 4 months ago - 1 dependent package - 1 dependent repositories - 2 stars on GitHub
Top 7.4% on proxy.golang.org
github.xiaoq7.com/cble-platform/cble-backend v0.1.3
1 version - Latest release: 4 months ago
Top 9.2% on proxy.golang.org
github.phpd.cn/cble-platform/cble-backend v0.1.3
1 version - Latest release: 4 months ago
Top 9.2% on proxy.golang.org
github.1git.de/cble-platform/cble-backend v0.1.3
1 version - Latest release: 4 months ago
Top 9.2% on proxy.golang.org
github.hscsec.cn/cble-platform/cble-backend v0.1.3
1 version - Latest release: 4 months ago
Top 9.5% on proxy.golang.org
github.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: 4 months ago - 0 stars on GitHub
Top 9.5% on proxy.golang.org
github.com/tyrantlink/go-authcrunch v1.0.47
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...
1 version - Latest release: 4 months ago - 0 stars on GitHub
Top 2.9% on proxy.golang.org
github.com/cortezaproject/corteza/server v0.0.0-20240125115439-f6d3702d330b
Low-code platform
336 versions - Latest release: 4 months ago - 1 dependent package - 1 dependent repositories - 805 stars on GitHub
Top 1.1% on proxy.golang.org
github.com/gravitational/teleport/api v0.0.0-20240125003558-bbf962efe2c2
Code generated by "make version". DO NOT EDIT.
2,986 versions - Latest release: 4 months ago - 11 dependent packages - 40 dependent repositories - 15,114 stars on GitHub
Top 8.4% on proxy.golang.org
k0s.io/pkg/hub v0.1.10
Kubernot is not Kubernetes
27 versions - Latest release: 4 months ago - 6 dependent packages - 2 dependent repositories - 2 stars on GitHub
github.com/DoodleScheduling/saml-exporter v0.2.2
SAML Metadata exporter for prometheus
11 versions - Latest release: 4 months ago - 0 stars on GitHub
github.com/doodlescheduling/saml-exporter v0.2.2
SAML Metadata exporter for prometheus
11 versions - Latest release: 4 months ago - 0 stars on GitHub
Top 1.9% on proxy.golang.org
github.com/okta/terraform-provider-okta v0.0.0-20240122192257-0c04e25afc45
Package main terraform initial entrypoint & redirect to the okta package
143 versions - Latest release: 4 months ago - 11 dependent packages - 40 dependent repositories - 184 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Opsly/terraformer v1.12.0
CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastruc...
23 versions - Latest release: 4 months ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/opsly/terraformer v1.12.0
CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastruc...
23 versions - Latest release: 4 months ago - 0 stars on GitHub
Top 9.9% on proxy.golang.org
github.com/famarks/grafarg v0.0.0-20240118154311-f9049aa366ff
11 versions - Latest release: 4 months ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/gokitcloud/ginkit v0.10.0
7 versions - Latest release: 5 months ago - 2 dependent packages - 4 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/joschahenningsen/tum-live v1.4.17
TUMs lecture streaming service.
85 versions - Latest release: 5 months ago - 139 stars on GitHub
Top 10.0% on proxy.golang.org
github.com/tekker-dev/caddy-security v1.99.0
🔐 Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. 💎 Implements F...
2 versions - Latest release: 5 months ago - 0 stars on GitHub
Top 10.0% on proxy.golang.org
github.com/tekker-dev/go-authcrunch v1.99.0
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...
2 versions - Latest release: 5 months ago - 0 stars on GitHub
Top 2.5% on proxy.golang.org
github.com/greenpau/caddy-security v1.1.23 💰
🔐 Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. 💎 Implements F...
42 versions - Latest release: 5 months ago - 5 dependent packages - 3 dependent repositories - 759 stars on GitHub
Top 7.0% on proxy.golang.org
github.com/greenpau/aaasf v1.0.47
46 versions - Latest release: 5 months ago - 1 dependent package
Top 3.3% on proxy.golang.org
github.com/greenpau/go-authcrunch v1.0.47 💰
AuthCrunch provides Authentication, Authorization, and Accounting (AAA) Security Functions (SF) i...
42 versions - Latest release: 5 months ago - 19 dependent packages - 8 dependent repositories - 25 stars on GitHub
Top 10.0% on proxy.golang.org
github.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: 5 months ago - 0 stars on GitHub
Top 10.0% on proxy.golang.org
github.com/matthias-stone/caddy-security v0.0.0-20240104024333-5b9fc8f75328
Fork for testing dependency
2 versions - Latest release: 5 months ago - 0 stars on GitHub
Top 10.0% on proxy.golang.org
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: 5 months ago - 0 stars on GitHub
github.com/RushikeshMarkad16/saml_test v0.0.0-20231229090707-f54553c43e7c
1 version - Latest release: 5 months ago - 0 stars on GitHub
Top 7.1% on proxy.golang.org
github.com/hashicorp/cap/saml v0.0.0-20231222024454-1d58e0e8bd5f
A collection of authentication Go packages related to OIDC, JWKs, Distributed Claims, LDAP
11 versions - Latest release: 5 months ago - 368 stars on GitHub
Top 8.6% on proxy.golang.org
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: 6 months ago - 1 dependent package - 1 dependent repositories - 5 stars on GitHub
Top 9.6% on proxy.golang.org
github.com/verder-helpen/auth-digid v0.0.0-20231212144434-326c0c129f9c
DigiD authentication plugin for Verder Helpen Platform
1 version - Latest release: 6 months ago - 1 stars on GitHub
Top 5.0% on proxy.golang.org
github.com/in4it/ecs-deploy v0.0.39
ecs-deploy is a continuous deployment platform for AWS ECS. It automates deploys based a simple j...
3 versions - Latest release: 6 months ago - 1 dependent repositories - 255 stars on GitHub
Top 6.0% on proxy.golang.org
github.com/itzg/saml-auth-proxy v0.0.0-20231207154724-6d1c7b264ac2 💰
Provides a SAML SP authentication proxy for backend web services
17 versions - Latest release: 6 months ago - 40 stars on GitHub
github.com/ZackaryWelch/saml/samlidp v1.0.3
Package samlidp a rudimentary SAML identity provider suitable for testing or as a starting point ...
3 versions - Latest release: 6 months ago - 2 dependent packages - 0 stars on GitHub
Top 3.5% on proxy.golang.org
www.velocidex.com/golang/velociraptor v0.7.1
Digging Deeper....
66 versions - Latest release: 6 months ago - 3 dependent repositories - 1,747 stars on GitHub
Top 4.6% on proxy.golang.org
github.com/Velocidex/velociraptor v0.7.1
Digging Deeper....
66 versions - Latest release: 6 months ago - 1,747 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/velocidex/velociraptor v0.7.1
Digging Deeper....
66 versions - Latest release: 6 months ago - 1,747 stars on GitHub
Top 7.8% on proxy.golang.org
gitlab.com/velocidex/velociraptor v0.7.1
Velociraptor is a tool for collecting host based state information using Velocidex Query Language...
66 versions - Latest release: 6 months ago - 7 stars on GitLab.com
Top 5.9% on proxy.golang.org
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: 7 months ago - 42 stars on GitHub
github.com/malinyamato/gotrue2 v0.0.3
A JWT based API for managing users and issuing JWT tokens
3 versions - Latest release: 7 months ago - 0 stars on GitHub
github.com/MalinYamato/gotrue2 v0.0.3
A JWT based API for managing users and issuing JWT tokens
3 versions - Latest release: 7 months 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: 7 months ago - 0 stars on GitHub
Top 9.8% on proxy.golang.org
github.com/poettig/go-authcrunch v0.0.0-20231023141013-8b121b27bd53
1 version - Latest release: 7 months ago
github.com/galleybytes/terraform-operator-api v0.0.0-20231006120933-5514e19a09d9
10 versions - Latest release: 8 months ago - 1 dependent repositories - 0 stars on GitHub
github.com/blcvn/lib-golang-test v0.0.0-20231002100002-6db30fba222f
1 version - Latest release: 8 months ago - 1 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: 8 months 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: 8 months ago - 6 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/mdeous/plasmid v1.0.1
Basic SAML identity provider
4 versions - Latest release: 9 months ago - 1 stars on GitHub
Top 6.4% on proxy.golang.org
github.com/suse/linux-security-sensor v0.7.0
Linux security sensor
65 versions - Latest release: 9 months ago - 17 stars on GitHub
Top 6.4% on proxy.golang.org
github.com/SUSE/linux-security-sensor v0.7.0
Linux security sensor
65 versions - Latest release: 9 months ago - 17 stars on GitHub
Top 8.2% on proxy.golang.org
git.autistici.org/id/sso-server v0.0.0-20230819134408-8201636975b9
3 versions - Latest release: 9 months ago
github.com/ldpliu/grafana v0.0.0-20230818092851-fb7f86ca86f0
The open and composable observability and data visualization platform. Visualize metrics, logs, a...
1 version - Latest release: 10 months 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: 10 months 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...
6 versions - Latest release: 10 months 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: 10 months 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: 10 months ago - 1 dependent package - 0 stars on GitHub
Top 2.9% on proxy.golang.org
github.com/palantir/go-baseapp v0.5.2
A lightweight starting point for Go web servers
14 versions - Latest release: 10 months ago - 27 dependent packages - 63 dependent repositories - 63 stars on GitHub
github.com/ipfs-scrape/api v1.1.0
API service
2 versions - Latest release: 10 months 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: 10 months 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: 11 months 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: 11 months ago - 0 stars on GitHub
github.com/fore-stun/spanx v0.0.0-20230707004223-cf5f5418d695
1 version - Latest release: 11 months ago - 0 stars on GitHub
github.com/salasberryfin/rancher v0.0.9-csalas
Complete container management platform
10 versions - Latest release: 12 months ago - 1 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/tekenradar/researcher-backend v1.2.0
Backend code for researcher data plattform
6 versions - Latest release: about 1 year ago - 0 stars on GitHub
Top 8.6% on proxy.golang.org
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: about 1 year ago - 0 stars on GitHub