All Projects → pac4j → jax-rs-pac4j

pac4j / jax-rs-pac4j

Licence: Apache-2.0 license
Security library for JAX-RS and Jersey

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to jax-rs-pac4j

undertow-pac4j
Security library for Undertow: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 35 (-27.08%)
Mutual labels:  ldap, oauth, saml, login, authorization, cas, logout, openid-connect, social-login
Spring Security Pac4j
pac4j security library for Spring Security: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 231 (+381.25%)
Mutual labels:  ldap, oauth, saml, login, authorization, cas, openid-connect, social-login
Buji Pac4j
pac4j security library for Shiro: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 444 (+825%)
Mutual labels:  ldap, oauth, saml, login, authorization, cas, openid-connect, social-login
Play Pac4j
Security library for Play framework 2 in Java and Scala: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 375 (+681.25%)
Mutual labels:  ldap, oauth, saml, login, authorization, cas, openid-connect, social-login
Spring Webmvc Pac4j
Security library for Spring Web MVC: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 110 (+129.17%)
Mutual labels:  ldap, oauth, saml, login, authorization, cas, openid-connect, social-login
Spark Pac4j
Security library for Sparkjava: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 154 (+220.83%)
Mutual labels:  ldap, oauth, saml, login, authorization, cas, openid-connect, social-login
Pac4j
Security engine for Java (authentication, authorization, multi frameworks): OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 2,097 (+4268.75%)
Mutual labels:  ldap, oauth, saml, jax-rs, authorization, cas, openid-connect
Authing
🔥Authing - IDaaS/IAM solution that can Auth to web and mobile applications.
Stars: ✭ 247 (+414.58%)
Mutual labels:  ldap, oauth, saml, login, openid-connect
OpenAM
OpenAM is an open access management solution that includes Authentication, SSO, Authorization, Federation, Entitlements and Web Services Security.
Stars: ✭ 476 (+891.67%)
Mutual labels:  ldap, oauth, saml, authorization
Socialite
Socialite is an OAuth2 Authentication tool. It is inspired by laravel/socialite, you can easily use it without Laravel.
Stars: ✭ 1,026 (+2037.5%)
Mutual labels:  oauth, login, social-login
Maxkey
MaxKey is Single Sign On(SSO) System,Leading-Edge Enterprise-Class open source IAM(Identity and Access management) product.
Stars: ✭ 274 (+470.83%)
Mutual labels:  oauth, saml, cas
Caddy Auth Portal
Authentication Plugin for Caddy v2 implementing Form-Based, Basic, Local, LDAP, OpenID Connect, OAuth 2.0 (Github, Google, Facebook, Okta, etc.), SAML Authentication
Stars: ✭ 291 (+506.25%)
Mutual labels:  ldap, saml, openid-connect
Fosite
Extensible security first OAuth 2.0 and OpenID Connect SDK for Go.
Stars: ✭ 1,738 (+3520.83%)
Mutual labels:  oauth, authorization, openid-connect
Hydra
OpenID Certified™ OpenID Connect and OAuth Provider written in Go - cloud native, security-first, open source API security for your infrastructure. SDKs for any language. Compatible with MITREid.
Stars: ✭ 11,884 (+24658.33%)
Mutual labels:  oauth, authorization, openid-connect
docker-lemonldap
Docker LemonLDAP-NG Image w/S6 overlay, Zabbix Monitoring based on Debian or Alpine
Stars: ✭ 20 (-58.33%)
Mutual labels:  ldap, saml, cas
caddy-security
🔐 Authentication, Authorization, and Accounting (AAA) App and Plugin for Caddy v2. 💎 Implements Form-Based, Basic, Local, LDAP, OpenID Connect, OAuth 2.0 (Github, Google, Facebook, Okta, etc.), SAML Authentication. MFA/2FA with App Authenticators and Yubico. 💎 Authorization with JWT/PASETO tokens. 🔐
Stars: ✭ 696 (+1350%)
Mutual labels:  ldap, saml, authorization
Passport
Simple, unobtrusive authentication for Node.js.
Stars: ✭ 19,608 (+40750%)
Mutual labels:  oauth, saml, openid-connect
lemonldap-ng
LemonLDAP::NG main code
Stars: ✭ 49 (+2.08%)
Mutual labels:  saml, cas, openid-connect
oauth2-wechat
微信登录认证授权 Wechat login authorization. This package provides Wechat OAuth 2.0 support for the PHP League's OAuth 2.0 Client
Stars: ✭ 18 (-62.5%)
Mutual labels:  oauth, login, authorization
Oauthlib
A generic, spec-compliant, thorough implementation of the OAuth request-signing logic
Stars: ✭ 2,323 (+4739.58%)
Mutual labels:  oauth, authorization, openid-connect

The jax-rs-pac4j project is an easy and powerful security library for JAX-RS web applications and web services which supports authentication and authorization, but also logout and advanced features like session fixation and CSRF protection. It's based on Java 11, servlet 4 (when present), JAX-RS 2 and on the pac4j security engine v5. It's available under the Apache 2 license.

Main concepts and components:

  1. A client represents an authentication mechanism. It performs the login process and returns a user profile. An indirect client is for UI authentication while a direct client is for web services authentication:

▸ OAuth - SAML - CAS - OpenID Connect - HTTP - OpenID - Google App Engine - LDAP - SQL - JWT - MongoDB - Stormpath - IP address

  1. An authorizer is meant to check authorizations on the authenticated user profile(s) or on the current web context:

▸ Roles / permissions - Anonymous / remember-me / (fully) authenticated - Profile type, attribute - CORS - CSRF - Security headers - IP address, HTTP method

  1. A matcher defines whether the SecurityFilter must be applied and can be used for additional web processing

  2. Filters protect resources and map some of them to login processes.

  • The SecurityFilter protects a resource by checking that the user is authenticated and that the authorizations are valid, according to the clients and authorizers configuration. If the user is not authenticated, it performs authentication for direct clients or starts the login process for indirect clients
  • The CallbackFilter finishes the login process for an indirect client
  • The LogoutFilter logs out the user from the application.

These filters can be directly registered by hand, or instead, the following features can be used.

  1. Generic JAX-RS Providers and Features activate the use of some of the filters on the JAX-RS implementation based on various conditions
  • The Pac4JFeature enables generic JAX-RS based pac4j functionality. The default configuration does not provide session handling (i.e., it will only work with direct clients). The feature registers the following default providers:

    • JaxRsContextFactoryProvider to create the generic pac4j context for JAX-RS
    • JaxRsConfigProvider to provide the pac4j configuration
    • JaxRsSessionStoreProvider to provide the configured pac4j SessionStore
  • The Pac4JSecurityFeature enables annotation-based activation of the filters at the resource method level

  • The Pac4JSecurityFilterFeature activates a global filter that will be applied to every resources.

  1. Container/Implementation-specific Providers and Features extend the basic functionality provided by the generic ones
  • The Pac4JValueFactoryProvider enables injection of the security profile in resource method

  • The Pac4JServletFeature provides session handling (and thus indirect clients support) by replacing the generic JaxRsContextFactoryProvider with ServletJaxRsContextFactoryProvider (for Servlet-based JAX-RS implementations, e.g., Jersey on Netty or Grizzly Servlet, Resteasy on Undertow) and JaxRsSessionStoreProvider with ServletSessionStoreProvider.

  • The Pac4JGrizzlyFeature provides session handling (and thus indirect clients support) by replacing the generic JaxRsContextFactoryProvider with GrizzlyJaxRsContextFactoryProvider (for Grizzly2 without Servlet support) and JaxRsSessionStoreProvider with GrizzlySessionStoreProvider.

Usage

1) Add the required dependencies

2) Define:

- the security configuration

- the callback configuration, only for web applications

- the logout configuration

3) Apply security

4) Get the authenticated user profiles

Versions

The latest released version is the Maven Central, available in the Maven central repository. The next version is under development.

See the release notes. Learn more by browsing the pac4j documentation and the jax-rs-pac4j Javadoc.

See the migration guide as well.

Need help?

If you need commercial support (premium support or new/specific features), contact us at [email protected].

If you have any questions, want to contribute or be notified about the new releases and security fixes, please subscribe to the following mailing lists:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].