The product does not properly verify that a critical resource is owned by the proper entity.
Impact: Gain Privileges or Assume Identity
An attacker could gain unauthorized access to system resources.
Strategy: Separation of Privilege
pythonpython
#Check process owner against requesting user* if getProcessOwner(processID) == user: ``` os.kill(processID, signal.SIGKILL) return else: print("You cannot kill a process you don't own") return