Fluent.Backdoor 1.0.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package Fluent.Backdoor --version 1.0.8
NuGet\Install-Package Fluent.Backdoor -Version 1.0.8
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Fluent.Backdoor" Version="1.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fluent.Backdoor --version 1.0.8
#r "nuget: Fluent.Backdoor, 1.0.8"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Fluent.Backdoor as a Cake Addin
#addin nuget:?package=Fluent.Backdoor&version=1.0.8

// Install Fluent.Backdoor as a Cake Tool
#tool nuget:?package=Fluent.Backdoor&version=1.0.8

Fluent.Backdoor

If you need to keep your app services on a tight leash, while still being able to verify app slots using smoke tests and perhaps warmups, then this could help you. A need based on keeping an app-service url hidden, while warming up a production slot in Azure made me create this little configurable function.

The syntax is:

  1. What do we Require() (IP/Cookie/Queystring)? And if fulfilled:
  2. how long will it Allow() access?

Simple, right?

Multiple Require() can be chained together for more complex rules.

In the end a ReturnCodeWhenDenied() and Finally() is used to wrap it up.

Sample usage of Fluent.Backdoor

        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            var options = new RewriteOptions();

            var fluent = new BackdoorRule().AllowAnythingFor(2)
                .Require(new BackdoorMagicCookie()
                {
                    CookieName = Configuration["FluentBackDoorRules:FluentMagicCookie:CookieName"],
                    CookieValue = Configuration["FluentBackDoorRules:FluentMagicCookie:CookieValue"]
                })
                .Require(new BackdoorMagicCookie()
                {
                    CookieName = "hey",
                    CookieValue = "ho"
                }).AndAllowFor(new TimeSpan(0, 0, 10))
                .Require(new BackdoorMagicQuerystring
                {
                    QuerystringName = Configuration["FluentBackDoorRules:FluentMagicQuerystring:QuerystringName"],
                    QuerystringValue = Configuration["FluentBackDoorRules:FluentMagicQuerystring:QuerystringValue"]
                }).AndAllowFor(new TimeSpan(0, 0, 20))
                .Require(new BackdoorMagicQuerystring
                {
                    QuerystringName = "hey",
                    QuerystringValue = "ho"
                }).AndAllowFor(new TimeSpan(0, 0, 20))
                .Require(new BackdoorHttpHostAndRemoteIPAddress
                {
                    HostNamesToProtect = Configuration["FluentBackDoorRules:FluentMagicRegExHttpHost_RemoteAddr:HostNamesToProtect"],
                    IPAddressesToAllowToUseProtectedUrls = Configuration["FluentBackDoorRules:FluentMagicRegExHttpHost_RemoteAddr:IPAddressesToAllowToUseProtectedUrls"]
                }).AndAllowFor(new TimeSpan(TimeSpan.MaxValue.Ticks))
                .ReturnCodeWhenDenied(System.Net.HttpStatusCode.Unauthorized)
                .Finalize();

            options.Rules.Add(fluent);
            app.UseRewriter(options);
        }

appsettings.json

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Information"
    }
  },
  "AllowedHosts": "*",
  "FluentBackDoorRules": {
    "CompleteAccess": {
      "TimeAllowedInSeconds": 20
    },
    "FluentMagicCookie": {
      "CookieName": "cookieshallpass",
      "CookieValue": "xxx"
    },
    "FluentMagicQuerystring": {
      "QuerystringName": "querystringshallpass",
      "QuerystringValue": "xxx"
    },
    "FluentMagicRegExHttpHost_RemoteAddr": {
      "HostNamesToProtect": "inte\\.|prep\\.|-slot\\.|prod\\.|stage\\.|stage2\\.|www2\\.",
      "IPAddressesToAllowToUseProtectedUrls": "^5\\.6\\.7\\8.$"
    }
  }
}

Example code above will:

  1. Allow any calls to the app 2 times.
  2. Allow access to the app for 10 second if two different cookies are present.
  3. Allow access to the app for 20 seconds if a querystring is supplied.
  4. Restrict access to the app if the HTTP_HOST contains HostNamesToProtect (RegEx-matching) and NOT in then list of IPAddressesToAllowToUseProtectedUrls (Remote_Addr).
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.17 797 6/24/2022
1.0.16 399 6/21/2022
1.0.15 401 6/21/2022
1.0.14 397 6/21/2022
1.0.12 392 6/21/2022
1.0.11 385 6/19/2022
1.0.10 391 6/19/2022
1.0.9 378 6/19/2022
1.0.8 371 6/19/2022
1.0.7 388 6/19/2022
1.0.6 393 6/19/2022
1.0.5 394 6/19/2022
1.0.1 399 6/19/2022
1.0.0 403 6/19/2022