Re: [PATCH] exec: Correct the permission check for unsafe exec
From: Jann Horn
Date: Fri May 16 2025 - 14:09:59 EST
On Fri, May 16, 2025 at 8:06 PM Jann Horn <jannh@xxxxxxxxxx> wrote:
> Like, I think currently a setuid binary like this is probably (?) not
> exploitable:
>
> int main(void) {
> execl("/bin/echo", "echo", "hello world");
> }
(bleh, of course what I meant to write here was
`execl("/bin/echo", "echo", "hello world", NULL);`)