summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2022-06-17 17:45:34 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2022-07-11 17:18:07 +0200
commite63d7cdfdac78c6fd27e9e63150335767592b85e (patch)
tree739766fbef0d27275782776b94985f9775ec7934 /editors
parent3ad3aa6441ebaf817137051de2b74cb6b4379e7f (diff)
downloadbusybox-e63d7cdfdac78c6fd27e9e63150335767592b85e.tar.gz
awk: fix use after free (CVE-2022-30065)
fixes https://bugs.busybox.net/show_bug.cgi?id=14781 function old new delta evaluate 3343 3357 +14 Signed-off-by: Natanael Copa <ncopa@alpinelinux.org> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors')
-rw-r--r--editors/awk.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/editors/awk.c b/editors/awk.c
index 079d0bde5..728ee8685 100644
--- a/editors/awk.c
+++ b/editors/awk.c
@@ -3128,6 +3128,9 @@ static var *evaluate(node *op, var *res)
case XC( OC_MOVE ):
debug_printf_eval("MOVE\n");
+ /* make sure that we never return a temp var */
+ if (L.v == TMPVAR0)
+ L.v = res;
/* if source is a temporary string, jusk relink it to dest */
if (R.v == TMPVAR1
&& !(R.v->type & VF_NUMBER)