2 रिपॉजिटरी
Sequences of security filters used to intercept and validate requests before they reach application controllers.
Distinct from Identity Request Interception: Focuses on the chain of security filters rather than just specific identity callbacks.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Security Filter Chains. Refine with filters or upvote what's useful.
This project is a reference implementation and a collection of code samples for deploying the Apache Shiro security framework within Java-based web applications. It serves as a demonstration for implementing authentication, authorization, and user identity management. The implementation features distributed session management to coordinate user states across multiple server instances for high availability. It also includes samples for third-party OAuth2 integration, enabling external account authentication, and single sign-on support to grant access to multiple related applications. The proj
Uses a chain of security filters to enforce authentication and authorization on incoming HTTP requests.
Shiro is a Java security framework that provides an identity and access manager for implementing authentication, authorization, cryptography, and session management. It serves as a security layer to verify user identities and enforce role-based access control for protected system resources. The project features a pluggable realm architecture that decouples security logic from identity data and a standalone session management system that tracks user state independently of the underlying servlet container. It includes an integrator for external identity providers using federation protocols such
Uses sequenced filter chains to intercept web requests and enforce security constraints before they reach the application.