All Projects → pac4j → Spring Security Pac4j

pac4j / Spring Security Pac4j

Licence: apache-2.0
pac4j security library for Spring Security: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Spring Security Pac4j

Spring Webmvc Pac4j
Security library for Spring Web MVC: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 110 (-52.38%)
Mutual labels:  sql, mongodb, spring-boot, ldap, authentication, jwt, authorization, oauth, login, openid-connect, cas, social-login, saml, twitter, facebook
Buji Pac4j
pac4j security library for Shiro: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 444 (+92.21%)
Mutual labels:  sql, mongodb, ldap, authentication, jwt, authorization, oauth, login, openid-connect, cas, social-login, saml, twitter, facebook
Spark Pac4j
Security library for Sparkjava: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 154 (-33.33%)
Mutual labels:  sql, mongodb, ldap, authentication, jwt, authorization, oauth, login, openid-connect, cas, social-login, saml, twitter, facebook
Play Pac4j
Security library for Play framework 2 in Java and Scala: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 375 (+62.34%)
Mutual labels:  sql, mongodb, ldap, authentication, jwt, authorization, oauth, login, openid-connect, cas, social-login, saml, twitter, facebook
Pac4j
Security engine for Java (authentication, authorization, multi frameworks): OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 2,097 (+807.79%)
Mutual labels:  ldap, authentication, jwt, authorization, oauth, spring-security, openid-connect, cas, saml
undertow-pac4j
Security library for Undertow: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 35 (-84.85%)
Mutual labels:  ldap, oauth, saml, login, authorization, cas, openid-connect, social-login
jax-rs-pac4j
Security library for JAX-RS and Jersey
Stars: ✭ 48 (-79.22%)
Mutual labels:  ldap, oauth, saml, login, authorization, cas, openid-connect, social-login
Spring Security React Ant Design Polls App
Full Stack Polls App built using Spring Boot, Spring Security, JWT, React, and Ant Design
Stars: ✭ 1,336 (+478.35%)
Mutual labels:  spring-boot, authentication, jwt, authorization, spring-security, login
Authing
🔥Authing - IDaaS/IAM solution that can Auth to web and mobile applications.
Stars: ✭ 247 (+6.93%)
Mutual labels:  ldap, jwt, oauth, login, openid-connect, saml
Sample Spring Oauth2 Microservices
some examples that show basic and more advanced implementations of oauth2 authorization mechanism in spring-cloud microservices environment
Stars: ✭ 109 (-52.81%)
Mutual labels:  spring-boot, jwt, authorization, oauth, spring-security
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 (+25.97%)
Mutual labels:  ldap, authentication, jwt, openid-connect, saml
Cloudfront Auth
An AWS CloudFront [email protected] function to authenticate requests using Google Apps, Microsoft, Auth0, OKTA, and GitHub login
Stars: ✭ 471 (+103.9%)
Mutual labels:  authentication, jwt, authorization, login, openid-connect
Cerberus
A demonstration of a completely stateless and RESTful token-based authorization system using JSON Web Tokens (JWT) and Spring Security.
Stars: ✭ 482 (+108.66%)
Mutual labels:  spring-boot, authentication, jwt, authorization, spring-security
Mern Boilerplate
Fullstack boilerplate with React, Redux, Express, Mongoose, Passport Local, JWT, Facebook and Google OAuth out of the box.
Stars: ✭ 112 (-51.52%)
Mutual labels:  mongodb, authentication, jwt, authorization, oauth
Spring Boot Webflux Jjwt
Example Spring Boot and WebFlux (Reactive Web) with Spring Security and JWT for token Authentication and Authorization
Stars: ✭ 71 (-69.26%)
Mutual labels:  spring-boot, authentication, jwt, authorization, spring-security
Login With
Stateless login-with microservice for OAuth
Stars: ✭ 2,301 (+896.1%)
Mutual labels:  jwt, oauth, login, twitter, facebook
Security.identity
.NET DevPack Identity is a set of common implementations to help you implementing Identity, Jwt, claims validation and another facilities
Stars: ✭ 165 (-28.57%)
Mutual labels:  authentication, jwt, authorization, oauth
Django Graphql Social Auth
Python Social Auth support for Graphene Django
Stars: ✭ 90 (-61.04%)
Mutual labels:  authentication, jwt, twitter, facebook
Express Mongodb Rest Api Boilerplate
A boilerplate for Node.js apps / Rest API / Authentication from scratch - express, mongodb (mongoose).
Stars: ✭ 153 (-33.77%)
Mutual labels:  mongodb, authentication, jwt, authorization
Turnstile
An authentication framework for Swift.
Stars: ✭ 163 (-29.44%)
Mutual labels:  authentication, oauth, login, facebook

The spring-security-pac4j project is an easy and powerful security library for Spring Security web applications and web services (with or without Spring Boot). It supports authentication and authorization, but also advanced features like session fixation and CSRF protection. It's based on Java 8, Spring Security 5 and on the pac4j security engine v5. It's available under the Apache 2 license.

For a new Spring Boot or Spring MVC project or if you intend to migrate your whole webapp to pac4j, you should use the spring-webmvc-pac4j library instead of this one, which offers similar capabilities, but is easier!

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 web applications authentication while a direct client is for web services authentication:

▸ OAuth - SAML - CAS - OpenID Connect - HTTP - Google App Engine - Kerberos - LDAP - SQL - JWT - MongoDB - CouchDB - IP address - REST API

  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. The SecurityFilter protects an url 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

  3. The CallbackFilter finishes the login process for an indirect client

  4. The LogoutFilter logs out the user from the application and triggers the logout at the identity provider level

  5. The Pac4jEntryPoint handles when the user is not authenticated

  6. The JEEContext and the ProfileManager components can be injected (for a Spring Boot/MVC webapp and using the spring-webmvc-pac4j library)

  7. The @RequireAnyRole and @RequireAllRoles annotations check the user roles (for a Spring Boot/MVC webapp and using the spring-webmvc-pac4j library).

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

Demos

The demo webapps for Spring Security without Spring Boot: spring-security-pac4j-demo or with Spring Boot: spring-security-pac4j-boot-demo are available for tests and implement many authentication mechanisms: Facebook, Twitter, form, basic auth, CAS, SAML, OpenID Connect, JWT...

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 spring-security-pac4j Javadoc.

See the migration guide as well.

Need help?

You can use the mailing lists or the commercial support.

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