Description
The product uses hard-coded constants instead of symbolic names for security-critical values, which increases the likelihood of mistakes during code maintenance or security policy change.
If the developer does not find all occurrences of the hard-coded constants, an incorrect policy decision may be made if one of the constants is not changed. Making changes to these values will require code changes that may be difficult or impossible once the system is released to the field. In addition, these hard-coded values may become available to attackers if the code is ever disclosed.
Potential Impact
Other
Varies by Context, Quality Degradation, Reduce Maintainability
Demonstrative Examples
char buffer[1024];...fgets(buffer, 1024, stdin);enum { MAX_BUFFER_SIZE = 1024 };...char buffer[MAX_BUFFER_SIZE];...fgets(buffer, MAX_BUFFER_SIZE, stdin);Mitigations & Prevention
Avoid using hard-coded constants. Configuration files offer a more flexible solution.
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
Related Weaknesses
Taxonomy Mappings
- CERT C Secure Coding: DCL06-C — Use meaningful symbolic constants to represent literal values in program logic
Frequently Asked Questions
What is CWE-547?
CWE-547 (Use of Hard-coded, Security-relevant Constants) is a software weakness identified by MITRE's Common Weakness Enumeration. It is classified as a Base-level weakness. The product uses hard-coded constants instead of symbolic names for security-critical values, which increases the likelihood of mistakes during code maintenance or security policy change.
How can CWE-547 be exploited?
Attackers can exploit CWE-547 (Use of Hard-coded, Security-relevant Constants) to varies by context, quality degradation, reduce maintainability. This weakness is typically introduced during the Implementation phase of software development.
How do I prevent CWE-547?
Key mitigations include: Avoid using hard-coded constants. Configuration files offer a more flexible solution.
What is the severity of CWE-547?
CWE-547 is classified as a Base-level weakness (Medium abstraction). Its actual severity depends on the specific context and how the weakness manifests in your application.