Base · Medium

CWE-798: Use of Hard-coded Credentials

The product contains hard-coded credentials, such as a password or cryptographic key.

CWE-798 · Base Level ·20 CVEs ·5 Mitigations

Description

The product contains hard-coded credentials, such as a password or cryptographic key.

There are two main variations:

Potential Impact

Access Control

Bypass Protection Mechanism

Integrity, Confidentiality, Availability, Access Control, Other

Read Application Data, Gain Privileges or Assume Identity, Execute Unauthorized Code or Commands, Other

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 code examples attempt to verify a password using a hard-coded cryptographic key.
Bad
int VerifyAdmin(char *password) {
                        if (strcmp(password,"68af404b513073584c4b6f22b6c63e6b")) {
                              
                                 printf("Incorrect Password!\n");return(0);
                           }printf("Entering Diagnostic Mode...\n");return(1);
                     }
Bad
public boolean VerifyAdmin(String password) {if (password.equals("68af404b513073584c4b6f22b6c63e6b")) {System.out.println("Entering Diagnostic Mode...");return true;}System.out.println("Incorrect Password!");return false;
Bad
int VerifyAdmin(String password) {if (password.Equals("68af404b513073584c4b6f22b6c63e6b")) {Console.WriteLine("Entering Diagnostic Mode...");return(1);}Console.WriteLine("Incorrect Password!");return(0);}
The cryptographic key is within a hard-coded string value that is compared to the password. It is likely that an attacker will be able to read the key and compromise the system.
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.

Mitigations & Prevention

Architecture and Design

For outbound authentication: store passwords, keys, and other credentials 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 [REF-7]. In Windows environments, the Encrypted File System (EFS) may p

Architecture and Design

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

Architecture and Design

If the product must contain hard-coded credentials or they cannot be removed, perform access control checks and limit which entities can access the feature that requires the hard-coded credentials. For example, a feature might only be enabled through the system console instead of through a network connection.

Architecture and Design

For inbound authentication using passwords: apply strong one-way hashes to 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 handling an incoming password during authentication, take the hash of the password and compare it to the saved hash. Use randomly assigned salts for each separate hash that is generated. This increases t

Architecture and Design

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

Detection Methods

  • Black Box Moderate — Credential storage in configuration files is findable using black box methods, but the use of hard-coded credentials for an incoming authentication routine typically involves an account that is not visible outside of the code.
  • Automated Static Analysis — Automated white box techniques have been published for detecting hard-coded credentials for incoming authentication, but there is some expert disagreement regarding their effectiveness and applicability to a broad range of methods.
  • Manual Static Analysis — This weakness may be detectable using manual code analysis. Unless authentication is decentralized and applied throughout the product, there can be sufficient time for the analyst to find incoming authentication routines and examine the program logic looking for usage of hard-coded credentials. Conf
  • Manual Dynamic Analysis — For hard-coded credentials in incoming authentication: use monitoring tools that examine the product'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 product was not developed by you, or if you want to veri
  • Automated Static Analysis - Binary or Bytecode SOAR Partial — According to SOAR [REF-1479], the following detection techniques may be useful:
  • Manual Static Analysis - Binary or Bytecode High — According to SOAR [REF-1479], the following detection techniques may be useful:

Real-World CVE Examples

CVE IDDescription
CVE-2022-40263Software for biological cell analysus has hard-coded credentials, leading to leak of Protected Health Information (PHI)
CVE-2022-29953Condition Monitor firmware has a maintenance interface with hard-coded credentials
CVE-2022-29960Engineering Workstation uses hard-coded cryptographic keys that could allow for unathorized filesystem access and privilege escalation
CVE-2022-29964Distributed Control System (DCS) has hard-coded passwords for local shell access
CVE-2022-30997Programmable Logic Controller (PLC) has a maintenance service that uses undocumented, hard-coded credentials
CVE-2022-30314Firmware for a Safety Instrumented System (SIS) has hard-coded credentials for access to boot configuration
CVE-2022-30271Remote Terminal Unit (RTU) uses a hard-coded SSH private key that is likely to be used in typical deployments
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
CVE-2012-3503Installation script has a hard-coded secret token value, allowing attackers to bypass authentication
CVE-2010-2772SCADA system uses a hard-coded password to protect back-end database containing authorization information, exploited by Stuxnet worm
CVE-2010-2073FTP server library uses hard-coded usernames and passwords for three default accounts
CVE-2010-1573Chain: Router firmware uses hard-coded username and password for access to debug functionality, which can be used to execute arbitrary code
CVE-2008-2369Server uses hard-coded authentication key
CVE-2008-0961Backup product uses hard-coded username and password, allowing attackers to bypass authentication via the RPC interface

Showing 15 of 20 observed examples.

Taxonomy Mappings

  • The CERT Oracle Secure Coding Standard for Java (2011): MSC03-J — Never hard code sensitive information
  • OMG ASCSM: ASCSM-CWE-798 —
  • ISA/IEC 62443: Part 3-3 — Req SR 1.5
  • ISA/IEC 62443: Part 4-2 — Req CR 1.5

Frequently Asked Questions

What is CWE-798?

CWE-798 (Use of Hard-coded Credentials) is a software weakness identified by MITRE's Common Weakness Enumeration. It is classified as a Base-level weakness. The product contains hard-coded credentials, such as a password or cryptographic key.

How can CWE-798 be exploited?

Attackers can exploit CWE-798 (Use of Hard-coded Credentials) to bypass protection mechanism. This weakness is typically introduced during the Architecture and Design phase of software development.

How do I prevent CWE-798?

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

What is the severity of CWE-798?

CWE-798 is classified as a Base-level weakness (Medium abstraction). It has been observed in 20 real-world CVEs.