Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Dec 2015 12:12:57 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 203227] vuln.xml incorrectly flagging ruby20 as insecure
Message-ID:  <bug-203227-13-gYLwj7gpLX@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-203227-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-203227-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203227

Matteo Panella <m.panella@level28.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |m.panella@level28.org

--- Comment #21 from Matteo Panella <m.panella@level28.org> ---
(In reply to Terry Kennedy from comment #20)
> This has been broken again in the same manner by r404311. It needs the same fix
> that was developed for this PR.

Yup, just tested locally. Changing

    <affects>
      <package>
    <name>ruby</name>
    <range><lt>2.0.0.648,1</lt></range>
    <range><lt>2.1.8,1</lt></range>
    <range><lt>2.2.4,1</lt></range>
      </package>
    </affects>

to

    <affects>
      <package>
    <name>ruby</name>
        <name>ruby20</name>
    <range><ge>2.0,1</ge><lt>2.0.0.648,1</lt></range>
      </package>
      <package>
    <name>ruby</name>
        <name>ruby21</name>
    <range><ge>2.1,1</ge><lt>2.1.8,1</lt></range>
      </package>
      <package>
    <name>ruby</name>
        <name>ruby22</name>
    <range><ge>2.2,1</ge><lt>2.2.4,1</lt></range>
      </package>
    </affects>

clears the false positive (in my case, pkg audit reports ruby-2.1.8,1 as being
affected by 3b50881d-1860-4721-aab1-503290e23f6c).

-- 
You are receiving this mail because:
You are on the CC list for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-203227-13-gYLwj7gpLX>