Hello,
I’m working on addressing CVE-2023-45288 on a service that uses Percona. I noticed that this issue was resolved in the latest version (v3.6.0), but after reviewing the Dockerfile for our service, I found that instead of installing the latest version, it’s still installing version 3.5.7-1.el7 for some unknown reason. As a result, the vulnerability persists.
Here’s the relevant part of the Dockerfile that installs Percona Toolkit:
....
FROM amazonlinux:2 as release
# Percona + SQL installs
RUN yum update -y && \
yum upgrade -y
RUN yum install -y https://repo.percona.com/yum/percona-release-latest.noarch.rpm && \
percona-release enable pdps-8x-innovation
RUN yum update -y && yum install -y percona-toolkit
...
We’re wondering if there’s a possibility that some of the links in percona-release-latest.noarch.rpm
might be broken or outdated, but we’re not certain. Do you have any insights on this?