Re: execve bug linux-2.2.12

From: visi0n (visi0n@AUX-TECH.ORG)
Date: Fri Oct 15 1999 - 20:20:14 PDT

  • Next message: S.Faust: "Re: The old "." problem"

            Whoa, I think the kernel 2.0.38 has the same bug, and one more,
    in the count() function to check how many argv's the bin have, he dont
    check for max number of argv's. This is worse than the bug found in
    2.2.12 execve().
    
    ===============================================================================
    visi0n
    AUX TECHNOLOGIES
    www.aux-tech.org
    
    On Fri, 15 Oct 1999 benat_private wrote:
    
    > While doing some debugging, I discovered a really nasty stack smash
    > bug in linux-2.2.12. The I haven't checked previous versions of the
    > 2.2 kernel but bug appears to be fixed in linux-2.2.13pre17.
    >
    > If I am reading this correctly, the implications of this bug could be
    > very dire. It may be possible to easily obtain root privilege on any
    > box running this kernel.
    >
    > Basically the problem is that the execve system call checks that argv
    > is a valid pointer but it doesn't check that all of the pointers in
    > argv array are valid pointers. If you pass bad pointers into the
    > execve system call you can corrupt the processes stack before it
    > returns to user space. Then when the kernel hands off the process to
    > the elf loader code and which begins to setup the processes it can be
    > made to execute some malicious code in place of the program's main
    > function.
    >
    > This is particularly scary because all of this occurs BEFORE the
    > program begins executing its main function and AFTER the program
    > returns to user space with privilege. Therefore no matter how well
    > audited the program may be it can be used as to gain privilege.
    >
    > The thing that tipped me off to the problem was that a program that I
    > exec'd was getting killed with SIGSEGV in __libc_start_main before my
    > main function began running.
    >
    > -ben
    >
    



    This archive was generated by hypermail 2b30 : Fri Apr 13 2001 - 15:07:43 PDT