File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ From d3e8292d3c2ac5e78ee4f8cf7ea00241335159b4 Mon Sep 17 00:00:00 2001
2+ From: jykanase <v-jykanase@microsoft.com>
3+ Date: Wed, 29 Jan 2025 13:46:24 +0000
4+ Subject: [PATCH] CVE-2019-11358
5+
6+ Source Link: https://github.com/jquery/jquery/commit/753d591aea698e57d6db58c9f722cd0808619b1b
7+ ---
8+ doc/html/_static/jquery-3.2.1.js | 3 ++-
9+ 1 file changed, 2 insertions(+), 1 deletion(-)
10+
11+ diff --git a/doc/html/_static/jquery-3.2.1.js b/doc/html/_static/jquery-3.2.1.js
12+ index d2d8ca4..8bbd717 100644
13+ --- a/doc/html/_static/jquery-3.2.1.js
14+ +++ b/doc/html/_static/jquery-3.2.1.js
15+ @@ -229,8 +229,9 @@ jQuery.extend = jQuery.fn.extend = function() {
16+ src = target[ name ];
17+ copy = options[ name ];
18+
19+ + // Prevent Object.prototype pollution
20+ // Prevent never-ending loop
21+ - if ( target === copy ) {
22+ + if ( name === "__proto__" || target === copy ) {
23+ continue;
24+ }
25+
26+ - -
27+ 2.45.2
28+
Original file line number Diff line number Diff line change 11Summary: Crypto and SSL toolkit for Python
22Name: m2crypto
33Version: 0.38.0
4- Release: 3 %{?dist }
4+ Release: 4 %{?dist }
55License: MIT
66Vendor: Microsoft Corporation
77Distribution: Azure Linux
@@ -10,6 +10,7 @@ URL: https://pypi.python.org/pypi/M2Crypto
1010Source0: https://files.pythonhosted.org/packages/2c/52/c35ec79dd97a8ecf6b2bbd651df528abb47705def774a4a15b99977274e8/M2Crypto-%{version }.tar.gz
1111Patch0: 0001-skip-test_tls1_nok-which-cant-be-run-in-FIPS.patch
1212Patch1: CVE-2020-25657.patch
13+ Patch2: CVE-2019-11358.patch
1314
1415%description
1516M2Crypto is a crypto and SSL toolkit for Python
@@ -57,6 +58,9 @@ pip3 install parameterized
5758%{python3_sitelib }/*
5859
5960%changelog
61+ * Wed Jan 29 2025 Jyoti Kanase <v-jykanase@microsoft.com> - 0.38.0-4
62+ - Fix CVE-2019-11358
63+
6064* Tue Aug 16 2022 Muhammad Falak <mwani@microsoft.com> - 0.38.0-3
6165- Patch CVE-2020-25657
6266
You can’t perform that action at this time.
0 commit comments