CWE-862: CWE-862: Missing Authorization

ClassStable🏆 #10 in Top 25 (2024)

Description

View on MITRE
1,168Related CVEs
15.60Severity Score
Back to CWE Lookup

Technical Details

Structure
Simple
Vulnerability Mapping
ALLOWED

Applicable To

Languages
Languages
Platforms

🏆 CWE Top 25 Historical Ranking

2023:#11
Score: 6.90
1,054 CVEs
2024:#10↑1
Score: 15.60
1,168 CVEs
Trend:Worsening (moved down 1 ranks)

Frequently Asked Questions

What is CWE-862: CWE-862: Missing Authorization?+

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

Is CWE-862 in the CWE Top 25 Most Dangerous Software Weaknesses?+

Yes. CWE-862 ranked #10 in the CWE Top 25 for 2024, associated with 1,168 CVEs that year. The CWE Top 25 highlights the most common and impactful software weaknesses based on real-world vulnerability data.

What are the security consequences of CWE-862: Missing Authorization?+

If exploited, CWE-862 (CWE-862: Missing Authorization) it can compromise Read Application Data, Read Files or Directories, Modify Application Data, Modify Files or Directories, Gain Privileges or Assume Identity and Bypass Protection Mechanism, 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 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 restricted.

How do you prevent or mitigate CWE-862: Missing Authorization?+

Recommended mitigations for CWE-862 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) [ REF-229 ] 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 access control checks are performed related to the business logic. These checks may be different than the access control checks that are applied 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 [ REF-7 ]. 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-862: Missing Authorization?+

CWE-862 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-862 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