public inbox for buildroot@busybox.net
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] cve-check: fix CVE URL format
@ 2026-02-24 13:33 Fabien Lehoussel via buildroot
  2026-02-24 14:08 ` Thomas Perale via buildroot
  2026-03-27 10:02 ` Thomas Perale via buildroot
  0 siblings, 2 replies; 4+ messages in thread
From: Fabien Lehoussel via buildroot @ 2026-02-24 13:33 UTC (permalink / raw)
  To: buildroot; +Cc: Thomas Perale, Fabien Lehoussel

Update NVD source to full URL format following CycloneDC 1.6
specification [1].

Before: "url": "https://nvd.nist.gov/"
After:  "url": "https://nvd.nist.gov/vuln/detail/CVE-XXXX"

[1] https://cyclonedx.org/docs/1.6/json/#vulnerabilities_items_source_url

Signed-off-by: Fabien Lehoussel <fabien.lehoussel@smile.fr>
---
 support/scripts/cve-check | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/scripts/cve-check b/support/scripts/cve-check
index ff14e4b238..bcd970bad8 100755
--- a/support/scripts/cve-check
+++ b/support/scripts/cve-check
@@ -131,7 +131,7 @@ def nvd_cve_to_cdx_vulnerability(nvd_cve):
         "description": cve_api_get_lang_from_list(nvd_cve.get("descriptions", [])) or "",
         "source": {
             "name": "NVD",
-            "url": "https://nvd.nist.gov/"
+            "url": f"https://nvd.nist.gov/vuln/detail/{nvd_cve['id']}"
         },
         **({
             "published": nvd_cve["published"],
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/1] cve-check: fix CVE URL format
  2026-02-24 13:33 [Buildroot] [PATCH 1/1] cve-check: fix CVE URL format Fabien Lehoussel via buildroot
@ 2026-02-24 14:08 ` Thomas Perale via buildroot
  2026-03-17 21:11   ` Romain Naour via buildroot
  2026-03-27 10:02 ` Thomas Perale via buildroot
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Perale via buildroot @ 2026-02-24 14:08 UTC (permalink / raw)
  To: Fabien Lehoussel; +Cc: Thomas Perale, buildroot

Thanks Fabien.

Acked-By: Thomas Perale <thomas.perale@mind.be>

In reply of:
> Update NVD source to full URL format following CycloneDC 1.6
> specification [1].
> 
> Before: "url": "https://nvd.nist.gov/"
> After:  "url": "https://nvd.nist.gov/vuln/detail/CVE-XXXX"
> 
> [1] https://cyclonedx.org/docs/1.6/json/#vulnerabilities_items_source_url
> 
> Signed-off-by: Fabien Lehoussel <fabien.lehoussel@smile.fr>

> ---
>  support/scripts/cve-check | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/support/scripts/cve-check b/support/scripts/cve-check
> index ff14e4b238..bcd970bad8 100755
> --- a/support/scripts/cve-check
> +++ b/support/scripts/cve-check
> @@ -131,7 +131,7 @@ def nvd_cve_to_cdx_vulnerability(nvd_cve):
>          "description": cve_api_get_lang_from_list(nvd_cve.get("descriptions", [])) or "",
>          "source": {
>              "name": "NVD",
> -            "url": "https://nvd.nist.gov/"
> +            "url": f"https://nvd.nist.gov/vuln/detail/{nvd_cve['id']}"
>          },
>          **({
>              "published": nvd_cve["published"],
> -- 
> 2.43.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/1] cve-check: fix CVE URL format
  2026-02-24 14:08 ` Thomas Perale via buildroot
@ 2026-03-17 21:11   ` Romain Naour via buildroot
  0 siblings, 0 replies; 4+ messages in thread
From: Romain Naour via buildroot @ 2026-03-17 21:11 UTC (permalink / raw)
  To: Thomas Perale, Fabien Lehoussel; +Cc: buildroot

Hello Fabien, Thomas, All,

Le 24/02/2026 à 15:08, Thomas Perale via buildroot a écrit :
> Thanks Fabien.
> 
> Acked-By: Thomas Perale <thomas.perale@mind.be>

Applied to master, thanks.

Best regards,
Romain


> 
> In reply of:
>> Update NVD source to full URL format following CycloneDC 1.6
>> specification [1].
>>
>> Before: "url": "https://nvd.nist.gov/"
>> After:  "url": "https://nvd.nist.gov/vuln/detail/CVE-XXXX"
>>
>> [1] https://cyclonedx.org/docs/1.6/json/#vulnerabilities_items_source_url
>>
>> Signed-off-by: Fabien Lehoussel <fabien.lehoussel@smile.fr>
> 
>> ---
>>  support/scripts/cve-check | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/support/scripts/cve-check b/support/scripts/cve-check
>> index ff14e4b238..bcd970bad8 100755
>> --- a/support/scripts/cve-check
>> +++ b/support/scripts/cve-check
>> @@ -131,7 +131,7 @@ def nvd_cve_to_cdx_vulnerability(nvd_cve):
>>          "description": cve_api_get_lang_from_list(nvd_cve.get("descriptions", [])) or "",
>>          "source": {
>>              "name": "NVD",
>> -            "url": "https://nvd.nist.gov/"
>> +            "url": f"https://nvd.nist.gov/vuln/detail/{nvd_cve['id']}"
>>          },
>>          **({
>>              "published": nvd_cve["published"],
>> -- 
>> 2.43.0
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot@buildroot.org
>> https://lists.buildroot.org/mailman/listinfo/buildroot
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/1] cve-check: fix CVE URL format
  2026-02-24 13:33 [Buildroot] [PATCH 1/1] cve-check: fix CVE URL format Fabien Lehoussel via buildroot
  2026-02-24 14:08 ` Thomas Perale via buildroot
@ 2026-03-27 10:02 ` Thomas Perale via buildroot
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Perale via buildroot @ 2026-03-27 10:02 UTC (permalink / raw)
  To: Fabien Lehoussel; +Cc: Thomas Perale, buildroot

In reply of:
> Update NVD source to full URL format following CycloneDC 1.6
> specification [1].
> 
> Before: "url": "https://nvd.nist.gov/"
> After:  "url": "https://nvd.nist.gov/vuln/detail/CVE-XXXX"
> 
> [1] https://cyclonedx.org/docs/1.6/json/#vulnerabilities_items_source_url
> 
> Signed-off-by: Fabien Lehoussel <fabien.lehoussel@smile.fr>

Applied to 2026.02.x & 2025.02.x. Thanks

> ---
>  support/scripts/cve-check | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/support/scripts/cve-check b/support/scripts/cve-check
> index ff14e4b238..bcd970bad8 100755
> --- a/support/scripts/cve-check
> +++ b/support/scripts/cve-check
> @@ -131,7 +131,7 @@ def nvd_cve_to_cdx_vulnerability(nvd_cve):
>          "description": cve_api_get_lang_from_list(nvd_cve.get("descriptions", [])) or "",
>          "source": {
>              "name": "NVD",
> -            "url": "https://nvd.nist.gov/"
> +            "url": f"https://nvd.nist.gov/vuln/detail/{nvd_cve['id']}"
>          },
>          **({
>              "published": nvd_cve["published"],
> -- 
> 2.43.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-03-27 10:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-24 13:33 [Buildroot] [PATCH 1/1] cve-check: fix CVE URL format Fabien Lehoussel via buildroot
2026-02-24 14:08 ` Thomas Perale via buildroot
2026-03-17 21:11   ` Romain Naour via buildroot
2026-03-27 10:02 ` Thomas Perale via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox