Skip to content

Commit f0e1a5c

Browse files
committed
Sudo 1.9.17p2
1 parent 26a1a75 commit f0e1a5c

File tree

3 files changed

+29
-10
lines changed

3 files changed

+29
-10
lines changed

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.17p2
2+
3+
* Fixed a bug introduced in sudo 1.9.16 that could result in sudo
4+
sending SIGHUP to all processes on the system in certain rare
5+
cases. The bug could manifest if sudo is running a command in
6+
a pseudo-terminal, sudo terminates the command due to an internal
7+
error, and the user's terminal is revoked. GitHub issue #458.
8+
9+
* Fixed a bug introduced in sudo 1.9.12 that caused sudo to abort
10+
when the "intercept" and "intercept_verify" options are enabled
11+
in sudoers and either the command line arguments or the environment
12+
contains a string larger than the page size (usually 4096). This
13+
only Linux affects systems that support the ptrace_readv_string()
14+
function. GitHub issue #453.
15+
16+
* Fixed a bug in sudo's configure script introduced in sudo 1.9.17
17+
that prevented mdoc-format man pages from being used on systems
18+
without the mandoc utility. Bug #1077.
19+
120
What's new in Sudo 1.9.17p1
221

322
* Fixed CVE-2025-32462. Sudo's -h (--host) option could be specified

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.17p1.
3+
# Generated by GNU Autoconf 2.72 for sudo 1.9.17p2.
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.17p1'
618-
PACKAGE_STRING='sudo 1.9.17p1'
617+
PACKAGE_VERSION='1.9.17p2'
618+
PACKAGE_STRING='sudo 1.9.17p2'
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.17p1 to adapt to many kinds of systems.
1654+
'configure' configures sudo 1.9.17p2 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.17p1:";;
1720+
short | recursive ) echo "Configuration of sudo 1.9.17p2:";;
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.17p1
2016+
sudo configure 1.9.17p2
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.17p1, which was
2836+
It was created by sudo $as_me 1.9.17p2, 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.17p1, which was
37074+
This file was extended by sudo $as_me 1.9.17p2, 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.17p1
37142+
sudo config.status 1.9.17p2
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.17p1], [https://bugzilla.sudo.ws/], [sudo])
21+
AC_INIT([sudo], [1.9.17p2], [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)