CWE-282: Improper Ownership Management

Export to Word

Description

The product assigns the wrong ownership, or does not properly verify the ownership, of an object or resource.

Extended Description

N/A


ThreatScore

Threat Mapped score: 1.8

Industry: Finiancial

Threat priority: P4 - Informational (Low)


Observed Examples (CVEs)

Related Attack Patterns (CAPEC)


Attack TTPs

Malware

APTs (Intrusion Sets)

Modes of Introduction

Phase Note
Architecture and Design REALIZATION: This weakness is caused during implementation of an architectural security tactic.

Common Consequences

Potential Mitigations

Applicable Platforms


Demonstrative Examples

Intro: This function is part of a privileged program that takes input from users with potentially lower privileges.

Body: This code does not confirm that the process to be killed is owned by the requesting user, thus allowing an attacker to kill arbitrary processes.

def killProcess(processID): os.kill(processID, signal.SIGKILL)

Notes

← Back to CWE list