* [Buildroot] [PATCH] package/xterm: security bump to patch 376
@ 2022-11-19 13:45 Peter Korsgaard
2022-11-20 9:05 ` Yann E. MORIN
2022-11-23 9:47 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-11-19 13:45 UTC (permalink / raw)
To: buildroot
Fixes the following security issue:
CVE-2022-45063: xterm before 375 allows code execution via font ops, e.g.,
because an OSC 50 response may have Ctrl-g and therefore lead to command
execution within the vi line-editing mode of Zsh:
https://www.openwall.com/lists/oss-security/2022/11/10/1
Additionally, patch 376 fixes a null pointer access issue:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1022942
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/xterm/xterm.hash | 2 +-
package/xterm/xterm.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/xterm/xterm.hash b/package/xterm/xterm.hash
index 3f6ec765ce..12cd2e639b 100644
--- a/package/xterm/xterm.hash
+++ b/package/xterm/xterm.hash
@@ -1,4 +1,4 @@
# Locally calculated after checking pgp signature
-sha256 32f888277b19e28ebc0a3112bff000607c07bed0679caa0beebb36f9cad484f5 xterm-371.tgz
+sha256 1e5bb7aad068fb31d6d3cbb77f80c7ad1526cd4c956a4ddcf2c5cf28af5334e1 xterm-376.tgz
# Locally calculated
sha256 9521ef761474cd31ea406f56a751646a7b42a9287cdc6f2f8e52ed4c4d2a73e7 COPYING
diff --git a/package/xterm/xterm.mk b/package/xterm/xterm.mk
index 95984f1cf9..d01b608d99 100644
--- a/package/xterm/xterm.mk
+++ b/package/xterm/xterm.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XTERM_VERSION = 371
+XTERM_VERSION = 376
XTERM_SOURCE = xterm-$(XTERM_VERSION).tgz
XTERM_SITE = http://invisible-mirror.net/archives/xterm
XTERM_DEPENDENCIES = ncurses xlib_libXaw host-pkgconf
--
2.30.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH] package/xterm: security bump to patch 376
2022-11-19 13:45 [Buildroot] [PATCH] package/xterm: security bump to patch 376 Peter Korsgaard
@ 2022-11-20 9:05 ` Yann E. MORIN
2022-11-23 9:47 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2022-11-20 9:05 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: buildroot
Peter, All
On 2022-11-19 14:45 +0100, Peter Korsgaard spake thusly:
> Fixes the following security issue:
>
> CVE-2022-45063: xterm before 375 allows code execution via font ops, e.g.,
> because an OSC 50 response may have Ctrl-g and therefore lead to command
> execution within the vi line-editing mode of Zsh:
>
> https://www.openwall.com/lists/oss-security/2022/11/10/1
>
> Additionally, patch 376 fixes a null pointer access issue:
>
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1022942
>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/xterm/xterm.hash | 2 +-
> package/xterm/xterm.mk | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/package/xterm/xterm.hash b/package/xterm/xterm.hash
> index 3f6ec765ce..12cd2e639b 100644
> --- a/package/xterm/xterm.hash
> +++ b/package/xterm/xterm.hash
> @@ -1,4 +1,4 @@
> # Locally calculated after checking pgp signature
> -sha256 32f888277b19e28ebc0a3112bff000607c07bed0679caa0beebb36f9cad484f5 xterm-371.tgz
> +sha256 1e5bb7aad068fb31d6d3cbb77f80c7ad1526cd4c956a4ddcf2c5cf28af5334e1 xterm-376.tgz
> # Locally calculated
> sha256 9521ef761474cd31ea406f56a751646a7b42a9287cdc6f2f8e52ed4c4d2a73e7 COPYING
> diff --git a/package/xterm/xterm.mk b/package/xterm/xterm.mk
> index 95984f1cf9..d01b608d99 100644
> --- a/package/xterm/xterm.mk
> +++ b/package/xterm/xterm.mk
> @@ -4,7 +4,7 @@
> #
> ################################################################################
>
> -XTERM_VERSION = 371
> +XTERM_VERSION = 376
> XTERM_SOURCE = xterm-$(XTERM_VERSION).tgz
> XTERM_SITE = http://invisible-mirror.net/archives/xterm
> XTERM_DEPENDENCIES = ncurses xlib_libXaw host-pkgconf
> --
> 2.30.2
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH] package/xterm: security bump to patch 376
2022-11-19 13:45 [Buildroot] [PATCH] package/xterm: security bump to patch 376 Peter Korsgaard
2022-11-20 9:05 ` Yann E. MORIN
@ 2022-11-23 9:47 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-11-23 9:47 UTC (permalink / raw)
To: buildroot
>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:
> Fixes the following security issue:
> CVE-2022-45063: xterm before 375 allows code execution via font ops, e.g.,
> because an OSC 50 response may have Ctrl-g and therefore lead to command
> execution within the vi line-editing mode of Zsh:
> https://www.openwall.com/lists/oss-security/2022/11/10/1
> Additionally, patch 376 fixes a null pointer access issue:
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1022942
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Committed to 2022.08.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-11-23 9:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-19 13:45 [Buildroot] [PATCH] package/xterm: security bump to patch 376 Peter Korsgaard
2022-11-20 9:05 ` Yann E. MORIN
2022-11-23 9:47 ` Peter Korsgaard
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.