How to bypass RSA SecurID multiple domain authentication page
Originally Published: 2000-11-01
Article Number
Applies To
RSA ACE/Server
UNIX (AIX, HP-UX, Solaris)
Microsoft Windows
The purpose of the multidom.htm page is to set the cookies for the different domains listed in the multiple domain support. This is done by the ok.jpg image. The multidom.htm will come up with all domains listed. If the connection was made to that server at the specific URL for setting that cookie, the ok.jpg image, ?OK?, is displayed on that line. If the connection was not made and the cookie cannot be set, the denied.jpg image, ?Denied?, will appear on that line.
NOTE: RSA does not recommend that customers remove the multidom.htm page because users will not know if the domain cookies loaded properly or not. However, if customers want to remove this HTML page, they can write Java script to eliminate the need for the HTML page (whether the domain cookies loaded successfully or not) and automatically send the user to the next URL.
The danger in this is that the end user would not see the ?Denied? image if the connection is unsuccessful. Administrators have to weigh this against the benefits of not seeing the page at all. It is for this reason that RSA recommends the original multidom.htm page be backed up. It could be put back in place for the purposes of troubleshooting, if necessary.
Issue
Cause
Resolution
To make these modifications, follow these instructions.
Original multi-dom.htm:
Location \winnt\system32\aceclnt
The original page has the following coding:
<script language=JavaScript>
<!--
function check_popup()
{
if (window.name == "SecurIDPopup") {
alert('Authentication successful');
window.close();
}
}
//-->
</script>
Modified multi-dom.htm:
Modifications can be made to the file so that it appears and immediately disappears. The coding below should be put in place of that noted above.
<script language=JavaScript>
<!--
function check_popup()
{
if (window.name == "SecurIDPopup") {
alert('Authentication successful');
window.close();
}
else {
document.location = document.links[0].href; }
}
//-->
</script>
Related Articles
How to bypass SSO for testing in RSA Identity Governance and Lifecycle 48Number of Views DSA-2020-194: RSA MFA Agent for Microsoft Windows Authentication Bypass Vulnerability 29Number of Views Understanding the format of RSA cookies 39Number of Views RSA RADIUS server fails to start on an RSA Authentication Manager 8.x Instance 116Number of Views The URL parameter SSOLogin=false fails to bypass SSO login after upgrading to 7.0.2 of RSA Identity Governance & Lifecycle 130Number of Views
Trending Articles
Troubleshooting RSA SecurID Access Identity Router to RSA Authentication Manager test connection failures RSA SecurID Software Token 5.0.2 Downloads for Microsoft Windows RSA Authentication Manager 8.9 Release Notes (January 2026) Quick Setup Guide - Passwordless Authentication in Windows MFA Agent for Active Directory RSA Authentication Manager 8.8 Setup and Configuration Guide
Don't see what you're looking for?