Closed paragonn closed 9 months ago
I think this will help:
https://saml-sp.flipboxfactory.com/faqs.html#signature-required-but-not-found
Yes, that fixed the issue--thanks!
Just please make sure you don't set requireAssertionToBeSigned=false
. Azure AD/Entra doesn't sign the Response but they do sign the Assertions and we need to verify that appropriately.
Basically, just make sure it's only set like this:
return [
// assertion is required but not the response
'requireResponseToBeSigned' => false,
];
and NOT!
return [
// THIS IS BAD! (sorry for the yelling here but it's important ;)
'requireResponseToBeSigned' => false,
'requireAssertionToBeSigned' => false,
];
We have the plugin configured and Azure configured, but we are receiving the error below. Any ideas?