mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
The vulnerable code was introduced in 3.44.0 via [1].
(See fix commit [2])
Also Debian says "not vulnerabele yet for 3.40.1 in [3]
[1] e1e67abc5c
[2] https://sqlite.org/src/info/498e3f1cf57f164f
[3] https://security-tracker.debian.org/tracker/CVE-2025-3277
(From OE-Core rev: ebacd5cd2827c1a9a45a92353518f9d976597526)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
26 lines
1.1 KiB
BlitzBasic
26 lines
1.1 KiB
BlitzBasic
require sqlite3.inc
|
|
|
|
LICENSE = "PD"
|
|
LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=786d3dc581eff03f4fd9e4a77ed00c66"
|
|
|
|
SRC_URI = "http://www.sqlite.org/2022/sqlite-autoconf-${SQLITE_PV}.tar.gz \
|
|
file://CVE-2022-35737.patch \
|
|
file://CVE-2022-46908.patch \
|
|
file://CVE-2023-36191.patch \
|
|
file://CVE-2023-7104.patch \
|
|
file://CVE-2025-29088.patch \
|
|
file://CVE-2025-6965.patch \
|
|
file://0001-This-branch-attempts-to-improve-the-detection-of-cov.patch \
|
|
file://CVE-2025-7458.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "5af07de982ba658fd91a03170c945f99c971f6955bc79df3266544373e39869c"
|
|
|
|
# -19242 is only an issue in specific development branch commits
|
|
CVE_CHECK_IGNORE += "CVE-2019-19242"
|
|
# This is believed to be iOS specific (https://groups.google.com/g/sqlite-dev/c/U7OjAbZO6LA)
|
|
CVE_CHECK_IGNORE += "CVE-2015-3717"
|
|
# Issue in an experimental extension we don't have/use. Fixed by https://sqlite.org/src/info/b1e0c22ec981cf5f
|
|
CVE_CHECK_IGNORE += "CVE-2021-36690"
|
|
# Issue was introduced in 3.44.0
|
|
CVE_CHECK_IGNORE += "CVE-2025-3277"
|