Skip to content

Commit 48911e6

Browse files
committed
Sudo 1.9.8p2
--HG-- branch : 1.9
1 parent a41e74a commit 48911e6

3 files changed

Lines changed: 26 additions & 10 deletions

File tree

NEWS

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
What's new in Sudo 1.9.8p2
2+
3+
* Fixed a potential out-of-bounds read with "sudo -i" when the
4+
target user's shell is bash. This is a regression introduced
5+
in sudo 1.9.8. Bug #998.
6+
7+
* sudo_logsrvd now only sends a log ID for first command of a session.
8+
There is no need to send the log ID for each sub-command.
9+
10+
* Fixed a few minor memory leaks in intercept mode.
11+
12+
* Fixed a problem with sudo_logsrvd in relay mode if "store_first"
13+
was enabled when handling sub-commands. A new zero-length journal
14+
file was created for each sub-command instead of simply using
15+
the existing journal file.
16+
117
What's new in Sudo 1.9.8p1
218

319
* Fixed support for passing a prompt (sudo -p) or a login class

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.8p1.
3+
# Generated by GNU Autoconf 2.71 for sudo 1.9.8p2.
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.8p1'
625-
PACKAGE_STRING='sudo 1.9.8p1'
624+
PACKAGE_VERSION='1.9.8p2'
625+
PACKAGE_STRING='sudo 1.9.8p2'
626626
PACKAGE_BUGREPORT='https://bugzilla.sudo.ws/'
627627
PACKAGE_URL=''
628628

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

16361636
Usage: $0 [OPTION]... [VAR=VALUE]...
16371637

@@ -1697,7 +1697,7 @@ fi
16971697

16981698
if test -n "$ac_init_help"; then
16991699
case $ac_init_help in
1700-
short | recursive ) echo "Configuration of sudo 1.9.8p1:";;
1700+
short | recursive ) echo "Configuration of sudo 1.9.8p2:";;
17011701
esac
17021702
cat <<\_ACEOF
17031703

@@ -1982,7 +1982,7 @@ fi
19821982
test -n "$ac_init_help" && exit $ac_status
19831983
if $ac_init_version; then
19841984
cat <<\_ACEOF
1985-
sudo configure 1.9.8p1
1985+
sudo configure 1.9.8p2
19861986
generated by GNU Autoconf 2.71
19871987

19881988
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2639,7 +2639,7 @@ cat >config.log <<_ACEOF
26392639
This file contains any messages produced by compilers while
26402640
running configure, to aid debugging if configure makes a mistake.
26412641

2642-
It was created by sudo $as_me 1.9.8p1, which was
2642+
It was created by sudo $as_me 1.9.8p2, which was
26432643
generated by GNU Autoconf 2.71. Invocation command line was
26442644

26452645
$ $0$ac_configure_args_raw
@@ -31497,7 +31497,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3149731497
# report actual input values of CONFIG_FILES etc. instead of their
3149831498
# values after options handling.
3149931499
ac_log="
31500-
This file was extended by sudo $as_me 1.9.8p1, which was
31500+
This file was extended by sudo $as_me 1.9.8p2, which was
3150131501
generated by GNU Autoconf 2.71. Invocation command line was
3150231502

3150331503
CONFIG_FILES = $CONFIG_FILES
@@ -31565,7 +31565,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
3156531565
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3156631566
ac_cs_config='$ac_cs_config_escaped'
3156731567
ac_cs_version="\\
31568-
sudo config.status 1.9.8p1
31568+
sudo config.status 1.9.8p2
3156931569
configured by $0, generated by GNU Autoconf 2.71,
3157031570
with options \\"\$ac_cs_config\\"
3157131571

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