Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Siddharth <sdoshi@mvista.com>
To: openembedded-core@lists.openembedded.org
Cc: Siddharth Doshi <sdoshi@mvista.com>
Subject: [OE-core][scarthgap][PATCH 04/13] vim: Security Fix for CVE-2026-47162
Date: Thu, 23 Jul 2026 01:48:56 +0530	[thread overview]
Message-ID: <20260722201905.491897-4-sdoshi@mvista.com> (raw)
In-Reply-To: <20260722201905.491897-1-sdoshi@mvista.com>

From: Siddharth Doshi <sdoshi@mvista.com>

Picking patch as per [1], and same patch is mentioned in [2]

References:
[1] https://nvd.nist.gov/vuln/detail/CVE-2026-47162
[2] https://security-tracker.debian.org/tracker/CVE-2026-47162

Signed-off-by: Siddharth Doshi <sdoshi@mvista.com>
---
 .../vim/files/CVE-2026-47162.patch            | 39 +++++++++++++++++++
 meta/recipes-support/vim/vim.inc              |  1 +
 2 files changed, 40 insertions(+)
 create mode 100644 meta/recipes-support/vim/files/CVE-2026-47162.patch

diff --git a/meta/recipes-support/vim/files/CVE-2026-47162.patch b/meta/recipes-support/vim/files/CVE-2026-47162.patch
new file mode 100644
index 0000000000..33f1ebbfd1
--- /dev/null
+++ b/meta/recipes-support/vim/files/CVE-2026-47162.patch
@@ -0,0 +1,39 @@
+From d254c3b584e19555f2aecc4886ae7c92c0acc199 Mon Sep 17 00:00:00 2001
+From: Christian Brabandt <cb@256bit.org>
+Date: Sun, 17 May 2026 18:53:48 +0000
+Subject: [PATCH 04/17] patch 9.2.0495: [security]: runtime(netrw): code
+ injection via NetrwBookHistSave()
+
+Problem:  [security]: runtime(netrw): code injection via
+          NetrwBookHistSave()
+Solution: Properly quote the directory name using string() function
+          (Srinivas Piskala Ganesh Babu)
+
+Github Security Advisory:
+https://github.com/vim/vim/security/advisories/GHSA-crm5-rh6j-2c7c
+
+Signed-off-by: Christian Brabandt <cb@256bit.org>
+
+Upstream-Status: Backport [https://github.com/vim/vim/commit/f08ab2f4d7d2947c8dd6c179ae08ee6146a2694b]
+CVE: CVE-2026-47162
+Signed-off-by: Siddharth Doshi <sdoshi@mvista.com>
+---
+ runtime/pack/dist/opt/netrw/autoload/netrw.vim | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/runtime/pack/dist/opt/netrw/autoload/netrw.vim b/runtime/pack/dist/opt/netrw/autoload/netrw.vim
+index e484de5c93..9014ca339b 100644
+--- a/runtime/pack/dist/opt/netrw/autoload/netrw.vim
++++ b/runtime/pack/dist/opt/netrw/autoload/netrw.vim
+@@ -2921,7 +2921,7 @@ function s:NetrwBookHistSave()
+         while ( first || cnt != g:netrw_dirhistcnt )
+             let lastline= lastline + 1
+             if exists("g:netrw_dirhist_{cnt}")
+-                call setline(lastline,'let g:netrw_dirhist_'.cnt."='".g:netrw_dirhist_{cnt}."'")
++                call setline(lastline,'let g:netrw_dirhist_'.cnt.'='.string(g:netrw_dirhist_{cnt}))
+             endif
+             let first   = 0
+             let cnt     = ( cnt - 1 ) % g:netrw_dirhistmax
+-- 
+2.44.4
+
diff --git a/meta/recipes-support/vim/vim.inc b/meta/recipes-support/vim/vim.inc
index 006ae9473f..7b0b140bf8 100644
--- a/meta/recipes-support/vim/vim.inc
+++ b/meta/recipes-support/vim/vim.inc
@@ -36,6 +36,7 @@ SRC_URI = "git://github.com/vim/vim.git;branch=master;protocol=https \
            file://CVE-2026-28422.patch \
            file://CVE-2026-42307.patch \
            file://CVE-2026-43961.patch \
+           file://CVE-2026-47162.patch \
            "
 
 PV .= ".1683"
-- 
2.34.1



  parent reply	other threads:[~2026-07-22 20:22 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-22 20:18 [OE-core][scarthgap][PATCH 01/13] vim: Security Fix for CVE-2026-28422 Siddharth
2026-07-22 20:18 ` [OE-core][scarthgap][PATCH 02/13] vim: Security Fix for CVE-2026-42307 Siddharth
2026-07-22 20:18 ` [OE-core][scarthgap][PATCH 03/13] vim: Security Fix for CVE-2026-43961 Siddharth
2026-07-22 20:18 ` Siddharth [this message]
2026-07-22 20:18 ` [OE-core][scarthgap][PATCH 05/13] vim: Security Fix for CVE-2026-47167 Siddharth
2026-07-22 20:18 ` [OE-core][scarthgap][PATCH 06/13] vim: Security Fix for CVE-2026-55693 Siddharth
2026-07-22 20:18 ` [OE-core][scarthgap][PATCH 07/13] vim: Security Fix for CVE-2026-55892 Siddharth
2026-07-22 20:19 ` [OE-core][scarthgap][PATCH 08/13] vim: Security Fix for CVE-2026-55895 Siddharth
2026-07-22 20:19 ` [OE-core][scarthgap][PATCH 09/13] vim: Security Fix for CVE-2026-57452 Siddharth
2026-07-22 20:19 ` [OE-core][scarthgap][PATCH 10/13] vim: Security Fix for CVE-2026-57455 Siddharth
2026-07-22 20:19 ` [OE-core][scarthgap][PATCH 11/13] vim: Security Fix for CVE-2026-59856 Siddharth
2026-07-22 20:19 ` [OE-core][scarthgap][PATCH 12/13] vim: Security Fix for CVE-2026-59857 Siddharth
2026-07-22 20:19 ` [OE-core][scarthgap][PATCH 13/13] vim: Security Fix for CVE-2026-59858 Siddharth
2026-07-22 23:48 ` [OE-core][scarthgap][PATCH 01/13] vim: Security Fix for CVE-2026-28422 Yoann Congal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260722201905.491897-4-sdoshi@mvista.com \
    --to=sdoshi@mvista.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox