Browse Source

always perform strict redirect URI matches in HEART mode

pull/1046/head
Justin Richer 9 years ago
parent
commit
5bccb602d8
  1. 11
      openid-connect-server/src/main/java/org/mitre/oauth2/service/impl/BlacklistAwareRedirectResolver.java

11
openid-connect-server/src/main/java/org/mitre/oauth2/service/impl/BlacklistAwareRedirectResolver.java

@ -19,6 +19,7 @@
*/ */
package org.mitre.oauth2.service.impl; package org.mitre.oauth2.service.impl;
import org.mitre.openid.connect.config.ConfigurationPropertiesBean;
import org.mitre.openid.connect.service.BlacklistedSiteService; import org.mitre.openid.connect.service.BlacklistedSiteService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.oauth2.common.exceptions.InvalidRequestException; import org.springframework.security.oauth2.common.exceptions.InvalidRequestException;
@ -43,6 +44,9 @@ public class BlacklistAwareRedirectResolver extends DefaultRedirectResolver {
@Autowired @Autowired
private BlacklistedSiteService blacklistService; private BlacklistedSiteService blacklistService;
@Autowired
private ConfigurationPropertiesBean config;
private boolean strictMatch = false; private boolean strictMatch = false;
/* (non-Javadoc) /* (non-Javadoc)
@ -80,7 +84,12 @@ public class BlacklistAwareRedirectResolver extends DefaultRedirectResolver {
* @return the strictMatch * @return the strictMatch
*/ */
public boolean isStrictMatch() { public boolean isStrictMatch() {
return strictMatch; if (config.isHeartMode()) {
// HEART mode enforces strict matching
return true;
} else {
return strictMatch;
}
} }
/** /**

Loading…
Cancel
Save