Stormancer.Security 3.0.0.7

dotnet add package Stormancer.Security --version 3.0.0.7
                    
NuGet\Install-Package Stormancer.Security -Version 3.0.0.7
                    
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="Stormancer.Security" Version="3.0.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stormancer.Security" Version="3.0.0.7" />
                    
Directory.Packages.props
<PackageReference Include="Stormancer.Security" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Stormancer.Security --version 3.0.0.7
                    
#r "nuget: Stormancer.Security, 3.0.0.7"
                    
#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.
#:package Stormancer.Security@3.0.0.7
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Stormancer.Security&version=3.0.0.7
                    
Install as a Cake Addin
#tool nuget:?package=Stormancer.Security&version=3.0.0.7
                    
Install as a Cake Tool

Introduction

The Stormancer.Security plugin adds OAuth2 authentication to Stormancer clusters.

Additional features in development include:

  • Rule based API access control.
  • Auditing

When enabled, the plugin protects all Admin APIs.

Installation

The plugin must be installed on all the nodes of the cluster. Failure to do so will enable the features only on a subset of the node which could lead to vulnerabilities. Please note that installation is not required on nodes initialized without web APIs enabled.

Configuration section

PUT: /_settings/cluster/security.jwt
{
    "enabled": true,
    "issuers": [
        {
            "scheme": "myscheme",
            "audiences": ["https://myaudience.com","oct:Default",etc...]
            "authority": "https://authority/"
        }
    ]
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
3.0.0.7 240 2/26/2025
3.0.0.7-pre 181 11/7/2024
3.0.0.6-pre 174 11/1/2024
3.0.0.5-pre 173 11/1/2024
3.0.0.3-pre 195 3/13/2024
3.0.0.2-pre 175 3/12/2024
3.0.0.1-pre 189 3/11/2024
3.0.0-pre 193 3/11/2024
2.0.0.5-pre 175 3/12/2024
2.0.0.4-pre 162 3/12/2024
2.0.0.3-pre 279 10/30/2023
2.0.0.2-pre 202 10/29/2023
2.0.0.1-pre 207 10/29/2023
2.0.0-pre 195 10/29/2023

Changed
*******
- Package renamed to Stormancer.Security.
- Adds OAuth2 'Client auth' securisation.
- Move to net8.0.