[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Bash-4.3 Official Patch 27
From: |
Eric Blake |
Subject: |
Re: Bash-4.3 Official Patch 27 |
Date: |
Sat, 27 Sep 2014 22:48:44 -0600 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.1.1 |
On 09/27/2014 08:50 PM, Chet Ramey wrote:
> BASH PATCH REPORT
> =================
> /* Don't import function names that are invalid identifiers from the
> environment, though we still allow them to be defined as shell
> variables. */
> ! if (absolute_program (tname) == 0 && (posixly_correct == 0 ||
> legal_identifier (tname)))
> ! parse_and_execute (temp_string, tname,
> SEVAL_NONINT|SEVAL_NOHIST|SEVAL_FUNCDEF|SEVAL_ONECMD);
This patch forbids importing function names containing '/' (yay!), and
we already established that bash has never been able to properly import
functions with names containing '='. But I'm assuming there will need
to be a followup patch to actually reject the attempt to create such
function names (that is, "bash -c 'a/b () { echo oops; }; a/b'" should
issue an error message instead of printing "oops"), so that we do not
have the confusing situation of being unable to pass all permitted
function names through an export/import cycle.
By the way, thanks for this patch - it plugs CVE-2014-7186,
CVE-2014-7187, and CVE-2014-6277 (and probably other parser crashes)
from remote exploits down to merely annoying local bugs that can no
longer be abused for privilege escalation. In other words, it is THIS
patch that plugs the Shell Shock issue, even though there are still more
patches needed to plug all of the parser holes that Shell Shock has
uncovered.
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
- Bash-4.3 Official Patch 27, Chet Ramey, 2014/09/27
- Re: Bash-4.3 Official Patch 27, becker . rg, 2014/09/28
- Re: Bash-4.3 Official Patch 27, becker . rg, 2014/09/28
- Re: Bash-4.3 Official Patch 27, Jon Seymour, 2014/09/28
- Re: Bash-4.3 Official Patch 27, Jon Seymour, 2014/09/28
- Re: Bash-4.3 Official Patch 27, Ángel González, 2014/09/28
- Re: Bash-4.3 Official Patch 27, Linda Walsh, 2014/09/28
- Re: Bash-4.3 Official Patch 27, Ángel González, 2014/09/29