The product assigns the wrong ownership, or does not properly verify the ownership, of an object or resource.
Impact: Gain Privileges or Assume Identity
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