Git Product home page Git Product logo

opa-aspdotnetcore-middleware's Introduction

OPA-AspDotNetCore-Middleware

build-logo

Abstract

build.security provides simple development and management for your organization's authorization policy. OPA-AspDotNetCore-Middleware is a .Net middleware intended for performing authorization requests against build.security PDP(Policy Decision Point)/OPA.

Data Flow

drawing

Usage

Before you start we recommend completing the onboarding tutorial.


Important note

To simplify the setup process, the following example uses a local build.security PDP instance. If you are already familiar with how to run your PDP, You can also run a PDP on you environment (Dev/Prod, etc).

In that case, don't forget to change the hostname and the port in your code.

Simple usage

To use the middleware add this to your startup.cs

services.AddBuildAuthorization(options =>
{
    options.Enable = true;
    options.BaseAddress = "http://localhost:8181";
    options.PolicyPath = "/v1/data/authz/allow";
    options.AllowOnFailure = false;
    options.Timeout = 5;
});

You can also add more context for the PDP authz decision using the Authorize attribute on a ASP.NET controller, as shown in the sample application.

Mandatory configuration

  1. BaseAddress: String. The address of the Policy Decision Point (PDP)

Optional configuration

  1. PolicyPath: String. Full path to the policy (including the rule) that decides whether requests should be authorized. /v1/data/authz/allow
  2. AllowOnFailure: Boolean. "Fail open" mechanism to allow access to the API in case the policy engine is not reachable. Default is false.
  3. IncludeBody: Boolean. Whether or not to pass the request body to the policy engine. Default is true.
  4. IncludeHeaders: Boolean. Whether or not to pass the request headers to the policy engine. Default is true
  5. Timeout: Boolean. Amount of time to wait before request is abandoned and request is declared as failed. Default is 1000ms.
  6. Enable: Boolean. Whether or not to consult with the policy engine for the specific request. Default is true
  7. IgnoreEndpoints- String array. Determines what endpoint should be excluded from authorization.
  8. IgnoreRegex - String array. Determines what endpoints should be excluded from authorization using regex.

PDP Request example

This is what the input received by the PDP would look like:

{
   "input":{
      "request":{
         "method":"GET",
         "query":[
            
         ],
         "path":"/static/js/0.chunk.js",
         "scheme":"http",
         "host":{
            "value":"localhost:5000",
            "hasValue":true,
            "host":"localhost",
            "port":5000
         }
      },
      "source":{
         "ipAddress":"::1",
         "port":64288
      },
      "destination":{
         "ipAddress":"::1",
         "port":5000
      },
      "resources":{
         "requirements":[
            
         ],
         "attributes":{
            
         }
      },
      "sample":"application"
   }
}

If everything works well you should receive the following response:

{
    "decision_id":"ef414180-05bd-4817-9634-7d1537d5a657",
    "result":true
}

opa-aspdotnetcore-middleware's People

Contributors

amirbenun avatar eyalkraft avatar ofir-lapid avatar dekelb avatar yashtewari avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.