diff options
| author | Brent Cook <busterb@gmail.com> | 2025-09-30 09:07:20 -0500 |
|---|---|---|
| committer | Brent Cook <busterb@gmail.com> | 2025-09-30 09:07:20 -0500 |
| commit | 9050de20a5930aebf8a919248bfd165c07434832 (patch) | |
| tree | 037ff7aba928d5f98d62075b591b8d8e5a28b8f4 | |
| parent | 2fd8337d13bec5de2e4e0246bc79753fba642a08 (diff) | |
| download | portable-OPENBSD_7_6.tar.gz portable-OPENBSD_7_6.tar.bz2 portable-OPENBSD_7_6.zip | |
LibreSSL 4.0.1v4.0.1OPENBSD_7_6
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | patches/opensslv.h | 18 |
2 files changed, 24 insertions, 0 deletions
| @@ -28,6 +28,12 @@ history is also available from Git. | |||
| 28 | 28 | ||
| 29 | LibreSSL Portable Release Notes: | 29 | LibreSSL Portable Release Notes: |
| 30 | 30 | ||
| 31 | 4.0.1 - Security release | ||
| 32 | |||
| 33 | * An incorrect length check can result in a 4-byte overwrite and an 8-byte | ||
| 34 | overread. From Stanislav Fort and Viktor Dukhovni via OpenSSL. | ||
| 35 | CVE-2025-9230. | ||
| 36 | |||
| 31 | 4.0.0 - Stable release | 37 | 4.0.0 - Stable release |
| 32 | 38 | ||
| 33 | * Portable changes | 39 | * Portable changes |
diff --git a/patches/opensslv.h b/patches/opensslv.h new file mode 100644 index 0000000..5a26e81 --- /dev/null +++ b/patches/opensslv.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* $OpenBSD: opensslv.h,v 1.79 2024/08/31 10:52:43 tb Exp $ */ | ||
| 2 | #ifndef HEADER_OPENSSLV_H | ||
| 3 | #define HEADER_OPENSSLV_H | ||
| 4 | |||
| 5 | /* These will change with each release of LibreSSL-portable */ | ||
| 6 | #define LIBRESSL_VERSION_NUMBER 0x4000100fL | ||
| 7 | /* ^ Patch starts here */ | ||
| 8 | #define LIBRESSL_VERSION_TEXT "LibreSSL 4.0.1" | ||
| 9 | |||
| 10 | /* These will never change */ | ||
| 11 | #define OPENSSL_VERSION_NUMBER 0x20000000L | ||
| 12 | #define OPENSSL_VERSION_TEXT LIBRESSL_VERSION_TEXT | ||
| 13 | #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT | ||
| 14 | |||
| 15 | #define SHLIB_VERSION_HISTORY "" | ||
| 16 | #define SHLIB_VERSION_NUMBER "1.0.0" | ||
| 17 | |||
| 18 | #endif /* HEADER_OPENSSLV_H */ | ||
