All Projects → Netcentric → Accesscontroltool

Netcentric / Accesscontroltool

Licence: epl-1.0
Rights and roles management for AEM made easy

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Accesscontroltool

Asset Share Commons
A modern, open-source asset share reference implementation built on Adobe Experience Manager (AEM)
Stars: ✭ 65 (-42.48%)
Mutual labels:  aem, crx
Gradle Aem Plugin
Swiss army knife for Adobe Experience Manager related automation. Environment setup & incremental AEM application build which takes seconds, not minutes.
Stars: ✭ 145 (+28.32%)
Mutual labels:  aem, crx
Acs Aem Commons
Stars: ✭ 394 (+248.67%)
Mutual labels:  aem, crx
Rbiam
A unified IAM+Kubernetes RBAC access control exploration tool
Stars: ✭ 59 (-47.79%)
Mutual labels:  access-control
Aem Guides
AEM Guides contains multiple AEM Maven projects that are code companions for a corresponding tutorial found on helpx.adobe.com
Stars: ✭ 67 (-40.71%)
Mutual labels:  aem
Iptables semantics
Verified iptables Firewall Ruleset Analysis
Stars: ✭ 85 (-24.78%)
Mutual labels:  access-control
Aem Htl Style Guide
A style guide for the HTML Template Language (HTL), the templating language use by the Adobe Experience Manager (AEM).
Stars: ✭ 111 (-1.77%)
Mutual labels:  aem
Monarchy
Hierarchical access management system with advanced roles inheritance. 🦋
Stars: ✭ 48 (-57.52%)
Mutual labels:  access-control
Tools
Tools to support development, testing and deployment of Marketing Cloud technologies
Stars: ✭ 94 (-16.81%)
Mutual labels:  aem
Acl
a lightweight acl manager for go.
Stars: ✭ 84 (-25.66%)
Mutual labels:  access-control
Casbin
An authorization library that supports access control models like ACL, RBAC, ABAC in Golang
Stars: ✭ 10,872 (+9521.24%)
Mutual labels:  access-control
Seckill
Chrome浏览器 抢购、秒杀插件,秒杀助手,定时自动点击
Stars: ✭ 1,278 (+1030.97%)
Mutual labels:  crx
Jcasbin
An authorization library that supports access control models like ACL, RBAC, ABAC in Java
Stars: ✭ 1,335 (+1081.42%)
Mutual labels:  access-control
Felix Search Webconsole Plugin
Search Web Console Plugin for Apache Felix
Stars: ✭ 79 (-30.09%)
Mutual labels:  aem
Aem Core Cif Components
A set of configurations and components to get you started with AEM Commerce development
Stars: ✭ 60 (-46.9%)
Mutual labels:  aem
Unix Permissions
Swiss Army knife for Unix permissions
Stars: ✭ 106 (-6.19%)
Mutual labels:  access-control
Vue Access Control
💎 Frontend access control framework based Vue
Stars: ✭ 1,056 (+834.51%)
Mutual labels:  access-control
Accesscontrolhelper
AccessControlHelper for asp.net mvc and asp.net core, strategy based authorization
Stars: ✭ 71 (-37.17%)
Mutual labels:  access-control
Project
⭐️ Antares Project Application Skeleton. This is the very first place you should start. It allows you to create a brand new awesome project in easy few steps.
Stars: ✭ 84 (-25.66%)
Mutual labels:  access-control
Casbin Cpp
An authorization library that supports access control models like ACL, RBAC, ABAC in C/C++
Stars: ✭ 113 (+0%)
Mutual labels:  access-control

Maven Central License Build Status SonarCloud Status SonarCloud Coverage

Access Control Tool for Adobe Experience Manager

The Access Control Tool for Adobe Experience Manager (AC Tool) simplifies the specification and deployment of complex Access Control Lists in AEM. Instead of existing solutions that build e.g. a content package with actual ACL nodes you can write simple configuration files and deploy them with your content packages. See Comparison to other approches for a comprehensive overview.

Features:

  • easy-to-read Yaml configuration file format
  • run mode support
  • automatic installation with install hook
  • cleans obsolete ACL entries when configuration is changed
  • ACLs can be exported
  • stores history of changes
  • ensured order of ACLs
  • built-in expression language to reduce rule duplication

See also our talk at AdaptTo 2016

Requirements

The AC Tool requires Java 7 and AEM 6.1 (SP1) or above (use v1.x for older versions) for on-premise installations. Since v2.5.0 AEM as a Cloud Service is supported, see Startup Hook for details.

It is also possible to run the AC Tool on Apache Sling 11 or above (ensure system user actool-service has jcr:all permissions on root). When using the AC Tool with Sling, actions in ACE definitions and encrypted passwords cannot be used. To use the externalId attribute, ensure bundle oak-auth-external installed (not part of default Sling distribution).

Installation

The content package is available from the Maven Central repository with the coordinates

    <groupId>biz.netcentric.cq.tools.accesscontroltool</groupId>
    <artifactId>accesscontroltool-package</artifactId>

(for AEM Classic/On Premise) or

    <groupId>biz.netcentric.cq.tools.accesscontroltool</groupId>
    <artifactId>accesscontroltool-package</artifactId>
    <classifier>cloud</classifier>

(for AEM as a Cloud Service)

Install it afterwards e.g. via AEM's package manager.

Oak Index for rep:ACL

To retrieve all ACLs in the system, an Apache Oak index for node type rep:ACL is

  • required for versions < 2.4.0 (otherwise the performance degrades significantly)
  • beneficial for large installations for versions >= 2.4.0 (see #386, most installations will be fine without index)

You can get the content package containing the index definition via Maven Central with the coordinates

    <groupId>biz.netcentric.cq.tools.accesscontroltool</groupId>
    <artifactId>accesscontroltool-oakindex-package</artifactId>

(for AEM Classic/On Premise) or

    <groupId>biz.netcentric.cq.tools.accesscontroltool</groupId>
    <artifactId>accesscontroltool-oakindex-package</artifactId>
    <classifier>cloud</classifier>

(for AEM as a Cloud Service)

Install it afterwards e.g. via AEM's package manager.

Migration to AC Tool

You can easily migrate to AC Tool following four simple steps.

Configuration of ACL entries

You need to setup Yaml configuration files to specify your users, groups and ACL entries. See also the best practices for hints on structuring.

There are also some advanced configuration options supported such as loops, conditional statements and permissions for anonymous.

Applying the ACL entries

There are multiple options to apply the ACL entries (e.g. install hook, JMX and upload listener) to your target system.

JMX interface

The JMX interface provides utility functions such as installing and dumping ACLs or showing the history.

History service

A history object collects messages, warnings, and also an exception in case something goes wrong. This history gets saved in CRX under /var/statistics/achistory. The number of histories to be saved can be configured in the history service.

Questions

If you have any questions which are still answered after reading the documentation feel free to raise them in the discussion forum.

Contributions

Contributions are highly welcome in the form of issue reports, pull request or providing help in our discussion forum.

Building the packages from source

If needed you can build the AC Tool yourself.

License

The AC Tool is licensed under the Eclipse Public License - v 1.0.

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