Skip to content

Commit 23aff2b

Browse files
committed
Sudo 1.9.17p1
1 parent bc88e5c commit 23aff2b

File tree

3 files changed

+22
-10
lines changed

3 files changed

+22
-10
lines changed

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
What's new in Sudo 1.9.17p1
2+
3+
* Fixed CVE-2025-32462. Sudo's -h (--host) option could be specified
4+
when running a command or editing a file. This could enable a
5+
local privilege escalation attack if the sudoers file allows the
6+
user to run commands on a different host.
7+
8+
* Fixed CVE-2025-32463. An attacker can leverage sudo's -R
9+
(--chroot) option to run arbitrary commands as root, even if
10+
they are not listed in the sudoers file. The chroot support has
11+
been deprecated an will be removed entirely in a future release.
12+
113
What's new in Sudo 1.9.17
214

315
* Sudo now uses the NODEV macro consistently. Bug #1074.

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.72 for sudo 1.9.17.
3+
# Generated by GNU Autoconf 2.72 for sudo 1.9.17p1.
44
#
55
# Report bugs to <https://bugzilla.sudo.ws/>.
66
#
@@ -614,8 +614,8 @@ MAKEFLAGS=
614614
# Identity of this package.
615615
PACKAGE_NAME='sudo'
616616
PACKAGE_TARNAME='sudo'
617-
PACKAGE_VERSION='1.9.17'
618-
PACKAGE_STRING='sudo 1.9.17'
617+
PACKAGE_VERSION='1.9.17p1'
618+
PACKAGE_STRING='sudo 1.9.17p1'
619619
PACKAGE_BUGREPORT='https://bugzilla.sudo.ws/'
620620
PACKAGE_URL=''
621621

@@ -1651,7 +1651,7 @@ if test "$ac_init_help" = "long"; then
16511651
# Omit some internal or obsolete options to make the list less imposing.
16521652
# This message is too long to be a string in the A/UX 3.1 sh.
16531653
cat <<_ACEOF
1654-
'configure' configures sudo 1.9.17 to adapt to many kinds of systems.
1654+
'configure' configures sudo 1.9.17p1 to adapt to many kinds of systems.
16551655

16561656
Usage: $0 [OPTION]... [VAR=VALUE]...
16571657

@@ -1717,7 +1717,7 @@ fi
17171717

17181718
if test -n "$ac_init_help"; then
17191719
case $ac_init_help in
1720-
short | recursive ) echo "Configuration of sudo 1.9.17:";;
1720+
short | recursive ) echo "Configuration of sudo 1.9.17p1:";;
17211721
esac
17221722
cat <<\_ACEOF
17231723

@@ -2013,7 +2013,7 @@ fi
20132013
test -n "$ac_init_help" && exit $ac_status
20142014
if $ac_init_version; then
20152015
cat <<\_ACEOF
2016-
sudo configure 1.9.17
2016+
sudo configure 1.9.17p1
20172017
generated by GNU Autoconf 2.72
20182018

20192019
Copyright (C) 2023 Free Software Foundation, Inc.
@@ -2833,7 +2833,7 @@ cat >config.log <<_ACEOF
28332833
This file contains any messages produced by compilers while
28342834
running configure, to aid debugging if configure makes a mistake.
28352835

2836-
It was created by sudo $as_me 1.9.17, which was
2836+
It was created by sudo $as_me 1.9.17p1, which was
28372837
generated by GNU Autoconf 2.72. Invocation command line was
28382838

28392839
$ $0$ac_configure_args_raw
@@ -37071,7 +37071,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3707137071
# report actual input values of CONFIG_FILES etc. instead of their
3707237072
# values after options handling.
3707337073
ac_log="
37074-
This file was extended by sudo $as_me 1.9.17, which was
37074+
This file was extended by sudo $as_me 1.9.17p1, which was
3707537075
generated by GNU Autoconf 2.72. Invocation command line was
3707637076

3707737077
CONFIG_FILES = $CONFIG_FILES
@@ -37139,7 +37139,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
3713937139
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3714037140
ac_cs_config='$ac_cs_config_escaped'
3714137141
ac_cs_version="\\
37142-
sudo config.status 1.9.17
37142+
sudo config.status 1.9.17p1
3714337143
configured by $0, generated by GNU Autoconf 2.72,
3714437144
with options \\"\$ac_cs_config\\"
3714537145

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.69])
21-
AC_INIT([sudo], [1.9.17], [https://bugzilla.sudo.ws/], [sudo])
21+
AC_INIT([sudo], [1.9.17p1], [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)