[jboss-jira] [JBoss JIRA] Closed: (JBCLUSTER-245) Session id masking logic using incorrect variable

Brian Stansberry (JIRA) jira-events at lists.jboss.org
Thu Dec 10 09:38:30 EST 2009


     [ https://jira.jboss.org/jira/browse/JBCLUSTER-245?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brian Stansberry closed JBCLUSTER-245.
--------------------------------------

    Resolution: Done


The fix for this was actually included in the commit for JBCLUSTER-244.

> Session id masking logic using incorrect variable
> -------------------------------------------------
>
>                 Key: JBCLUSTER-245
>                 URL: https://jira.jboss.org/jira/browse/JBCLUSTER-245
>             Project: JBoss Clustering
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: HA-Server-Cache-JBC
>    Affects Versions: HA-Server-Cache-JBC 2.1.0.GA 
>            Reporter: Brian Stansberry
>            Assignee: Brian Stansberry
>             Fix For: HA-Server-Cache-JBC 2.1.1.GA
>
>
> Util.maskId() has this:
>          StringBuilder sb = new StringBuilder(realId.substring(0, 2));
>          sb.append("****");
>          sb.append(sb.substring(length - 6, length));
>          return sb.toString();
> Should be:
>          sb.append(realId.substring(length - 6, length));

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jboss-jira mailing list