mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
Pick patches per [1]. [1] https://security-tracker.debian.org/tracker/CVE-2026-24061 (From OE-Core rev: 042f02ff7072e9cf4b02a335d1d3186d68ba669b) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Paul Barker <paul@pbarker.dev>
83 lines
2.6 KiB
Diff
83 lines
2.6 KiB
Diff
From ccba9f748aa8d50a38d7748e2e60362edd6a32cc Mon Sep 17 00:00:00 2001
|
|
From: Simon Josefsson <simon@josefsson.org>
|
|
Date: Tue, 20 Jan 2026 14:02:39 +0100
|
|
Subject: [PATCH] telnetd: Sanitize all variable expansions
|
|
|
|
* telnetd/utility.c (sanitize): New function.
|
|
(_var_short_name): Use it for all variables.
|
|
|
|
CVE: CVE-2026-24061
|
|
Upstream-Status: Backport [https://codeberg.org/inetutils/inetutils/commit/ccba9f748aa8d50a38d7748e2e60362edd6a32cc]
|
|
Signed-off-by: Peter Marko <peter.marko@siemens.com>
|
|
---
|
|
telnetd/utility.c | 32 ++++++++++++++++++--------------
|
|
1 file changed, 18 insertions(+), 14 deletions(-)
|
|
|
|
diff --git a/telnetd/utility.c b/telnetd/utility.c
|
|
index c02cd0e6..b21ad961 100644
|
|
--- a/telnetd/utility.c
|
|
+++ b/telnetd/utility.c
|
|
@@ -1688,6 +1688,17 @@ static void _expand_cond (struct line_expander *exp);
|
|
static void _skip_block (struct line_expander *exp);
|
|
static void _expand_block (struct line_expander *exp);
|
|
|
|
+static char *
|
|
+sanitize (const char *u)
|
|
+{
|
|
+ /* Ignore values starting with '-' or containing shell metachars, as
|
|
+ they can cause trouble. */
|
|
+ if (u && *u != '-' && !u[strcspn (u, "\t\n !\"#$&'()*;<=>?[\\^`{|}~")])
|
|
+ return u;
|
|
+ else
|
|
+ return "";
|
|
+}
|
|
+
|
|
/* Expand a variable referenced by its short one-symbol name.
|
|
Input: exp->cp points to the variable name.
|
|
FIXME: not implemented */
|
|
@@ -1714,13 +1725,13 @@ _var_short_name (struct line_expander *exp)
|
|
return xstrdup (timebuf);
|
|
|
|
case 'h':
|
|
- return xstrdup (remote_hostname);
|
|
+ return xstrdup (sanitize (remote_hostname));
|
|
|
|
case 'l':
|
|
- return xstrdup (local_hostname);
|
|
+ return xstrdup (sanitize (local_hostname));
|
|
|
|
case 'L':
|
|
- return xstrdup (line);
|
|
+ return xstrdup (sanitize (line));
|
|
|
|
case 't':
|
|
q = strchr (line + 1, '/');
|
|
@@ -1728,23 +1739,16 @@ _var_short_name (struct line_expander *exp)
|
|
q++;
|
|
else
|
|
q = line;
|
|
- return xstrdup (q);
|
|
+ return xstrdup (sanitize (q));
|
|
|
|
case 'T':
|
|
- return terminaltype ? xstrdup (terminaltype) : NULL;
|
|
+ return terminaltype ? xstrdup (sanitize (terminaltype)) : NULL;
|
|
|
|
case 'u':
|
|
- return user_name ? xstrdup (user_name) : NULL;
|
|
+ return user_name ? xstrdup (sanitize (user_name)) : NULL;
|
|
|
|
case 'U':
|
|
- {
|
|
- /* Ignore user names starting with '-' or containing shell
|
|
- metachars, as they can cause trouble. */
|
|
- char const *u = getenv ("USER");
|
|
- return xstrdup ((u && *u != '-'
|
|
- && !u[strcspn (u, "\t\n !\"#$&'()*;<=>?[\\^`{|}~")])
|
|
- ? u : "");
|
|
- }
|
|
+ return xstrdup (sanitize (getenv ("USER")));
|
|
|
|
default:
|
|
exp->state = EXP_STATE_ERROR;
|