Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase relay state max length for stup idp #1208

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
25 changes: 25 additions & 0 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: .NET Core

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal --configuration Release
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build status](https://ci.appveyor.com/api/projects/status/kf9r7lh4mh28rg2d?branch=master&svg=true&passingText=master%20-%20OK&failingText=master%20-%20Failed!&pendingText=master%20-%20Pending...)](https://ci.appveyor.com/project/Sustainsys/Saml2)<!-- Skip for now, disabled due to build server problems [![Coverage status](https://coveralls.io/repos/github/Sustainsys/Saml2/badge.svg?branch=master)](https://coveralls.io/github/Sustainsys/Saml2?branch=master) -->
[![.NET Core](https://github.com/Sustainsys/Saml2/workflows/.NET%20Core/badge.svg)](https://github.com/Sustainsys/Saml2/actions?query=workflow%3A%22.NET+Core%22)
[![Docs status](https://readthedocs.org/projects/saml2/badge/?version=latest)](https://saml2.sustainsys.com)
[![Join the chat at https://gitter.im/Susatinsys/Saml2](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Sustainsys/Saml2)
Sustainsys.Saml2
Expand All @@ -10,5 +10,11 @@ to act as a SAML2 Service Provider (SP). The library was previously named Kentor
Sustainsys.Saml2 is open sourced and contributions are welcome, please see
[contributing guidelines](CONTRIBUTING.md) for info on coding standards etc.

## Branches
There are three active branches in the repo
* v1 is a security-supported-only version that uses the `System.IdentityModel` library for token handling and supports HttpModule, Mvc, Owin and AspNetCore2 (only on full. Net Framework).
* v2 is a currently supported version that uses the `Microsoft.IdentityModel` nuget packages for token handling, multi-targets and supports HttpModule, Mvc, Owin and AspNetCore2
* master is development for a new version (will be released as v3 eventually) that only supports Asp.Net Core.

## Documentation
Complete documentation is available at [our documentation site](https://saml2.sustainsys.com).
11 changes: 7 additions & 4 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
# Security Policy

| Version | Supported |
| ------- | ------------------ |
| Kentor.AuthServices (any version) | :x: |
| Version | Supported | Action Required |
| ------- | ------------------ | ------ |
| Kentor.AuthServices (any version) | :x: | Migrate to latest Sustainsys.Saml2 1.x.y |
| Sustainsys.Saml2 latest 1.x.y | :white_check_mark: |
| Sustainsys.Saml2 latest 2.x.y | :white_check_mark: |
| Sustainsys.Saml2 master branch, planned major version 3. | :x: | Wait for develpment to get ready. Or help out! |

The 1.x branch only receives security updates or critical functionality patches, such as the SameSite cookie fix.

The 2.x branch is the currently supported version where new functionality is added. Only tha latest version will receive patches.

The master branch is for development of a new major version 3. It is work in progress and is not supported yet.

## Reporting a Vulnerability

Mail any security issues to [email protected]. Never open an issue in the repo unless instructed so by mail. Do not submit an open pull request.
Mail any security issues to [email protected]. Never open an issue in the repo unless instructed so by mail. Do not submit a pull request.
Binary file not shown.
Binary file not shown.
43 changes: 0 additions & 43 deletions Samples/SampleHttpModuleApplication/App_Start/BundleConfig.cs

This file was deleted.

13 changes: 0 additions & 13 deletions Samples/SampleHttpModuleApplication/App_Start/FilterConfig.cs

This file was deleted.

23 changes: 0 additions & 23 deletions Samples/SampleHttpModuleApplication/App_Start/RouteConfig.cs

This file was deleted.

61 changes: 0 additions & 61 deletions Samples/SampleHttpModuleApplication/Content/Site.css

This file was deleted.

12 changes: 0 additions & 12 deletions Samples/SampleHttpModuleApplication/Controllers/HomeController.cs

This file was deleted.

1 change: 0 additions & 1 deletion Samples/SampleHttpModuleApplication/Global.asax

This file was deleted.

25 changes: 0 additions & 25 deletions Samples/SampleHttpModuleApplication/Global.asax.cs

This file was deleted.

35 changes: 0 additions & 35 deletions Samples/SampleHttpModuleApplication/Properties/AssemblyInfo.cs

This file was deleted.

Loading