Skip to content

Commit a49b2da

Browse files
committed
Sudo 1.9.2p2
--HG-- branch : 1.9
1 parent 54fd6e1 commit a49b2da

3 files changed

Lines changed: 29 additions & 10 deletions

File tree

NEWS

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
What's new in Sudo 1.9.12p2
2+
3+
* Fixed a compilation error on Linux/aarch64. GitHub issue #197.
4+
5+
* Fixed a potential crash introduced in the fix for GitHub issue #134.
6+
If a user's sudoers entry did not have any RunAs user's set,
7+
running "sudo -U otheruser -l" would dereference a NULL pointer.
8+
9+
* Fixed a bug introduced in sudo 1.9.12 that could prevent sudo
10+
from creating a I/O files when the "iolog_file" sudoers setting
11+
contains six or more Xs.
12+
13+
* Fixed a compilation issue on AIX with the native compiler.
14+
GitHub issue #231.
15+
16+
* Fixed CVE-2023-22809, a flaw in sudo's -e option (aka sudoedit)
17+
that could allow a malicious user with sudoedit privileges to
18+
edit arbitrary files.
19+
120
What's new in Sudo 1.9.12p1
221

322
* Sudo's configure script now does a better job of detecting when

configure

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.71 for sudo 1.9.12p1.
3+
# Generated by GNU Autoconf 2.71 for sudo 1.9.12p2.
44
#
55
# Report bugs to <https://bugzilla.sudo.ws/>.
66
#
@@ -621,8 +621,8 @@ MAKEFLAGS=
621621
# Identity of this package.
622622
PACKAGE_NAME='sudo'
623623
PACKAGE_TARNAME='sudo'
624-
PACKAGE_VERSION='1.9.12p1'
625-
PACKAGE_STRING='sudo 1.9.12p1'
624+
PACKAGE_VERSION='1.9.12p2'
625+
PACKAGE_STRING='sudo 1.9.12p2'
626626
PACKAGE_BUGREPORT='https://bugzilla.sudo.ws/'
627627
PACKAGE_URL=''
628628

@@ -1640,7 +1640,7 @@ if test "$ac_init_help" = "long"; then
16401640
# Omit some internal or obsolete options to make the list less imposing.
16411641
# This message is too long to be a string in the A/UX 3.1 sh.
16421642
cat <<_ACEOF
1643-
\`configure' configures sudo 1.9.12p1 to adapt to many kinds of systems.
1643+
\`configure' configures sudo 1.9.12p2 to adapt to many kinds of systems.
16441644

16451645
Usage: $0 [OPTION]... [VAR=VALUE]...
16461646

@@ -1706,7 +1706,7 @@ fi
17061706

17071707
if test -n "$ac_init_help"; then
17081708
case $ac_init_help in
1709-
short | recursive ) echo "Configuration of sudo 1.9.12p1:";;
1709+
short | recursive ) echo "Configuration of sudo 1.9.12p2:";;
17101710
esac
17111711
cat <<\_ACEOF
17121712

@@ -1996,7 +1996,7 @@ fi
19961996
test -n "$ac_init_help" && exit $ac_status
19971997
if $ac_init_version; then
19981998
cat <<\_ACEOF
1999-
sudo configure 1.9.12p1
1999+
sudo configure 1.9.12p2
20002000
generated by GNU Autoconf 2.71
20012001

20022002
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2653,7 +2653,7 @@ cat >config.log <<_ACEOF
26532653
This file contains any messages produced by compilers while
26542654
running configure, to aid debugging if configure makes a mistake.
26552655

2656-
It was created by sudo $as_me 1.9.12p1, which was
2656+
It was created by sudo $as_me 1.9.12p2, which was
26572657
generated by GNU Autoconf 2.71. Invocation command line was
26582658

26592659
$ $0$ac_configure_args_raw
@@ -33188,7 +33188,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3318833188
# report actual input values of CONFIG_FILES etc. instead of their
3318933189
# values after options handling.
3319033190
ac_log="
33191-
This file was extended by sudo $as_me 1.9.12p1, which was
33191+
This file was extended by sudo $as_me 1.9.12p2, which was
3319233192
generated by GNU Autoconf 2.71. Invocation command line was
3319333193

3319433194
CONFIG_FILES = $CONFIG_FILES
@@ -33256,7 +33256,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
3325633256
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3325733257
ac_cs_config='$ac_cs_config_escaped'
3325833258
ac_cs_version="\\
33259-
sudo config.status 1.9.12p1
33259+
sudo config.status 1.9.12p2
3326033260
configured by $0, generated by GNU Autoconf 2.71,
3326133261
with options \\"\$ac_cs_config\\"
3326233262

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dnl ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1818
dnl OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1919
dnl
2020
AC_PREREQ([2.70])
21-
AC_INIT([sudo], [1.9.12p1], [https://bugzilla.sudo.ws/], [sudo])
21+
AC_INIT([sudo], [1.9.12p2], [https://bugzilla.sudo.ws/], [sudo])
2222
AC_CONFIG_HEADERS([config.h pathnames.h])
2323
AC_CONFIG_SRCDIR([src/sudo.c])
2424
AC_CONFIG_AUX_DIR([scripts])

0 commit comments

Comments
 (0)