CWE-1280: Access Control Check Implemented After Asset is Accessed

BaseIncomplete

A product's hardware-based access control check occurs after the asset has been accessed.

View on MITRE
Back to CWE Lookup

Extended Description

The product implements a hardware-based access control check. The asset should be accessible only after the check is successful. If, however, this operation is not atomic and the asset is accessed before the check is complete, the security of the system may be compromised.

Technical Details

Structure
Simple

Applicable To

Languages
VerilogVHDLNot Language-Specific
Platforms
Not OS-Specific

Frequently Asked Questions

What is CWE-1280: Access Control Check Implemented After Asset is Accessed?+

CWE-1280: Access Control Check Implemented After Asset is Accessed is a Common Weakness Enumeration (CWE) entry maintained by MITRE. A product's hardware-based access control check occurs after the asset has been accessed. The product implements a hardware-based access control check. The asset should be accessible only after the check is successful. If, however, this operation is not atomic and the asset is accessed before the check is complete, the security of the system may be compromised.

What are the security consequences of Access Control Check Implemented After Asset is Accessed?+

If exploited, CWE-1280 (Access Control Check Implemented After Asset is Accessed) it can compromise Access Control, Confidentiality and Integrity, leading to outcomes such as Modify Memory, Read Memory, Modify Application Data, Read Application Data, Gain Privileges or Assume Identity and Bypass Protection Mechanism.

How do you prevent or mitigate Access Control Check Implemented After Asset is Accessed?+

Recommended mitigations for CWE-1280 include: Implement the access control check first. Access should only be given to asset if agent is authorized.

Which programming languages are affected by Access Control Check Implemented After Asset is Accessed?+

CWE-1280 commonly affects Verilog, VHDL and Not Language-Specific. 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-1280 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