Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Security Advisory?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  11 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Lance Albertson  
View profile  
 More options Oct 2 2005, 1:34 pm
Newsgroups: gnu.cfengine.help
From: Lance Albertson <ramer...@gentoo.org>
Date: Sun, 02 Oct 2005 12:34:39 -0500
Local: Sun, Oct 2 2005 1:34 pm
Subject: Security Advisory?

I just got a report that debian has released [1] a security fix for
cfengine. Is this something thats old or something thats new? I couldn't
find much information about it anywhere. Feel free to comment on the
gentoo bug [2].

Thanks!

[1] http://www.debian.org/security/2005/dsa-836
[2] http://bugs.gentoo.org/show_bug.cgi?id=107871
--
Lance Albertson <ramer...@gentoo.org>
Gentoo Infrastructure | Operations Manager

---
GPG Public Key:  <http://www.ramereth.net/lance.asc>
Key fingerprint: 0423 92F3 544A 1282 5AB1  4D07 416F A15D 27F4 B742

ramereth/irc.freenode.net

  signature.asc
< 1K Download

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jeff Sheltren  
View profile  
 More options Oct 2 2005, 7:36 pm
Newsgroups: gnu.cfengine.help
From: Jeff Sheltren <shelt...@cs.ucsb.edu>
Date: Sun, 2 Oct 2005 19:36:26 -0400
Local: Sun, Oct 2 2005 7:36 pm
Subject: Re: Security Advisory?
On Oct 2, 2005, at 1:34 PM, Lance Albertson wrote:

> I just got a report that debian has released [1] a security fix for
> cfengine. Is this something thats old or something thats new? I  
> couldn't
> find much information about it anywhere. Feel free to comment on the
> gentoo bug [2].

> Thanks!

> [1] http://www.debian.org/security/2005/dsa-836
> [2] http://bugs.gentoo.org/show_bug.cgi?id=107871
> --
> Lance Albertson <ramer...@gentoo.org>
> Gentoo Infrastructure | Operations Manager

I can't find any info on it either.  The CAN entry only shows  
'reserved' - not very helpful.  I can't figure out a way to see the  
patch without having access to a debian machine; anyone know how to  
do that (or have a debian box so you can show the patch contents)?

This looks like the patch:
* Applied patch by Javier Fernández-Sanguino Peña to fix insecure
      temporary file creation [debian/patches/010_CAN-2005-2960_tmpfile]

On another note, I just noticed that 2.1.16 is the current version on  
cfengine.org - did I just miss the announcement, or was there one?

-Jeff


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Brendan Strejcek  
View profile  
 More options Oct 2 2005, 8:45 pm
Newsgroups: gnu.cfengine.help
From: Brendan Strejcek <bren...@cs.uchicago.edu>
Date: Sun, 2 Oct 2005 19:45:49 -0500
Local: Sun, Oct 2 2005 8:45 pm
Subject: Re: Security Advisory?
See here for the patch:

http://security.debian.org/pool/updates/main/c/cfengine2/cfengine2_2....

That is linked to from http://www.debian.org/security/2005/dsa-836 .

It looks like a patch to a Debian-contributed shell script called vicf,
so I don't think general cfengine users need to worry.

For those not as familiar with Debian, here is how I figured that out:

    $ URL=http://security.debian.org/pool/updates/main/c/cfengine2
    $ wget -q $URL/cfengine2_2.1.14-1sarge1.diff.gz
    $ wget -q $URL/cfengine2_2.1.14-1sarge1.dsc
    $ wget -q $URL/cfengine2_2.1.14.orig.tar.gz
    $ dpkg-source -x cfengine2_2.1.14-1sarge1.dsc
    dpkg-source: extracting cfengine2 in cfengine2-2.1.14
    $ cd cfengine2-2.1.14/debian/patches
    $ ls
    010_CAN-2005-2960_tmpfile
    $

I included the whole patch below my sig.

Best,
Brendan

--
Senior System Administrator
The University of Chicago
Department of Computer Science
http://www.cs.uchicago.edu/people/brendan

diff -u -p -Nr --exclude CVS cfengine-2.1.14.orig/contrib/vicf.in cfengine-2.1.14/contrib/vicf.in
--- cfengine-2.1.14.orig/contrib/vicf.in        2005-02-08 12:48:56.000000000 +0100
+++ cfengine-2.1.14/contrib/vicf.in     2005-09-23 12:11:34.000000000 +0200
@@ -56,12 +56,13 @@ EdFile () {
     while [ "$editfile" = "n" ]
     do
        ${EDITOR} ${CFINPUTS}/.${file}.lock
-       cp /dev/null /tmp/cfparse.$$
-       $sbindir/cfengine --no-warn --parse-only --file ${CFINPUTS}/.${file}.lock > /tmp/cfparse.$$ 2>&1
-       if [ -s /tmp/cfparse.$$ ]
+        tmpfile=`mktemp -t tempfile.XXXXXX` || { echo "$0: Cannot create temporary file" >&2; exit 1;  }
+        trap " [ -f \"$tmpfile\" ] && /bin/rm -f -- \"$tmpfile\"" 0 1 2 3 13 15
+        $sbindir/cfengine --no-warn --parse-only --file ${CFINPUTS}/.${file}.lock > $tmpfile 2>&1
+        if [ -s $tmpfile ]
        then
                echo PARSE ERROR IN NEW INPUT-FILE:
-               cat /tmp/cfparse.$$
+               cat $tmpfile
                /usr/ucb/echo -n "Re-edit file? (Y/n) "
                read answer
                if [ "$answer" = "n" ]
@@ -75,7 +76,7 @@ EdFile () {
        fi
     done

-    rm -f /tmp/cfparse.$$ ${CFINPUTS}/.${file}.lock
+    rm -f ${CFINPUTS}/.${file}.lock
 }

 force=n


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jeff Sheltren  
View profile  
 More options Oct 2 2005, 9:21 pm
Newsgroups: gnu.cfengine.help
From: Jeff Sheltren <shelt...@cs.ucsb.edu>
Date: Sun, 2 Oct 2005 21:21:18 -0400
Local: Sun, Oct 2 2005 9:21 pm
Subject: Re: Security Advisory?

On Oct 2, 2005, at 8:45 PM, Brendan Strejcek wrote:

> It looks like a patch to a Debian-contributed shell script called  
> vicf,
> so I don't think general cfengine users need to worry.

> Best,
> Brendan

Hi Brendan, thanks a lot - glad to know it's not something I need to  
worry about :)

-Jeff


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mark Burgess  
View profile  
 More options Oct 3 2005, 2:38 am
Newsgroups: gnu.cfengine.help
From: Mark Burgess <Mark.Burg...@iu.hio.no>
Date: Mon, 03 Oct 2005 08:38:38 +0200
Local: Mon, Oct 3 2005 2:38 am
Subject: Re: Security Advisory?
The fix is for some third party shell scripts which I don't think anyone
uses and I am thinking of dumping. I did not announce 2.1.16 since it
contains nothing new. It is simply the patch release that has been in
svn for about 4 months. I am catching up.

M


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Announcements [Was: Re: Security Advisory?]" by Jeff Sheltren
Jeff Sheltren  
View profile  
 More options Oct 3 2005, 7:47 am
Newsgroups: gnu.cfengine.help
From: Jeff Sheltren <shelt...@cs.ucsb.edu>
Date: Mon, 3 Oct 2005 07:47:27 -0400
Local: Mon, Oct 3 2005 7:47 am
Subject: Announcements [Was: Re: Security Advisory?]
On Oct 3, 2005, at 2:38 AM, Mark Burgess wrote:

> The fix is for some third party shell scripts which I don't think  
> anyone
> uses and I am thinking of dumping. I did not announce 2.1.16 since it
> contains nothing new. It is simply the patch release that has been in
> svn for about 4 months. I am catching up.

> M

Hi Mark, I'd really appreciate if every new release was announced (no  
matter how trivial the update).  Either here or on a separate  
'announce' list.

Thanks,
Jeff


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Security Advisory?" by Chip Seraphine
Chip Seraphine  
View profile  
 More options Oct 3 2005, 9:48 am
Newsgroups: gnu.cfengine.help
From: Chip Seraphine <c...@trdlnk.com>
Date: Mon, 03 Oct 2005 08:48:05 -0500
Local: Mon, Oct 3 2005 9:48 am
Subject: Re: Security Advisory?

Downloading as we speak.  Sometimes bugfix releases are the most eagerly
awaited :)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "PrepModule patch (was: Security Advisory?)" by Cedric Ware
Cedric Ware  
View profile  
 More options Oct 6 2005, 1:57 pm
Newsgroups: gnu.cfengine.help
From: Cedric Ware <cedric.w...@enst.fr>
Date: Thu, 6 Oct 2005 19:57:46 +0200
Local: Thurs, Oct 6 2005 1:57 pm
Subject: PrepModule patch (was: Security Advisory?)

        Hello,

> uses and I am thinking of dumping. I did not announce 2.1.16 since it
> contains nothing new. It is simply the patch release that has been in
> svn for about 4 months. I am catching up.

I may be mistaken, but I believe our patch for correct CFALLCLASSES
initialization when a module is called through PrepModule was not
included.  The patch is in:
http://lists.gnu.org/archive/html/help-cfengine/2005-08/msg00181.html

In your Aug 30 reply to the aforementioned message, you mentioned it
would be included once it had been through quality control.  Did it
fail somehow?  Was there an action we should have taken, e.g. submit
the patch elsewhere than the mailing-list, maybe open an issue on
sourceforge?

                                        Thank you,
                                        Cedric Ware.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Security Advisory?" by Jeff Sheltren
Jeff Sheltren  
View profile  
 More options Oct 17 2005, 9:18 am
Newsgroups: gnu.cfengine.help
From: Jeff Sheltren <shelt...@cs.ucsb.edu>
Date: Mon, 17 Oct 2005 09:18:04 -0400
Local: Mon, Oct 17 2005 9:18 am
Subject: Re: Security Advisory?
On Oct 3, 2005, at 2:38 AM, Mark Burgess wrote:

> The fix is for some third party shell scripts which I don't think  
> anyone
> uses and I am thinking of dumping. I did not announce 2.1.16 since it
> contains nothing new. It is simply the patch release that has been in
> svn for about 4 months. I am catching up.

> M

Hi Mark, will this be patched/removed in the next cfengine release?

Thanks,
Jeff


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mark Burgess  
View profile  
 More options Oct 17 2005, 1:31 pm
Newsgroups: gnu.cfengine.help
From: Mark Burgess <Mark.Burg...@iu.hio.no>
Date: Mon, 17 Oct 2005 19:31:19 +0200
Local: Mon, Oct 17 2005 1:31 pm
Subject: Re: Security Advisory?

They were removed long ago -- only debian seem to keep thme on.

M


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jeff Sheltren  
View profile  
 More options Oct 17 2005, 3:30 pm
Newsgroups: gnu.cfengine.help
From: Jeff Sheltren <shelt...@cs.ucsb.edu>
Date: Mon, 17 Oct 2005 15:30:02 -0400
Local: Mon, Oct 17 2005 3:30 pm
Subject: Re: Security Advisory?
On Oct 17, 2005, at 1:31 PM, Mark Burgess wrote:

> They were removed long ago -- only debian seem to keep thme on.

> M

'vicf.in' is still in the contrib directory in both the 2.1.16  
tarball and in SVN.

$ tar ztf cfengine-2.1.16.tar.gz | grep vicf
cfengine-2.1.16/contrib/vicf.in
cfengine-2.1.16/contrib/README.vicf

-Jeff


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »