You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by "Ralph Bastiaansen (JIRA)" <ji...@apache.org> on 2018/12/19 14:46:00 UTC

[jira] [Created] (WSS-639) IssueInstant NotOnOrAfter is not checked when specified

Ralph Bastiaansen created WSS-639:
-------------------------------------

             Summary: IssueInstant NotOnOrAfter is not checked when specified
                 Key: WSS-639
                 URL: https://issues.apache.org/jira/browse/WSS-639
             Project: WSS4J
          Issue Type: Bug
          Components: WSS4J Core
    Affects Versions: 2.2.2, 2.2.1
            Reporter: Ralph Bastiaansen
            Assignee: Colm O hEigeartaigh


In org.apache.wss4j.common.saml.SamlAssertionWrapper in method checkIssueInstance, line 862.

When validTill is not null, no check is performed.

 
{code:java}
// If there is no NotOnOrAfter, then impose a TTL on the IssueInstant.
if (validTill == null) {
    currentTime = new DateTime().minusSeconds(ttl);

    if (issueInstant.isBefore(currentTime)) {
        LOG.debug("SAML Token IssueInstant not met. The assertion was created too long ago.");
        throw new WSSecurityException(WSSecurityException.ErrorCode.FAILURE, "invalidSAMLsecurity");
    }
}{code}
 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ws.apache.org
For additional commands, e-mail: dev-help@ws.apache.org