21 Oct 2021 04:06 PM
Hi, I am trying to mask/hide SessionID value for unauthorized users. SessionID value resides in Cookie of Request HTTP Header. I have created a RequestAttribute for SessionID and selected the second check box [Request attribute contains confidential data (hides data from unauthorized users).]
Issue i am facing is entire cookie is being masked, but I want to show the entire cookie for all DT users and hide the SessionID value only.
Please suggest if there is a way i can capture SessionID value and hide for unauthorized users?
Solved! Go to Solution.
27 Oct 2021 01:37 PM
I don't think there is way to mask only part of this header. You can only try to extract some values from code (is they are processed somehow and available there) In such case you can mas whole cookie and extract only those values that can be accessed for all in one Request Attribute, session id in another, confidential one.
Sebastian
27 Oct 2021 03:10 PM
Hmm. Thanks @skrystosik sounds like there is no workaround as I know Cookie is the only place where I can capture the SessionID value.