Vanessa VillaforPangea Blogpangea.cloud·Sep 10, 2024How to ABAC: Banking EditionWhat is ABAC? Attribute-based Access Control is an authorization schema that allows for fine-grained access policies to be created based on attributes like location, time of day, and a user’s department. For a more detailed look as to the benefits of...29 readsauthorization
Keith CaseyforPangea Blogpangea.cloud·Sep 10, 2024AuthZ: ABAC == trueAll of access control comes down to one fundamental question: How do we grant the right access to the right things to the right people and systems for the right amount of time? Every other question addresses an aspect or nuance within that question. ...authorization
Vanessa VillaforPangea Blogpangea.cloud·Sep 4, 2024RBAC vs ReBAC vs ABAC: Comparison and Guide on how to get startedWhat is authorization (AuthZ)? Authorization is a cornerstone of enterprise security. It dictates who can access specific resources, what actions they can perform, when, and the authorization logic can be as rigorous as to include attributes such as ...298 readsauthorization
Keith CaseyforPangea Blogpangea.cloud·May 28, 2024AuthZ: Access Controls from A to ZAt first glance, authorization seems easier than authentication. After all, with authentication you have to worry about user onboarding, social auth, MFA, password resets, and more. Authorization starts from the simple question of: “Can this user see...846 readsrebac
Redha Bayu Anggararedhabayuanggara.hashnode.dev·Sep 22, 2023role-based vs. attribute-based authorization? (in Golang)Role-based authorization Role-based authorization (RBAC) is a model where for defining a set of roles, such as admin, manager, or customer, and assign them to users. Each role has a predefined set of permissions, such as create, read, update, or dele...1 like·33 readsgolang
Wilson Gichuhiwilson-gichuhi.hashnode.dev·Jun 12, 2023Scaling Authorization in GraphQLOne of the de facto standards of tackling how decoupled systems interact together is by building APIs. In recent years, GraphQL has gained popularity in developing web APIs. GraphQL spec uses a declarative query language that favors flexible queries ...GraphQL