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
DSA-2020-194: RSA MFA Agent for Microsoft Windows Authentication Bypass Vulnerability 29Number of Views How to bypass SSO for testing in RSA Identity Governance and Lifecycle 48Number 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 Change Requests sometimes complete but bypass both AFX and manual fulfillment and fail to modify the endpoint in RSA Ident… 161Number of Views Troubleshooting tips on testing and configuring NTP for time synchronization on RSA Identity Governance & Lifecycle servers 535Number of Views
Trending Articles
Downloading RSA Authentication Manager license files or RSA Software token seed records RSA MFA Agent 2.3.6 for Microsoft Windows Installation and Administration Guide Quick Setup Guide - Passwordless Authentication in Windows MFA Agent for Active Directory Mandatory Certificate Upgrade Required by 6th October 2025 for RSA MFA Agent for PAM, RSA MFA Agent for Apache, and Third … RSA Authentication Manager 8.9 Release Notes (January 2026)
Don't see what you're looking for?