Description
The product stores a password in a configuration file that might be accessible to actors who do not know the password.
This can result in compromise of the system for which the password is used. An attacker could gain access to this file and learn the stored password or worse yet, change the password to one of their choosing.
Potential Impact
Access Control
Gain Privileges or Assume Identity
Demonstrative Examples
webapp.ldap.username = secretUsernamewebapp.ldap.password = secretPassword# Java Web App ResourceBundle properties file
...webapp.ldap.username=secretUsernamewebapp.ldap.password=secretPassword......<connectionStrings><add name="ud_DEV" connectionString="connectDB=uDB; uid=db2admin; pwd=password; dbalias=uDB;" providerName="System.Data.Odbc" /></connectionStrings>...Mitigations & Prevention
Avoid storing passwords in easily accessible locations.
Consider storing cryptographic hashes of passwords as an alternative to storing in plaintext.
Detection Methods
- 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 ID | Description |
|---|---|
| CVE-2022-38665 | A continuous delivery pipeline management tool stores an unencypted password in a configuration file. |
Related Weaknesses
Taxonomy Mappings
- 7 Pernicious Kingdoms: — Password Management: Password in Configuration File
Frequently Asked Questions
What is CWE-260?
CWE-260 (Password in Configuration File) is a software weakness identified by MITRE's Common Weakness Enumeration. It is classified as a Base-level weakness. The product stores a password in a configuration file that might be accessible to actors who do not know the password.
How can CWE-260 be exploited?
Attackers can exploit CWE-260 (Password in Configuration File) to gain privileges or assume identity. This weakness is typically introduced during the Architecture and Design, Implementation phase of software development.
How do I prevent CWE-260?
Key mitigations include: Avoid storing passwords in easily accessible locations.
What is the severity of CWE-260?
CWE-260 is classified as a Base-level weakness (Medium abstraction). It has been observed in 1 real-world CVEs.