0

I am trying to login to the Azure Portal. My Azure AD account is associated with 2 tenants - my regular 0365 tenant and I also have an Azure AD B2C tenant as well. When I access the Azure Portal in Edge, I get shown the following screen:

Help us protect your account

If I click on Next, I get taken back to the same screen as above. If I click on Skip for now, I get the following error screen:

Error Screen

Any ideas?

Julian.Net
  • 157
  • 1
  • 10

1 Answers1

0
  • If it is SAML Request ,the query string size must have exceeded ,which should not increase over the limit of 4096 bytes.
  • Try using fiddler trace to check saml query string size and for it to be not included ,please make sure that the SAML Request is not signed.The signature element is optional in the request and Azure AD does not support /validate signed authentication requests according to Signature - | Microsoft Docs
  • In Azure AD B2C , to disable the SAML request signature, set the WantsSignedRequests to false so that the Signature parameters (query string or post parameter) are omitted from the request.

To remove signature from SAML request in aadb2c

<Metadata>
  ...
  <Item Key="WantsSignedRequests">false</Item>
  ...
</Metadata>
kavyaS
  • 8,026
  • 1
  • 7
  • 19
  • I don't think the issue is Azure AD B2C configuration specifically as this was all working fine. I think the moment I turned on Security Defaults in my main Azure AD tenant, this started happening. – Julian.Net Aug 03 '22 at 22:48