Re: Generic way to exploit an insecure /tmp file creation - Red Hat 7,8,9 (Re: Red Hat 9: free tickets)

From: Stephen Samuel (samuelat_private)
Date: Tue Jul 08 2003 - 17:13:21 PDT

  • Next message: Stephen Samuel: "Re: Generic way to exploit an insecure /tmp file creation - Red Hat 7,8,9 (Re: Red Hat 9: free tickets)"

    I actually *would* describe the bug below as a logwatch bug.
    If you have a uid=0 program calling shell scripts from
    data like filenames, those filenames should be sanitized.
    It would be easy enough to scan the filename for unexpected
    characters and refuse to use them on that basis.
    
    something as simple as:
    
    if ($command =~ /[^\w]){
    	carp "Unexpected filename: [[$LogFile]]. Not used\n"
    }else{
         	`/bin/cat $Command`;
    };
    
    I believe that PERL actually has a pragma that you can set that
    should cause it to complain about cases like this. (sorry --
    don't have my book here with me).
    
    Spybreak wrote:
    > On Wed, 2 Jul 2003, Michal Zalewski wrote:
    >>As far as I know, there was no neat and generic way to exploit an
    >>insecure /tmp file creation alone - well, until now.
    ....
    > What Logwatch basically does, is feeding the logfiles through filter
    > scripts and emailing the results to a designated user (root by default).
    > But the whole issue is in the way how it is done.
    ....
    > if ($FileText) {
    >    my $Command = $FileText . $FilterText . ">" . $TempDir . $LogFile;
    >    if ($Config{'debug'}>4) {
    >       print "\nPreprocessing LogFile: " . $LogFile . "\n" . $Command ."\n";
    >    }
    >    `/bin/cat $Command`;
    > }
    > 
    ....
    > It means if we create a file with a name of the form \`command\`
    > in one of these directories, the command gets executed with root privs,
    > when Logwatch is run by the cron daemon. And it doesn't matter, what the 
    > content of the created file is. What does matter is the filename.
    .....
    > While this is not a Logwatch bug by itself, because the filter-script
    > directories are writable only by root, it is a very helpful _flaw_
    > once we have an above mentioned insecure file creation issue in 
    > some privileged code, and provides an easy root access.
    
    -- 
    Stephen Samuel +1(604)876-0426                samuelat_private
    		   http://www.bcgreen.com/~samuel/
        Powerful committed communication. Transformation touching
            the jewel within each person and bring it to life.
    



    This archive was generated by hypermail 2b30 : Wed Jul 09 2003 - 12:55:46 PDT