| Message ID | 20260720105647.2451180-1-deeratho@cisco.com |
|---|---|
| State | Superseded, archived |
| Delegated to: | Yoann Congal |
| Headers | show |
| Series | [wrynose,1/5] curl: ignore CVE-2026-4873 | expand |
On Mon Jul 20, 2026 at 12:56 PM CEST, Deepak Rathore via lists.openembedded.org wrote: > From: Deepak Rathore <deeratho@cisco.com> > > - CVE-2026-4873 affects curl before 8.20.0 when a connection negotiated with > clear-text IMAP, POP3, or SMTP can later be reused for a TLS-required > transfer. > - In wrynose, these protocols are optional PACKAGECONFIG entries and are not > enabled by default in curl_8.19.0.bb, so record this CVE as configuration-not-applicable > for the default recipe configuration. > > Reference: > - https://curl.se/docs/CVE-2026-4873.html > - https://nvd.nist.gov/vuln/detail/CVE-2026-4873 > > Signed-off-by: Deepak Rathore <deeratho@cisco.com> Hello, All that series should be tagged v2 with a changelog where appropriate: https://docs.yoctoproject.org/dev/contributor-guide/submit-changes.html#taking-patch-review-into-account Can you resend it with the v2 tag? You can use -v2 if you use git-send-email. Adding these tags/changelog helps me a lot when tracking patch status. Thanks!
Hi Yoann, I have sent the v2 of this curl patch series as below: 1. https://lists.openembedded.org/g/openembedded-core/topic/120357095 2. https://lists.openembedded.org/g/openembedded-core/topic/120357098 3. https://lists.openembedded.org/g/openembedded-core/topic/120357102 4. https://lists.openembedded.org/g/openembedded-core/topic/120357099 5. https://lists.openembedded.org/g/openembedded-core/topic/120357100 Thanks for your review. Regards, Deepak
On Mon Jul 20, 2026 at 1:34 PM CEST, Deepak Rathore -X (deeratho - E INFOCHIPS PRIVATE LIMITED at Cisco) wrote: > Hi Yoann, > > I have sent the v2 of this curl patch series as below: > > 1. > https://lists.openembedded.org/g/openembedded-core/topic/120357095 > 2. > https://lists.openembedded.org/g/openembedded-core/topic/120357098 > 3. > https://lists.openembedded.org/g/openembedded-core/topic/120357102 > 4. > https://lists.openembedded.org/g/openembedded-core/topic/120357099 > 5. > https://lists.openembedded.org/g/openembedded-core/topic/120357100 > > Thanks for your review. Thanks for the followup :) > > Regards, > Deepak > > ________________________________ > From: openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org> on behalf of Yoann Congal via lists.openembedded.org <yoann.congal=smile.fr@lists.openembedded.org> > Sent: Monday, July 20, 2026 4:47 PM > To: Deepak Rathore -X (deeratho - E INFOCHIPS PRIVATE LIMITED at Cisco) <deeratho@cisco.com>; openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org> > Subject: Re: [OE-core][wrynose][PATCH 1/5] curl: ignore CVE-2026-4873 > > On Mon Jul 20, 2026 at 12:56 PM CEST, Deepak Rathore via lists.openembedded.org wrote: >> From: Deepak Rathore <deeratho@cisco.com> >> >> - CVE-2026-4873 affects curl before 8.20.0 when a connection negotiated with >> clear-text IMAP, POP3, or SMTP can later be reused for a TLS-required >> transfer. >> - In wrynose, these protocols are optional PACKAGECONFIG entries and are not >> enabled by default in curl_8.19.0.bb, so record this CVE as configuration-not-applicable >> for the default recipe configuration. >> >> Reference: >> - https://curl.se/docs/CVE-2026-4873.html >> - https://nvd.nist.gov/vuln/detail/CVE-2026-4873 >> >> Signed-off-by: Deepak Rathore <deeratho@cisco.com> > > Hello, > > All that series should be tagged v2 with a changelog where appropriate: > https://docs.yoctoproject.org/dev/contributor-guide/submit-changes.html#taking-patch-review-into-account > > Can you resend it with the v2 tag? You can use -v2 if you use git-send-email. > > Adding these tags/changelog helps me a lot when tracking patch status. > > Thanks! > -- > Yoann Congal > Smile ECS
diff --git a/meta/recipes-support/curl/curl_8.19.0.bb b/meta/recipes-support/curl/curl_8.19.0.bb index 3326f478b5..1cda69401b 100644 --- a/meta/recipes-support/curl/curl_8.19.0.bb +++ b/meta/recipes-support/curl/curl_8.19.0.bb @@ -28,6 +28,7 @@ SRC_URI[sha256sum] = "4eb41489790d19e190d7ac7e18e82857cdd68af8f4e66b292ced562d33 # Curl has used many names over the years... CVE_PRODUCT = "haxx:curl haxx:libcurl curl:curl curl:libcurl libcurl:libcurl daniel_stenberg:curl" CVE_STATUS[CVE-2024-32928] = "ignored: CURLOPT_SSL_VERIFYPEER was disabled on google cloud services causing a potential man in the middle attack" +CVE_STATUS[CVE-2026-4873] = "${@bb.utils.contains_any('PACKAGECONFIG', 'imap pop3 smtp', 'unpatched', 'not-applicable-config: clear-text imap/pop3/smtp support is not enabled in PACKAGECONFIG', d)}" inherit autotools pkgconfig binconfig multilib_header ptest