Variant · Low-Medium

CWE-259: Use of Hard-coded Password

The product contains a hard-coded password, which it uses for its own inbound authentication or for outbound communication to external components.

CWE-259 · Variant Level ·3 CVEs ·5 Mitigations

Description

The product contains a hard-coded password, which it uses for its own inbound authentication or for outbound communication to external components.

There are two main variations of a hard-coded password:

Potential Impact

Access Control

Gain Privileges or Assume Identity

Access Control

Gain Privileges or Assume Identity, Hide Activities, Reduce Maintainability

Demonstrative Examples

The following code uses a hard-coded password to connect to a database:
Bad
...DriverManager.getConnection(url, "scott", "tiger");...
This is an example of an external hard-coded password on the client-side of a connection. This code will run successfully, but anyone who has access to it will have access to the password. Once the program has shipped, there is no going back from the database user "scott" with a password of "tiger" unless the program is patched. A devious employee with access to this information can use it to break into the system. Even worse, if attackers have access to the bytecode for application, they can use the javap -c command to access the disassembled code, which will contain the values of the passwords used. The result of this operation might look something like the following for the example above:
Attack
javap -c ConnMngr.class22: ldc #36; //String jdbc:mysql://ixne.com/rxsql24: ldc #38; //String scott26: ldc #17; //String tiger
The following code is an example of an internal hard-coded password in the back-end:
Bad
int VerifyAdmin(char *password) {
                        if (strcmp(password, "Mew!")) {
                              
                                 printf("Incorrect Password!\n");return(0);
                           }printf("Entering Diagnostic Mode...\n");return(1);
                     }
Bad
int VerifyAdmin(String password) {if (!password.equals("Mew!")) {return(0);}//Diagnostic Modereturn(1);}
Every instance of this program can be placed into diagnostic mode with the same password. Even worse is the fact that if this program is distributed as a binary-only distribution, it is very difficult to change that password or disable this "functionality."
The following examples show a portion of properties and configuration files for Java and ASP.NET applications. The files include username and password information but they are stored in cleartext.
This Java example shows a properties file with a cleartext username / password pair.
Bad
# Java Web App ResourceBundle properties file
                     ...webapp.ldap.username=secretUsernamewebapp.ldap.password=secretPassword...
The following example shows a portion of a configuration file for an ASP.Net application. This configuration file includes username and password information for a connection to a database but the pair is stored in cleartext.
Bad
...<connectionStrings><add name="ud_DEV" connectionString="connectDB=uDB; uid=db2admin; pwd=password; dbalias=uDB;" providerName="System.Data.Odbc" /></connectionStrings>...
Username and password information should not be included in a configuration file or a properties file in cleartext as this will allow anyone who can read the file access to the resource. If possible, encrypt this information.
In 2022, the OT:ICEFALL study examined products by 10 different Operational Technology (OT) vendors. The researchers reported 56 vulnerabilities and said that the products were "insecure by design" [REF-1283]. If exploited, these vulnerabilities often allowed adversaries to change how the products operated, ranging from denial of service to changing the code that the products executed. Since these products were often used in industries such as power, electrical, water, and others, there could even be safety implications.
Multiple vendors used hard-coded credentials in their OT products.

Mitigations & Prevention

Architecture and Design

For outbound authentication: store passwords outside of the code in a strongly-protected, encrypted configuration file or database that is protected from access by all outsiders, including other local users on the same system. Properly protect the key (CWE-320). If you cannot use encryption to protect the file, then make sure that the permissions are as restrictive as possible.

Architecture and Design

For inbound authentication: Rather than hard-code a default username and password for first time logins, utilize a "first login" mode that requires the user to enter a unique strong password.

Architecture and Design

Perform access control checks and limit which entities can access the feature that requires the hard-coded password. For example, a feature might only be enabled through the system console instead of through a network connection.

Architecture and Design

For inbound authentication: apply strong one-way hashes to your passwords and store those hashes in a configuration file or database with appropriate access control. That way, theft of the file/database still requires the attacker to try to crack the password. When receiving an incoming password during authentication, take the hash of the password and compare it to the hash that you have saved. Use randomly assigned salts for each separate hash that you generate. This increas

Architecture and Design

For front-end to back-end connections: Three solutions are possible, although none are complete.

Detection Methods

  • Manual Analysis — This weakness can be detected using tools and techniques that require manual (human) analysis, such as penetration testing, threat modeling, and interactive tools that allow the tester to record and modify an active session.
  • Black Box — Use monitoring tools that examine the software's process as it interacts with the operating system and the network. This technique is useful in cases when source code is unavailable, if the software was not developed by you, or if you want to verify that the build phase did not introduce any new wea
  • Automated Static Analysis High — Automated static analysis, commonly referred to as Static Application Security Testing (SAST), can find some instances of this weakness by analyzing source code (or binary/compiled code) without having to execute it. Typically, this is done by building a model of data flow and control flow, then sea

Real-World CVE Examples

CVE IDDescription
CVE-2022-29964Distributed Control System (DCS) has hard-coded passwords for local shell access
CVE-2021-37555Telnet service for IoT feeder for dogs and cats has hard-coded password [REF-1288]
CVE-2021-35033Firmware for a WiFi router uses a hard-coded password for a BusyBox shell, allowing bypass of authentication through the UART port

Taxonomy Mappings

  • 7 Pernicious Kingdoms: — Password Management: Hard-Coded Password
  • CLASP: — Use of hard-coded password
  • OWASP Top Ten 2004: A3 — Broken Authentication and Session Management
  • The CERT Oracle Secure Coding Standard for Java (2011): MSC03-J — Never hard code sensitive information
  • Software Fault Patterns: SFP33 — Hardcoded sensitive data

Frequently Asked Questions

What is CWE-259?

CWE-259 (Use of Hard-coded Password) is a software weakness identified by MITRE's Common Weakness Enumeration. It is classified as a Variant-level weakness. The product contains a hard-coded password, which it uses for its own inbound authentication or for outbound communication to external components.

How can CWE-259 be exploited?

Attackers can exploit CWE-259 (Use of Hard-coded Password) to gain privileges or assume identity. This weakness is typically introduced during the Implementation, Architecture and Design phase of software development.

How do I prevent CWE-259?

Key mitigations include: For outbound authentication: store passwords outside of the code in a strongly-protected, encrypted configuration file or database that is protected from access by all outsiders, including other local

What is the severity of CWE-259?

CWE-259 is classified as a Variant-level weakness (Low-Medium abstraction). It has been observed in 3 real-world CVEs.