Installation of MSDE creates an 'sa' account with a blank password in Visio (321081)
The information in this article applies to:
- Microsoft Data Engine (MSDE) 1.0, when used with:
- Microsoft Visio 2000 Enterprise Edition
- Microsoft SQL Server 2000 Desktop Engine (MSDE), when used with:
- Microsoft Visio Enterprise Network Tools
This article was previously published under Q321081 SYMPTOMS
When you install Microsoft Data Engine (MSDE) version 1.0 or Microsoft SQL Server Desktop Engine (MSDE2000), the installation uses SQL Authentication by default. In addition, the default user name in these cases is sa, and the default password is blank.
CAUSE
This problem may occur when either of the following conditions is true:
The Microsoft Data Engine (MSDE) version 1.0 is installed with the following products:
- Visio 2000 Enterprise Edition
- Microsoft Visio 2000 Enterprise Edition SR-1
-or-
The Microsoft SQL Server Desktop Engine (MSDE2000) is installed with Microsoft Visio Enterprise Network Tools (VENT).
RESOLUTION
Microsoft advises that this problem can pose a potential security issue.
To determine whether this applies to your system, try to log on to MSDE by using the OSQL utility from a command prompt. Use the following syntax:
If you receive the following message
Login failed for user 'sa'
the sa password is not blank, which indicates that the issue does not exist on your system.
However, if you receive the following message after you run the command
the security vulnerability applies to the system, and you must follow the steps in the next section to change the 'sa' password.
How to Secure the 'sa' Account with a Password
You can use the sp_password stored procedure to set up a password for the 'sa' account. For example, to change the 'sa' password from NULL to "Test!01", use code similar to the following:
EXEC sp_password NULL,'Test!01','sa'
To set a secure password on Microsoft Data Engine (MSDE) 'sa' account, follow these steps:
- At the command prompt, log on to MSDE as follows:
- When you receive the "1>" message, change the 'sa' account password by using the following command:
EXEC sp_password NULL,'Test!01','sa' Note In this command, 'Test!01' is a secure password that meets your organization's security guidelines and that you can remember.
Note The password for 'sa' account must be strong. For password advice, visit the following Microsoft Web site:
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.
Modification Type: | Minor | Last Reviewed: | 10/13/2006 |
---|
Keywords: | kbpending kbprb KB321081 |
---|
|