Tag Archives: CVE-1999-1193

CWE-266 – Incorrect Privilege Assignment

Read Time:1 Minute, 12 Second

Description

A product incorrectly assigns a privilege to a particular actor, creating an unintended sphere of control for that actor.

Modes of Introduction:

– Architecture and Design

 

 

Related Weaknesses

CWE-269
CWE-286

 

Consequences

Access Control: Gain Privileges or Assume Identity

A user can access restricted functionality and/or sensitive information that may include administrative functionality and user accounts.

 

Potential Mitigations

Phase: Architecture and Design, Operation

Description: 

Very carefully manage the setting, management, and handling of privileges. Explicitly manage trust zones in the software.

Phase: Architecture and Design, Operation

Description: 

Run your code using the lowest privileges that are required to accomplish the necessary tasks [REF-76]. If possible, create isolated accounts with limited privileges that are only used for a single task. That way, a successful attack will not immediately give the attacker access to the rest of the software or its environment. For example, database applications rarely need to run as the database administrator, especially in day-to-day operations.

CVE References

  • CVE-2005-2741
    • Product allows users to grant themselves certain rights that can be used to escalate privileges.
  • CVE-2005-2496
    • Product uses group ID of a user instead of the group, causing it to run with different privileges. This is resultant from some other unknown issue.
  • CVE-2004-0274
    • Product mistakenly assigns a particular status to an entity, leading to increased privileges.

CWE-842 – Placement of User into Incorrect Group

Read Time:56 Second

Description

The software or the administrator places a user into an incorrect group.

If the incorrect group has more access or privileges than the intended group, the user might be able to bypass intended security policy to access unexpected resources or perform unexpected actions. The access-control system might not be able to detect malicious usage of this group membership.

Modes of Introduction:

– Implementation

Likelihood of Exploit:

 

Related Weaknesses

CWE-286

 

Consequences

Access Control: Gain Privileges or Assume Identity

 

Potential Mitigations

CVE References

 

  • CVE-1999-1193
    • Operating system assigns user to privileged wheel group, allowing the user to gain root privileges.
  • CVE-2010-3716
    • Chain: drafted web request allows the creation of users with arbitrary group membership.
  • CVE-2008-5397
    • Chain: improper processing of configuration options causes users to contain unintended group memberships.
  • CVE-2007-6644
    • CMS does not prevent remote administrators from promoting other users to the administrator group, in violation of the intended security model.
  • CVE-2007-3260
    • Product assigns members to the root group, allowing escalation of privileges.
  • CVE-2002-0080
    • Chain: daemon does not properly clear groups before dropping privileges.