Spring SAML 安全证书缓存问题

Posted

技术标签:

【中文标题】Spring SAML 安全证书缓存问题【英文标题】:Spring SAML Security Certificate Caching Issue 【发布时间】:2020-05-17 06:19:04 【问题描述】:

我使用的是 Spring security SAML 1.0.3 Release 版本。我发现了一个问题,如果我们为 IDP 上传证书,它不会反映在 Spring SAML 中。 问题似乎出在 MetadataCredentialResolver 那里有一个缓存 Map

  Map<MetadataCacheKey, SoftReference<Collection<Credential>>> cache;

它正在从缓存中挑选证书,因此新上传的证书被忽略。有没有办法重置缓存?

【问题讨论】:

【参考方案1】:

我认为摆脱缓存的方法是重写一个类,并将所有与缓存相关的调用的值设置为 null:-

@Override
protected Collection<Credential> retrieveFromCache(MetadataCacheKey cacheKey) 

    //return null and let it fetch from metadata
    return null;

@Override
protected void cacheCredentials(MetadataCacheKey cacheKey, 
Collection<Credential> credentials) 
   //do not put anything into cache

【讨论】:

以上是关于Spring SAML 安全证书缓存问题的主要内容,如果未能解决你的问题,请参考以下文章

Spring Security SAML IdP 元数据证书和签名

使用来自 Okta 的证书的 SAML 问题

如何使用 SP 密钥库 spring saml 中的证书

Spring Security SAML 请求在证书中包含 ^M 个字符

Spring Security SAML 可信证书条目不受密码保护

Spring SAML:更新元数据提供程序不会更新使用的签名证书