# CVE fixes, Redhat vs Rocky package versioning

**URL:** https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184
**Category:** Rocky Linux Help & Support
**Tags:** rocky-linux-8, rocky-linux-9
**Created:** [July 22, 2025, 11:12am UTC](https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184 "2025-07-22T11:12:01Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![luka](https://avatars.discourse-cdn.com/v4/letter/l/a587f6/32.png) [@luka](https://forums.rockylinux.org/u/luka)
#### Post date: [July 22, 2025, 11:12am UTC](https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184/1 "2025-07-22T11:12:01Z")

</div>

Hey there!  
In my environment i have several Rocky Linux 9 hosts, when it comes to vulnerability management I worked like this:

- I checked the results of the scan, namely CVE that is being detected based on package version
- Check up fixed package version on redhat security advisory
- Check the actual version of the package on the host. If it is higher or equal I am good

I wrongly assumed that Rocky and redhat have the same package versioning and rocky simply realeased the fix with a slight delay after redhat. Recently I’ve dug deeper and I have found differeneces in versioning of the fixed packages and that confused me. I want to describe on the example.

Let’s take CVE-2023-38545 related to curl

On redhat security advisory: [https://access.redhat.com/errata/RHSA-2023:6745](https://access.redhat.com/errata/RHSA-2023:6745)  
For RHEL 9, the cve is fixed in an update RHSA-2023:6745 and the curl version that is fixed is: curl-7.76.1-26.el9\_3.2.x86\_64.rpm  
Fixed: v 7.76.1-26

Then I looked for the channel log on pkgs website for rocky 9: [https://rockylinux.pkgs.org/9/rockylinux-baseos-x86\_64/curl-7.76.1-31.el9.x86\_64.rpm.html](https://rockylinux.pkgs.org/9/rockylinux-baseos-x86_64/curl-7.76.1-31.el9.x86_64.rpm.html)  
Fixed: v 7.76.1-28

 ![obraz](https://us1.discourse-cdn.com/flex020/uploads/rockylinux/original/2X/8/82c727eaa0b33be5e8e6d4b006205096e384ed4b.png)

And finally i checked rocky errata for rocky 9: RLSA-2023:5763  
Fixed: v 7.76.1-23

In brief package version that fixes CVE per source:

- redhat RHEL 9: v 26
- pkgs org for rocky linux 9: v 28
- rockylinux errata for rocky9: v 23

Obviously since I am using Rocky 9 in my environment I would use Rocky linux errata as a reference, but sometimes certain CVEs are found in redhat errata and in the same time they are not covered in rocky linux errata.

For example: CVE-2023-38408 related to openssh

In redhat advisory this cve is fixed in RHSA-2023:4412.  
The fixed version for RHEL 9 is openssh-8.7p1-30.el9\_2.x86\_64.rpm

On the other hand at rocky linux errata this CVE is only adressed in an updated related to Rocky Linux 8 ( RLSA-2023:4419 ) but not for Rocky Linux 9

How are you verifying vulnerable packages on your rocky linux machines. How do you refer this package versions? Can I safely reference the version to redhat advisory if CVE is not adressed in rocky linux errata?  
I intended to make this post more verbose however since I am fresh user I need to comply with limitations to link and images, nevertheless I hope its comprehensive.

---

<div class="post-metadata">

### Author: ![iwalker](https://sea2.discourse-cdn.com/flex020/user_avatar/forums.rockylinux.org/iwalker/32/2599_2.png) [@iwalker](https://forums.rockylinux.org/u/iwalker)
#### Post date: [July 22, 2025, 11:21am UTC](https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184/2 "2025-07-22T11:21:00Z")

</div>

Since Rocky is direct 1:1 with RHEL, then yes you can use the RHEL errata. Also, see this thread: [Apollo, Errata, & You: a CIQ OSPO request for comment](https://forums.rockylinux.org/t/apollo-errata-you-a-ciq-ospo-request-for-comment/18102) where there is ongoing work to get the Rocky errata up-to-date and maintained. At which point, once complete, you’ll be able to reference the Rocky errata.

You can also use commands like:

```auto
dnf changelog httpd | grep -i CVE

```

to see what CVE’s are fixed. You can be more verbose, and put a full/partial CVE number to check. Like using your openssh example for Rocky8:

```auto
[root@rocky8 ~]# dnf changelog openssh | grep 38408
  Related: CVE-2023-38408
  Resolves: CVE-2023-38408

```

---

<div class="post-metadata">

### Author: ![luka](https://avatars.discourse-cdn.com/v4/letter/l/a587f6/32.png) [@luka](https://forums.rockylinux.org/u/luka)
#### Post date: [July 22, 2025, 12:15pm UTC](https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184/3 "2025-07-22T12:15:54Z")

</div>

> [@iwalker](#):
>
> You can also use commands like:
> 
> `dnf changelog httpd | grep -i CVE`

Thanks! This one works as well:  
`rpm -q openssh --changelog | grep CVE`  
Any idea why there are differences in fixed versions across redhat and rocky linux erratas?

> [@luka](#):
>
> In brief package version that fixes CVE per source:
> 
> - redhat RHEL 9: v 26
> - pkgs org for rocky linux 9: v 28
> - rockylinux errata for rocky9: v 23

---

<div class="post-metadata">

### Author: ![iwalker](https://sea2.discourse-cdn.com/flex020/user_avatar/forums.rockylinux.org/iwalker/32/2599_2.png) [@iwalker](https://forums.rockylinux.org/u/iwalker)
#### Post date: [July 22, 2025, 12:31pm UTC](https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184/4 "2025-07-22T12:31:27Z")

</div>

As mentioned already and linked in my previous post, the existing Rocky errata is not accurate and there is work on something called Apollo to replace it. Hence, as also stated, until that work is complete you can look at RHEL errata.

---

<div class="post-metadata">

### Author: ![jlehtone](https://avatars.discourse-cdn.com/v4/letter/j/e9a140/32.png) [@jlehtone](https://forums.rockylinux.org/u/jlehtone)
#### Post date: [July 22, 2025, 1:08pm UTC](https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184/5 "2025-07-22T13:08:10Z")

</div>

CVE-2023-38545: [cve-details](https://access.redhat.com/security/cve/CVE-2023-38545)

- Fixed for RHEL 9.0 EUS 2023-10-13, curl version 7.76.1-14.el9\_0.9: [https://access.redhat.com/errata/RHSA-2023:5700](https://access.redhat.com/errata/RHSA-2023:5700)
- Fixed for RHEL 9 2023-10-17, curl version 7.76.1-23.el9\_2.4: [https://access.redhat.com/errata/RHSA-2023:5763](https://access.redhat.com/errata/RHSA-2023:5763) (but text says it is for RHEL 9.2 EUS)
- Fixed for RHEL 9 2023-11-07, curl version 7.76.1-26.el9\_3.2: [https://access.redhat.com/errata/RHSA-2023:6745](https://access.redhat.com/errata/RHSA-2023:6745)

RHEL 9.3 was released 2023-11-07.

The changelog for 7.76.1-31 from [pkgs.org](http://pkgs.org) has CVE-2023-38545 in 7.76.1-28.

* * *

RHEL has “development branch” (supposedly CentOS Stream).  
They create a separate branch for each point update (way before release).  
They backport fixes to every branch that they do maintain.  
The current ‘curl’ is clearly not 7.76.1-23.el9\_2.4 or 7.76.1-26.el9\_3.2 plus something; the development branch had got other stuff in before the CVE-2023-38545 patch. The el9\_2 and el9\_3 branches had their own version numbering.

* * *

As said, the reporting of Rocky errata is not perfect _yet_. It is totally plausible that it has got data from source like RHSA-2023:5763.

---

<div class="post-metadata">

### Author: ![luka](https://avatars.discourse-cdn.com/v4/letter/l/a587f6/32.png) [@luka](https://forums.rockylinux.org/u/luka)
#### Post date: [July 22, 2025, 1:48pm UTC](https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184/6 "2025-07-22T13:48:17Z")

</div>

> [@jlehtone](#):
>
> RHEL 9.3 was released 2023-11-07.
> 
> The changelog for 7.76.1-31 from [pkgs.org](http://pkgs.org) has CVE-2023-38545 in 7.76.1-28.
> 
> * * *
> 
> RHEL has “development branch” (supposedly CentOS Stream).  
> They create a separate branch for each point update (way before release).  
> They backport fixes to every branch that they do maintain.  
> The current ‘curl’ is clearly not 7.76.1-23.el9\_2.4 or 7.76.1-26.el9\_3.2 plus something; the development branch had got other stuff in before the CVE-2023-38545 patch. The el9\_2 and el9\_3 branches had their own version numbering.
> 
> * * *
> 
> As said, the reporting of Rocky errata is not perfect _yet_. It is totally plausible that it has got data from source like RHSA-2023:5763.

Since my post was quite limited beside few links and one image. I imagine you have spent some time checking each source. Thanks for the time spent I appreciate your work. Yes indeed i remember they made table for RHEL 9 twice on redhat where one of them was meant to be RHEL 9.2 EUS. That explains why rocky errata and redhat are mixed. Thank you. Still I wonder why on changelog for 7.76.1-31 from: [https://rockylinux.pkgs.org/9/rockylinux-baseos-x86\_64/curl-7.76.1-31.el9.x86\_64.rpm.html](https://rockylinux.pkgs.org/9/rockylinux-baseos-x86_64/curl-7.76.1-31.el9.x86_64.rpm.html) has fix for CVE-2023-38545 in 7.76.1-28 and not v26 or v23 but yet another different number.

---

<div class="post-metadata">

### Author: ![jlehtone](https://avatars.discourse-cdn.com/v4/letter/j/e9a140/32.png) [@jlehtone](https://forums.rockylinux.org/u/jlehtone)
#### Post date: [July 22, 2025, 8:05pm UTC](https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184/7 "2025-07-22T20:05:39Z")

</div>

> [@luka](#):
>
> Still I wonder

Lets say that the development branch had version 3.el9  
The el9\_2 did branch and got that: 3.el9  
Development branch got a two features as 4.el9 and 5.el9  
The el9\_3 did branch and got the 5.el9  
Development branch gets one more feature: 6.el9

CVE is found. Fix is implemented.  
The el9\_2 branch releases fixed version: 4.el9\_2 (to replace 3.el9)  
The el9\_3 branch releases fixed version: 6.el9\_3 (to replace 5.el9)  
The fix is added to development branch too as 7.el9

More development: 8.el9 and 9.el9. This is in the history of the package that is in el9\_6.

Does this make it clearer how we now see “7” and not “6” or “4”?

---

<div class="post-metadata">

### Author: ![luka](https://avatars.discourse-cdn.com/v4/letter/l/a587f6/32.png) [@luka](https://forums.rockylinux.org/u/luka)
#### Post date: [July 23, 2025, 8:39am UTC](https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184/8 "2025-07-23T08:39:29Z")

</div>

Yes, thank you for clarification. I reckon I get it now. So the branches named after the main (dev) containing subversions for example 9.x have independent versioning counter from the main release. In this particular scenario on [pkg.org](http://pkg.org) there is base Rocky Linux 9 OS (main) changelog. Whereas on rocky RLSA-2023:5763 and RHSA-2023:6745 there are versions 9\_2 and 9\_3 (lets ignore the possibility for redhat to misscalled RHEL9 with RHEL 9.2 EUS) and thus explains the differences in numbers.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex020/uploads/rockylinux/original/1X/91b7219eec10e30013422e4df76c1d898711a5d5.svg) [@system](https://forums.rockylinux.org/u/system)
#### Post date: [September 21, 2025, 8:40am UTC](https://forums.rockylinux.org/t/cve-fixes-redhat-vs-rocky-package-versioning/19184/9 "2025-09-21T08:40:05Z")

</div>

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.
