CWE-285: CWE-285: Improper Authorization

ClassStable

Description

View on MITRE
Back to CWE Lookup

Technical Details

Structure
Simple
Vulnerability Mapping
DISCOURAGED

Applicable To

Languages
Languages
Platforms

Frequently Asked Questions

What is CWE-285: CWE-285: Improper Authorization?+

CWE-285: CWE-285: Improper Authorization is a Common Weakness Enumeration (CWE) entry maintained by MITRE. Description

What are the security consequences of CWE-285: Improper Authorization?+

If exploited, CWE-285 (CWE-285: Improper Authorization) it can compromise Read Application Data, Read Files or Directories, Modify Application Data, Modify Files or Directories, Gain Privileges or Assume Identity and Execute Unauthorized Code or Commands, leading to outcomes such as Scope: Confidentiality An attacker could read sensitive data, either by reading the data directly from a data store that is not properly restricted, or by accessing insufficiently-protected, privileged functionality to read the data., Scope: Integrity An attacker could modify sensitive data and either by writing the data directly to a data store that is not properly restricted.

How do you prevent or mitigate CWE-285: Improper Authorization?+

Recommended mitigations for CWE-285 include: Divide the product into anonymous, normal, privileged, and administrative areas. Reduce the attack surface by carefully mapping roles with data and functionality. Use role-based access control (RBAC) to enforce the roles at the appropriate boundaries. Note that this approach may not protect against horizontal authorization, i.e., it will not protect a user from attacking others with the same role. Ensure that you perform access control checks related to your business logic. These checks may be different than the access control checks that you apply to more generic resources such as files, connections, processes, memory, and database records. For example, a database may restrict access for medical records to a specific database user, but each record might only be intended to be accessible to the patient and the patient's doctor. Strategy: Libraries or Frameworks Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid. For example, consider using authorization frameworks such as the JAAS Authorization Framework [ REF-233 ] and the OWASP ESAPI Access Control feature [ REF-45 ].

Which programming languages are affected by CWE-285: Improper Authorization?+

CWE-285 commonly affects Languages. Note that weaknesses are often language-agnostic patterns, so secure coding practices apply broadly.

What is the difference between a CWE and a CVE?+

A CWE (Common Weakness Enumeration) like CWE-285 describes a category of software weakness — the underlying flaw type. A CVE (Common Vulnerabilities and Exposures) identifies a specific, real-world vulnerability in a particular product. In short, a CWE is the kind of mistake, and a CVE is an instance of that mistake being found in software.

Learn More