Plain meaning
Start with the shortest useful explanation before going deeper.
A class of vulnerabilities where an attacker gains a higher level of authority than legitimately granted — for example, forging admin access, hijacking a program's upgrade authority, or obtaining a PDA signer without possessing the seeds that should gate it. On Solana, common vectors include missing signer checks (an account is treated as an authority without asserting is_signer), misconfigured multisig authority accounts, and upgrade authority mismanagement (leaving a program upgradeable by a hot wallet instead of a governance multisig or burning the upgrade authority entirely). Programs should enforce the principle of least privilege by using immutable upgrade authorities or time-locked governance for high-value programs.