RubyGems Navigation menu

arbac_verifier 1.0.2

![logo.png](https://github.com/stefanosello/arbac_verifier/raw/main/logo.png) [![codecov](https://codecov.io/github/stefanosello/arbac_verifier/branch/development/graph/badge.svg?token=VXWHKJUJR2)](https://codecov.io/github/stefanosello/arbac_verifier) [![Ruby Gem](https://github.com/stefanosello/arbac_verifier/actions/workflows/gem-push.yml/badge.svg?branch=development)](https://github.com/stefanosello/arbac_verifier/actions/workflows/gem-push.yml) [![Gem Version](https://badge.fury.io/rb/arbac_verifier.svg)](https://badge.fury.io/rb/arbac_verifier) [![Open Source? Yes!](https://badgen.net/badge/Open%20Source%20%3F/Yes%21/blue?icon=github)](https://github.com/Naereen/badges/) **ARBAC Verifier** is a Ruby gem designed to facilitate the modeling and verification of Administrative Role-Based Access Control (ARBAC) policies. With this tool, you can efficiently model ARBAC policies and perform verification tasks to determine if a specific role (`Goal`) can be achieved starting from a given set of states (user-to-role assignments). This gem is grounded in comprehensive theoretical foundations, which you can explore in detail through the [official security course slides](https://secgroup.dais.unive.it/wp-content/uploads/2020/04/arbac.pdf) provided by [Ca' Foscari University](https://www.unive.it/pag/13526) of Venice. ## Installation The `arbac_verifier` gem can be installed from [rubygems.org](https://rubygems.org/gems/arbac_verifier) from command line: ```{bash} gem install arbac_verifier ``` or by adding the following line to your `Gemfile` project: ```{ruby} gem 'arbac_verifier', '~> 1.0', '>= 1.0.1' ``` ## ARBAC definition file An ARBAC (Attribute-Based Role-Based Access Control) policy definition comprises four key components: - **Users**: A set of individuals who are part of the system under analysis. - **Roles**: A set of roles that can be assigned to or removed from users. - **Can-Assign Rules**: These rules specify which roles can be assigned to users. Each rule includes: - The role that has the authority to make the assignment. - The role to be assigned. - Positive preconditions: Specific roles that the user must already possess to be eligible for the new role. - Negative preconditions: Specific roles that the user must not possess to be eligible for the new role. - **Can-Revoke Rules**: These rules specify which roles can be revoked from users. Each rule includes: - The role that has the authority to revoke. - The role to be revoked. This structure ensures that role assignments and revocations are controlled and based on the current state of the user's roles. In order to represent a policy based on this definition, we can use `arbac` files, which should follow this format: ``` Roles Teacher Student TA ; Users stefano alice bob ; UA ; CR ; CA ; Goal Student ; ``` - Each line starts with an *header* that explains which information will be represented - `Roles` and `Users` are straight forward - `UA` are initial User Assignments, i.e. user-role assignments, where each item is a pair of `` - `CR` are Can-Revoke rules, where each item is a pair of `` - `CA` are Can-Assign rules, where each item is a tern of `, assignable role>` - `Goal` is not an ARBAC property: it is the target role for which the reachability should be verified - Each line ends with a `;` - Items of each line are space-separated ## Usage Once installed, the gem can be used to manage different tasks related to arbac policies. ```{Ruby} require 'arbac_verifier' require 'set # Create new Arbac instance from .arbac file policy0 = ArbacInstance.new(path: 'policy0.arbac') # Create new Arbac instance passing single attributes policy1 = ArbacInstance.new( goal: :Student, roles: [:Teacher, :Student, :TA].to_set, users: ["stefano", "alice", "bob"].to_set, user_to_role: [UserRole.new("stefano", :Teacher), UserRole.new("alice", :TA)].to_set, can_assign_rules: [ CanAssignRule.new(:Teacher, [].to_set, [:Teacher, :TA].to_set, :Student), CanAssignRule.new(:Teacher, [].to_set, [:Student].to_set, :TA), CanAssignRule.new(:Teacher, [:TA].to_set, [:Student].to_set, :Teacher) ].to_set, can_revoke_rules: [CanRevokeRule.new(:Teacher, :Student), CanRevokeRule.new(:Teacher, :TA)].to_set ) ``` Once the problem instance has been defined, the gem provides two simplification algorithms that can be used to reduce the size of the reachability problem. These algorithms do not modify the original policy and return a new simplified policy. ```{Ruby} require 'arbac_verifier' # apply backward slicing policy0bs = ArbacUtilsModule::backward_slicing(policy0) policy0fs = ArbacUtilsModule::forward_slicing(policy0) ``` A Role Reachability Problem solution can be computed using the `ArbacReachabilityVerifier` class. ```{Ruby} require 'arbac_verifier' # Creare new reachability verifier instance starting from an .arbac file verifier0 = ArbacReachabilityVerifier.new(path: 'policy0.arbac') # or from an already created ArbacInstance verifier1 = ArbacReachabilityVerifier.new(instance: policy1) # and then compute reachability verifier0.verify # => true ``` **NB:** when a verifier instance is created starting from an `.arbac` file, backward and forward slicing are applied to the parsed policy.

Gemfile:
=

安裝:
=

版本列表:

  1. 1.1.2 - October 07, 2024 (81.5 KB)
  2. 1.1.1 - October 06, 2024 (81.5 KB)
  3. 1.1.0 - July 28, 2024 (81.5 KB)
  4. 1.0.5 - July 21, 2024 (9.5 KB)
  5. 1.0.2 - July 21, 2024 (9.5 KB)
顯示所有版本(共 8)

Runtime 相依性套件 (1):

Development 相依性套件 (4):

rspec ~> 3.12
sorbet ~> 0.5
tapioca ~> 0.15

擁有者:

推送者:

作者:

  • Stefano Sello

SHA 256 總和檢查碼:

=

總下載次數 1,503

這個版本 116

版本发布:

授權:

Apache-2.0

Ruby 版本需求: >= 0

相關連結: