Question
Tata Consultancy Services
IN
Last activity: 5 Dec 2016 7:45 EST
using pxSessiontimer section for showing the sessiontimeout warning
Hi Team,
I am using pxsessiontimer control with 120 min and 20 min and show in modal as parameters respectively. For some strange reason. This section is getting acted on the 120th min to show the modal window but the section inside is not getting rendered please refere the screenshot attached.
In tracer I could find there is one interaction started on processAction activity but the next interaction to call the activity showlogOff activity is never called ... Please let me know if there is any way to find why the second interaction never starts or why I am getting this error as mentioned. Thanks in advance
We found the issue and we are going back to PEGA on this...
From our analyze we understand before installing Hotfix for HFix-29680 : pzDisplayModalDialog is vulnerable to XSS the section in the flowaction is rendered as below
<iframe src="/prweb/PRServlet/PxOBPOzjxiB-xx254ZjNplu_SciSRFT7*/[email protected]&time=60000&pzHarnessID=HID889ED4C50448AEE20A7A09E7027BEBF5" name="pzDisplayModalDialog" frameborder="0" style="width: 620px; height: 210px;" onload="pzDisplayModalDialogLoaderOnLoad(this);" id="pzDisplayModalDialog"></iframe>
From our analyze we understand after installing Hotfix for HFix-29680 : pzDisplayModalDialog is vulnerable to XSS the section in the flowaction is rendered as below (encoded characters this is causing the issue)
<iframe src="%2Fprweb%2FPRServlet%2FPxOBPOzjxiB-xx254ZjNplu_SciSRFT7*%2F%21OpenPortal%3FpyActivity%3D%2540baseclass.ShowLogoffTimer%26time%3D60000%26pzHarnessID%3DHIDD73E2D765D89B8E7B1463653632E8A3A" name="pzDisplayModalDialog" frameborder="0" style="width: 620px; height: 210px;" onload="pzDisplayModalDialogLoaderOnLoad(this);" id="pzDisplayModalDialog"></iframe>