How do I remove Crowd version and build information from the footer
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
'Powered by Atlassian'
Under Atlassian's customer terms, Atlassian customers may not remove proprietary Atlassian attributions or notices that are present in the Products. This may include text like "Powered by Atlassian" in a footer.
You may wish to remove Crowd version and build number from the footer of Crowd logon and other pages to prevent that information from being visible to your end-users or to avoid potential vulnerabilities or limitations from being exposed.

Solution
To remove version information from the login page
Open the
<crowd-installation-directory>/crowd-webapp/console
/decorator/wrm.jsp
file with a text editorUncomment the following line at the bottom of the file
From this:
1
<input id="crowd-version" type="hidden" value="<ww:text name="common.words.version"/>: <ww:property value="@com.atlassian.crowd.util.build.BuildUtils@getVersion()"/>">
To this
1
<!--<input id="crowd-version" type="hidden" value="<ww:text name="common.words.version"/>: <ww:property value="@com.atlassian.crowd.util.build.BuildUtils@getVersion()"/>">-->
Save the file
To remove version information from the other pages
Open the
<crowd-installation-directory>/crowd-webapp/console/decorator/default.jsp
file with a text editorUncomment the following line at the bottom of the file
From this:
1
<ww:text name="common.words.version"/>: <ww:property value="@com.atlassian.crowd.util.build.BuildUtils@getVersion()"/>
To this
1
<!--<ww:text name="common.words.version"/>: <ww:property value="@com.atlassian.crowd.util.build.BuildUtils@getVersion()"/>-->
Save the file
ℹ️ You may need to clear your browser cache if refreshing the page does not help. Alternatively, you may try Unable to start Crowd due to corrupted plugin caches.

Was this helpful?