A user opened an incident with us, questioning the validity/authenticity of a Shibboleth error page they received due to a grammatical error in the message (they perceived it as a possible phishing page).
java-idp/src/main/webapp/error.jsp 13,14c13,14 < This service requires cookies. Please ensure that they are enabled and try your < going back to your desired resource and trying to login again. — > This service requires cookies. Please ensure cookies are enabled in your browser, > then go back to your desired resource and try to login again.
A user opened an incident with us, questioning the validity/authenticity of a Shibboleth error page they received due to a grammatical error in the message (they perceived it as a possible phishing page).
I downloaded the Shibboleth 2.x source tree
svn co https://svn.shibboleth.net/java-shib-idp2-main/branches/REL_2 java-shib-idp2-main
and have identified the source file that needs to be changed:
java-shib-idp2-main/java-idp/src/main/webapp/error.jsp
The proposed patch to fix it is:
java-idp/src/main/webapp/error.jsp
13,14c13,14
< This service requires cookies. Please ensure that they are enabled and try your
< going back to your desired resource and trying to login again.
—
> This service requires cookies. Please ensure cookies are enabled in your browser,
> then go back to your desired resource and try to login again.