Last active
August 31, 2023 02:03
-
-
Save huslage/2434ee20fe924f67294fffa3a7e07987 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"samlEndpoint": "[REDACTED]", | |
"samlClientId": "jellyfin", | |
"samlCertificate": "[REDACTED]", | |
"enabled": true, | |
"enableAuthorization": true, | |
"enableAllFolders": true, | |
"enabledFolders": [], | |
"adminRoles": [], | |
"roles": [], | |
"enableFolderRoles": false, | |
"folderRoleMapping": [] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<PluginConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
<SamlConfigs> | |
<item> | |
<key> | |
<string>UID</string> | |
</key> | |
<value> | |
<PluginConfiguration> | |
<SamlEndpoint>[REDACTED]</SamlEndpoint> | |
<SamlClientId>[REDACTED]</SamlClientId> | |
<SamlCertificate>[REDACTED]</SamlCertificate> | |
<Enabled>true</Enabled> | |
<EnableAuthorization>true</EnableAuthorization> | |
<EnableAllFolders>true</EnableAllFolders> | |
<EnabledFolders /> | |
<AdminRoles /> | |
<Roles /> | |
<EnableFolderRoles>false</EnableFolderRoles> | |
<EnableLiveTvRoles>false</EnableLiveTvRoles> | |
<EnableLiveTv>false</EnableLiveTv> | |
<EnableLiveTvManagement>false</EnableLiveTvManagement> | |
<FolderRoleMappings /> | |
<CanonicalLinks /> | |
</PluginConfiguration> | |
</value> | |
</item> | |
</SamlConfigs> | |
<OidConfigs /> | |
</PluginConfiguration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[2023-08-30 21:12:46.217 -04:00] [INF] [7] Jellyfin.Plugin.SSO_Auth.Api.SSOController: SSO Controller initialized | |
[2023-08-30 21:12:46.234 -04:00] [INF] [7] Jellyfin.Plugin.SSO_Auth.Api.SSOController: SAML request has relayState of | |
[2023-08-30 21:12:46.242 -04:00] [ERR] [7] Jellyfin.Server.Middleware.ExceptionMiddleware: Error processing request. URL "POST" "/sso/SAML/p/UID". | |
System.FormatException: The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. | |
at System.Convert.FromBase64CharPtr(Char* inputPtr, Int32 inputLength) | |
at System.Convert.FromBase64String(String s) | |
at Jellyfin.Plugin.SSO_Auth.Api.SSOController.SamlPost(String provider, String relayState) | |
at lambda_method1221(Closure , Object , Object[] ) | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeActionMethodAsync() | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeNextActionFilterAsync() | |
--- End of stack trace from previous location --- | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() | |
--- End of stack trace from previous location --- | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextResourceFilter>g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() | |
--- End of stack trace from previous location --- | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) | |
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) | |
at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) | |
at Jellyfin.Server.Middleware.ServerStartupMessageMiddleware.Invoke(HttpContext httpContext, IServerApplicationHost serverApplicationHost, ILocalizationManager localizationManager) | |
at Jellyfin.Server.Middleware.WebSocketHandlerMiddleware.Invoke(HttpContext httpContext, IWebSocketManager webSocketManager) | |
at Jellyfin.Server.Middleware.IpBasedAccessValidationMiddleware.Invoke(HttpContext httpContext, INetworkManager networkManager) | |
at Jellyfin.Server.Middleware.LanFilteringMiddleware.Invoke(HttpContext httpContext, INetworkManager networkManager, IServerConfigurationManager serverConfigurationManager) | |
at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) | |
at Jellyfin.Server.Middleware.QueryStringDecodingMiddleware.Invoke(HttpContext httpContext) | |
at Swashbuckle.AspNetCore.ReDoc.ReDocMiddleware.Invoke(HttpContext httpContext) | |
at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) | |
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) | |
at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) | |
at Jellyfin.Server.Middleware.RobotsRedirectionMiddleware.Invoke(HttpContext httpContext) | |
at Jellyfin.Server.Middleware.LegacyEmbyRouteRewriteMiddleware.Invoke(HttpContext httpContext) | |
at Microsoft.AspNetCore.ResponseCompression.ResponseCompressionMiddleware.InvokeCore(HttpContext context) | |
at Jellyfin.Server.Middleware.ResponseTimeMiddleware.Invoke(HttpContext context, IServerConfigurationManager serverConfigurationManager) | |
at Jellyfin.Server.Middleware.ExceptionMiddleware.Invoke(HttpContext context) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<samlp:Response xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion" | |
xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol" | |
xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
ID="[REDACTED]" | |
InResponseTo="[REDACTED]" | |
Version="2.0" | |
IssueInstant="2023-08-31T01:12:46.04Z" | |
Destination="[REDACTED]"> | |
<saml:Issuer Format="urn:oasis:names:tc:SAML:2.0:nameid-format:entity">[REDACTED]</saml:Issuer> | |
<ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#"> | |
<!-- Signature information redacted --> | |
</ds:Signature> | |
<samlp:Status> | |
<samlp:StatusCode Value="urn:oasis:names:tc:SAML:2.0:status:Success" /></samlp:Status> | |
<saml:Assertion xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion" | |
ID="[REDACTED]" | |
IssueInstant="2023-08-31T01:12:46.042Z" | |
Version="2.0"> | |
<saml:Issuer Format="urn:oasis:names:tc:SAML:2.0:nameid-format:entity">[REDACTED]</saml:Issuer> | |
<ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#"> | |
<!-- Signature information redacted --> | |
</ds:Signature> | |
<saml:Subject> | |
<saml:NameID Format="urn:oasis:names:tc:SAML:2.0:nameid-format:persistent" | |
NameQualifier="[REDACTED]" | |
SPNameQualifier="jellyfin">[REDACTED]</saml:NameID> | |
<saml:SubjectConfirmation Method="urn:oasis:names:tc:SAML:2.0:cm:bearer"> | |
<saml:SubjectConfirmationData Address="[REDACTED]" | |
InResponseTo="[REDACTED]" | |
NotOnOrAfter="2023-08-31T01:17:46.04Z" | |
Recipient="[REDACTED]" /></saml:SubjectConfirmation> | |
</saml:Subject> | |
<saml:Conditions NotBefore="2023-08-31T01:12:40Z" | |
NotOnOrAfter="2023-08-31T01:17:40Z"> | |
<saml:AudienceRestriction> | |
<saml:Audience>jellyfin</saml:Audience> | |
</saml:AudienceRestriction> | |
</saml:Conditions> | |
<saml:AuthnStatement AuthnInstant="2023-08-31T01:12:46.042Z" | |
SessionIndex="[REDACTED]"> | |
<saml:SubjectLocality Address="[REDACTED]" /> | |
<saml:AuthnContext> | |
<saml:AuthnContextClassRef>urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport</saml:AuthnContextClassRef> | |
</saml:AuthnContext> | |
</saml:AuthnStatement> | |
<saml:AttributeStatement> | |
<!-- Attribute information redacted --> | |
</saml:AttributeStatement> | |
</saml:Assertion> | |
</samlp:Response> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment