[java-opensaml] branch master updated: IDP-1572 - SAML flow not extracting request ID for InResponseTo check

Scott Cantor cantor.2 at osu.edu
Mon Mar 2 15:52:46 EST 2020


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch master
in repository java-opensaml.

View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=600874a2331b9e91329f865075541aaf3c6b1440

The following commit(s) were added to refs/heads/master by this push:
       new  600874a   IDP-1572 - SAML flow not extracting request ID for InResponseTo check
600874a is described below

commit 600874a2331b9e91329f865075541aaf3c6b1440
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Mar 2 15:52:40 2020 -0500

    IDP-1572 - SAML flow not extracting request ID for InResponseTo check
    
    https://issues.shibboleth.net/jira/browse/IDP-1572
    
    Tentative fix to default extraction function.
---
 .../saml2/profile/impl/DefaultAssertionValidationContextBuilder.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/profile/impl/DefaultAssertionValidationContextBuilder.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/profile/impl/DefaultAssertionValidationContextBuilder.java
index d1a1366..ebb15fa 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/profile/impl/DefaultAssertionValidationContextBuilder.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/profile/impl/DefaultAssertionValidationContextBuilder.java
@@ -990,7 +990,7 @@ public class DefaultAssertionValidationContextBuilder
         /** Constructor. */
         public DefaultValidInResponseToLookupFunction() {
             delegate = new SAMLMessageInfoContextIDFunction().compose(
-                    new ChildContextLookup<>(SAMLMessageInfoContext.class).compose(
+                    new ChildContextLookup<>(SAMLMessageInfoContext.class, true).compose(
                             new MessageContextLookup<>(Direction.OUTBOUND)));
         }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list