Your message dated Thu, 07 Jul 2016 13:19:11 +0000
with message-id <[email protected]>
and subject line Bug#829210: Removed package(s) from unstable
has caused the Debian Bug report #771786,
regarding netenv: insecure use of /var/tmp
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
771786: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=771786
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: netenv
Version: 0.94.3-30
Tags: security
netenv uses /var/tmp/env for storing its state:
NETENV_FIL="/var/tmp/netenv"
# Create the netenv file if it doesn't exist yet (only if called by root).
[ `id -u` = "0" ] && touch -a $NETENV_FIL
# Security check
if [ "X`stat -c %u $NETENV_FIL`" != "X0" -o ! -f $NETENV_FIL ]; then
echo "netenv: $NETENV_FIL must be a regular file owned by root"
exit 1
fi
if [ "X$((0`stat -c %a $NETENV_FIL` & 022))" != "X0" ]; then
echo "netenv: Security check failed, fix $NETENV_FIL permissions"
exit 1
fi
/var/tmp is world-writable, so any local user could create
/var/tmp/netenv, preventing netenv from starting.
Moreover, on systems that lack hardlink protection
(/proc/sys/fs/protected_hardlinks), local user could create
/var/tmp/netenv as hardlink to an existing root-owned file, causing
overwrite of the file.
I'd strongly suggest to move the state file to /var/lib/netenv, as per
FHS.
--
Jakub Wilk
--- End Message ---
--- Begin Message ---
Version: 0.94.3-30+rm
Dear submitter,
as the package netenv has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/829210
The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)
--- End Message ---