CWE-1061: Insufficient Encapsulation

Export to Word

Description

The product does not sufficiently hide the internal representation and implementation details of data or methods, which might allow external components or modules to modify data unexpectedly, invoke unexpected functionality, or introduce dependencies that the programmer did not intend.

Extended Description

This issue makes it more difficult to maintain the product, which indirectly affects security by making it more difficult or time-consuming to find and/or fix vulnerabilities. It also might make it easier to introduce vulnerabilities.


ThreatScore

Threat Mapped score: 0.0

Industry: Finiancial

Threat priority: Unclassified


Observed Examples (CVEs)

Related Attack Patterns (CAPEC)

N/A


Attack TTPs

N/A

Modes of Introduction

Phase Note
None listed.

Common Consequences

Potential Mitigations

Applicable Platforms


Demonstrative Examples

Intro: The following example shows a basic user account class that includes member variables for the username and password as well as a public constructor for the class and a public method to authorize access to the user account.

Body: However, the member variables username and password are declared public and therefore will allow access and changes to the member variables to anyone with access to the object. These member variables should be declared private as shown below to prevent unauthorized access and changes.

#define MAX_PASSWORD_LENGTH 15 #define MAX_USERNAME_LENGTH 15 class UserAccount { public: UserAccount(char *username, char *password) { if ((strlen(username) > MAX_USERNAME_LENGTH) || (strlen(password) > MAX_PASSWORD_LENGTH)) { ExitError("Invalid username or password"); } strcpy(this->username, username); strcpy(this->password, password); } int authorizeAccess(char *username, char *password) { if ((strlen(username) > MAX_USERNAME_LENGTH) || (strlen(password) > MAX_PASSWORD_LENGTH)) { ExitError("Invalid username or password"); } // if the username and password in the input parameters are equal to // the username and password of this account class then authorize access if (strcmp(this->username, username) || strcmp(this->password, password)) return 0; // otherwise do not authorize access else return 1; } char username[MAX_USERNAME_LENGTH+1]; char password[MAX_PASSWORD_LENGTH+1]; };

Notes

← Back to CWE list