set redirect URI matching to strict by default
parent
7e6864ff38
commit
2f31ceddf8
|
@ -1,5 +1,7 @@
|
||||||
Unreleased:
|
Unreleased:
|
||||||
- Added changelog
|
- Added changelog
|
||||||
|
- Set default redirect URI resolver strict matching to true
|
||||||
|
- Fixed XSS vulnerability on redirect URI display on approval page
|
||||||
|
|
||||||
*1.3.1*:
|
*1.3.1*:
|
||||||
- Added End Session endpoint
|
- Added End Session endpoint
|
||||||
|
|
|
@ -47,7 +47,7 @@ public class BlacklistAwareRedirectResolver extends DefaultRedirectResolver {
|
||||||
@Autowired
|
@Autowired
|
||||||
private ConfigurationPropertiesBean config;
|
private ConfigurationPropertiesBean config;
|
||||||
|
|
||||||
private boolean strictMatch = false;
|
private boolean strictMatch = true;
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.springframework.security.oauth2.provider.endpoint.RedirectResolver#resolveRedirect(java.lang.String, org.springframework.security.oauth2.provider.ClientDetails)
|
* @see org.springframework.security.oauth2.provider.endpoint.RedirectResolver#resolveRedirect(java.lang.String, org.springframework.security.oauth2.provider.ClientDetails)
|
||||||
|
|
Loading…
Reference in New Issue