* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' [not found] <CAJw81dZZmX=z-YFDwvEkuWR6xH+cf=mR9h-fcZTphwdXWrA5wg@mail.gmail.com> @ 2019-10-15 22:27 ` Stefan Kangas [not found] ` <CADwFkmnqfbsEEWkWMA2xnN1O+-JsTcCKrSYv0e3g1+jXrxRY5g@mail.gmail.com> 1 sibling, 0 replies; 13+ messages in thread From: Stefan Kangas @ 2019-10-15 22:27 UTC (permalink / raw) To: adam plaice; +Cc: 37656, Emacs developers adam plaice <plaice.adam+lists@gmail.com> writes: > Since the bug allows an attacker to execute arbitrary code if the > victim opens a payload file, and hence opening any file from an > untrusted source becomes dangerous, it seems to be rather > serious. Thanks for raising this here. I agree that this is serious, and we should treat it accordingly. The below patch seems to fix it by disabling the feature it exploits. A workaround is to add this to your init file: (setq enable-local-variables nil) Best regards, Stefan Kangas diff --git a/lisp/files.el b/lisp/files.el index 40807617fa..550227b21a 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -3068,7 +3068,7 @@ set-auto-mode (if (save-excursion (search-forward ":" end t)) ;; Find all specifications for the `mode:' variable ;; and execute them left to right. - (while (let ((case-fold-search t)) + (when (let ((case-fold-search t)) (or (and (looking-at "mode:") (goto-char (match-end 0))) (re-search-forward "[ \t;]mode:" end t))) ^ permalink raw reply related [flat|nested] 13+ messages in thread
[parent not found: <CADwFkmnqfbsEEWkWMA2xnN1O+-JsTcCKrSYv0e3g1+jXrxRY5g@mail.gmail.com>]
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' [not found] ` <CADwFkmnqfbsEEWkWMA2xnN1O+-JsTcCKrSYv0e3g1+jXrxRY5g@mail.gmail.com> @ 2019-10-15 22:55 ` Stefan Kangas 2019-10-15 23:17 ` Stefan Kangas ` (3 more replies) 0 siblings, 4 replies; 13+ messages in thread From: Stefan Kangas @ 2019-10-15 22:55 UTC (permalink / raw) To: adam plaice; +Cc: 37656, Emacs developers [-- Attachment #1: Type: text/plain, Size: 292 bytes --] Stefan Kangas <stefan@marxist.se> writes: > The below patch seems to fix it by disabling the feature it exploits. Here is a more complete patch. Does it look like the right fix? I think the relevant node in the documentation is: (info "(emacs)Choosing Modes") Best regards, Stefan Kangas [-- Attachment #2: 0001-Remove-support-for-more-than-one-mode-in-file-local-.patch --] [-- Type: application/octet-stream, Size: 2032 bytes --] From d640efe970ed1fdd5f1262d09bfd6d564c8e7f80 Mon Sep 17 00:00:00 2001 From: Stefan Kangas <stefankangas@gmail.com> Date: Wed, 16 Oct 2019 00:44:56 +0200 Subject: [PATCH] Remove support for more than one mode in file local variables * lisp/files.el (set-auto-mode): Remove support for specifying more than one major mode in file local variables. (Bug#37656) * etc/NEWS: Announce it. --- etc/NEWS | 7 +++++++ lisp/files.el | 13 +++++++------ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/etc/NEWS b/etc/NEWS index d06f0a5952..d0cec05143 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -197,6 +197,13 @@ the new version of the file again.) \f * Changes in Emacs 27.1 +--- +** File local variables can now specify only one major mode. +Previously, it was possible to specify more than one major mode using +file local variables. A security issue was discovered where an +attacker could exploit this feature using a specially crafted file, +which could lead to arbitrary code execution when the file was opened. + ** emacsclient +++ diff --git a/lisp/files.el b/lisp/files.el index 40807617fa..41c1ba60ed 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -3066,12 +3066,13 @@ set-auto-mode try-locals (setq end (set-auto-mode-1)) (if (save-excursion (search-forward ":" end t)) - ;; Find all specifications for the `mode:' variable - ;; and execute them left to right. - (while (let ((case-fold-search t)) - (or (and (looking-at "mode:") - (goto-char (match-end 0))) - (re-search-forward "[ \t;]mode:" end t))) + ;; Find the specification of the `mode:' variable and + ;; execute it. We never want to execute more than one + ;; mode for security reasons. (Bug#37656) + (when (let ((case-fold-search t)) + (or (and (looking-at "mode:") + (goto-char (match-end 0))) + (re-search-forward "[ \t;]mode:" end t))) (skip-chars-forward " \t") (let ((beg (point))) (if (search-forward ";" end t) -- 2.23.0 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' 2019-10-15 22:55 ` Stefan Kangas @ 2019-10-15 23:17 ` Stefan Kangas 2019-10-16 0:35 ` Adam Plaice ` (2 subsequent siblings) 3 siblings, 0 replies; 13+ messages in thread From: Stefan Kangas @ 2019-10-15 23:17 UTC (permalink / raw) To: adam plaice; +Cc: 37656, Emacs developers Stefan Kangas <stefan@marxist.se> writes: > > The below patch seems to fix it by disabling the feature it exploits. > > Here is a more complete patch. Does it look like the right fix? flymake.el was first added to Emacs in version 22.1: 4bcbcb9df3 2004-05-29 Eli Zaretskii New file. The "multiple mode specification feature" dates back to: 9fa7bfe524 1993-09-11 Richard M. Stallman (hack-local-variables-prop-line): Ignore any specification for `mode:', since set-auto-mode has already handled it. (set-auto-mode): Clean up. Handle more than one `mode:' spec in -*-. The code that my proposed patch changes has stayed untouched since this 1993 commit. If we agree that disabling this feature is the solution here, a backported security fix should therefore hopefully be a one liner all the way back to version 22.1. Best regards, Stefan Kangas ^ permalink raw reply [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' 2019-10-15 22:55 ` Stefan Kangas 2019-10-15 23:17 ` Stefan Kangas @ 2019-10-16 0:35 ` Adam Plaice 2019-10-16 7:57 ` Eli Zaretskii 2019-10-16 0:55 ` Phil Sainty [not found] ` <CADwFkmk+03=J8YUy51xzBxSK2+u0DuMLq3Ur63Wr_YWv6e=C=g@mail.gmail.com> 3 siblings, 1 reply; 13+ messages in thread From: Adam Plaice @ 2019-10-16 0:35 UTC (permalink / raw) To: Stefan Kangas; +Cc: 37656, Emacs developers > Here is a more complete patch. Does it look like the right fix? This indeed fixes the issue! Thanks for dealing with it so quickly! (Though I'm obviously not qualified to say whether it's _the_ right fix for this.) > I think the relevant node in the documentation is: > (info "(emacs)Choosing Modes") That, and part of: (info "(emacs)Specifying File Variables") Unfortunately, I've realised that a similar problem can be introduced with directory variables. (Should I file separate bug for this as it's closely related but not quite the same?) This requires at least two files, so it's not quite as serious: In .dir-locals.el: ((nil . ((mode . flymake)))) In, say, foobar, in the same directory: -*- mode: emacs-lisp -*- (eval-when-compile (with-temp-file "~/emacs_flymake_security_bug" (insert "Could have also executed any code."))) (Some other, equivalent arrangements (e.g. (mode . emacs-lisp) directly in .dir-locals.el), or simply an .el extension, also "work".) According to the manual (info "(emacs)Directory Variables"): > The special ‘mode’ element specifies the minor mode to be > enabled. So ‘(mode . auto-fill)’ specifies that the minor mode > ‘auto-fill-mode’ needs to be enabled. so in this case setting the minor mode _is_ the intended/documented behaviour, which might make resolving the bug harder. (OTOH (info "(emacs)Directory Variables") also states: > You can specify the variables ‘mode’, ‘eval’, and ‘unibyte’ in your > ‘.dir-locals.el’, and they have the same meanings as they would have in > file local variables. while (info "(emacs)Specifying File Variables") says: > The special variable/value pair ‘mode: > MODENAME;’, if present, specifies a major mode. so there's some inconsistency on what `mode' in .dir-locals.el is actually "supposed" to specify — a major mode, a minor mode or either.) Thanks, Adam ^ permalink raw reply [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' 2019-10-16 0:35 ` Adam Plaice @ 2019-10-16 7:57 ` Eli Zaretskii 0 siblings, 0 replies; 13+ messages in thread From: Eli Zaretskii @ 2019-10-16 7:57 UTC (permalink / raw) To: Adam Plaice; +Cc: 37656, stefan > From: Adam Plaice <plaiceadam@gmail.com> > Date: Wed, 16 Oct 2019 02:35:58 +0200 > Cc: 37656@debbugs.gnu.org, Emacs developers <emacs-devel@gnu.org> > > Unfortunately, I've realised that a similar problem can be introduced > with directory variables. Indeed, and I expect the same problem to pop up in other places. Which is why I think the problem should be solved in those modes which allow execution of arbitrary code via file-local variables without any security precautions or other limitations, at least under user control. > (Should I file separate bug for this as it's closely related but not > quite the same?) No, it's the same problem, and I don't like the proposed solution for the reasons explained above. I think we need a different solution. ^ permalink raw reply [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' 2019-10-15 22:55 ` Stefan Kangas 2019-10-15 23:17 ` Stefan Kangas 2019-10-16 0:35 ` Adam Plaice @ 2019-10-16 0:55 ` Phil Sainty [not found] ` <CADwFkmk+03=J8YUy51xzBxSK2+u0DuMLq3Ur63Wr_YWv6e=C=g@mail.gmail.com> 3 siblings, 0 replies; 13+ messages in thread From: Phil Sainty @ 2019-10-16 0:55 UTC (permalink / raw) To: Stefan Kangas; +Cc: 37656, adam plaice, Emacs developers On 2019-10-16 11:55, Stefan Kangas wrote: > Here is a more complete patch. Does it look like the right fix? I don't think so. If we're removing the multiple 'mode' feature, then `set-auto-mode' says the following about it: ;; Once we drop the deprecated feature where mode: is also allowed to ;; specify minor-modes (ie, there can be more than one "mode:"), we can ;; remove this section and just let (hack-local-variables t) handle it. ;; Find a -*- mode tag. ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <CADwFkmk+03=J8YUy51xzBxSK2+u0DuMLq3Ur63Wr_YWv6e=C=g@mail.gmail.com>]
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' [not found] ` <CADwFkmk+03=J8YUy51xzBxSK2+u0DuMLq3Ur63Wr_YWv6e=C=g@mail.gmail.com> @ 2019-10-16 7:58 ` Eli Zaretskii 2019-10-16 11:51 ` Adam Plaice 0 siblings, 1 reply; 13+ messages in thread From: Eli Zaretskii @ 2019-10-16 7:58 UTC (permalink / raw) To: Stefan Kangas; +Cc: 37656, plaice.adam+lists > From: Stefan Kangas <stefan@marxist.se> > Date: Wed, 16 Oct 2019 01:17:51 +0200 > Cc: 37656@debbugs.gnu.org, Emacs developers <emacs-devel@gnu.org> > > The "multiple mode specification feature" dates back to: > 9fa7bfe524 1993-09-11 Richard M. Stallman > (hack-local-variables-prop-line): Ignore any specification > for `mode:', since set-auto-mode has already handled it. > (set-auto-mode): Clean up. Handle more than one `mode:' spec in -*-. > > The code that my proposed patch changes has stayed untouched since > this 1993 commit. If we agree that disabling this feature is the > solution here, a backported security fix should therefore hopefully be > a one liner all the way back to version 22.1. This feature was described as "deprecated", but where and why did we deprecate it? ^ permalink raw reply [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' 2019-10-16 7:58 ` Eli Zaretskii @ 2019-10-16 11:51 ` Adam Plaice 2019-10-16 17:09 ` Eli Zaretskii 0 siblings, 1 reply; 13+ messages in thread From: Adam Plaice @ 2019-10-16 11:51 UTC (permalink / raw) To: Eli Zaretskii; +Cc: 37656, Stefan Kangas > Please don't cross-post bug reports. Please use only one of these two > lists for any discussions, preferably the bug list. Sorry! > This feature was described as "deprecated", but where and why did we > deprecate it? I think bug#8613 is where the decision was made. The deprecation is mentioned in files.el and the manual warns against using `mode:' for minor modes in: (info "(emacs) Specifying File Variables") Adam ^ permalink raw reply [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' 2019-10-16 11:51 ` Adam Plaice @ 2019-10-16 17:09 ` Eli Zaretskii 2019-10-16 19:09 ` Phil Sainty 0 siblings, 1 reply; 13+ messages in thread From: Eli Zaretskii @ 2019-10-16 17:09 UTC (permalink / raw) To: Adam Plaice; +Cc: 37656, stefan > From: Adam Plaice <plaiceadam@gmail.com> > Date: Wed, 16 Oct 2019 13:51:57 +0200 > Cc: Stefan Kangas <stefan@marxist.se>, 37656@debbugs.gnu.org > > > This feature was described as "deprecated", but where and why did we > > deprecate it? > > I think bug#8613 is where the decision was made. The deprecation is > mentioned in files.el and the manual warns against using `mode:' for > minor modes in: > (info "(emacs) Specifying File Variables") OK, thanks. However, I don't think that removing the feature will solve the more general problem in this bug report. ^ permalink raw reply [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' 2019-10-16 17:09 ` Eli Zaretskii @ 2019-10-16 19:09 ` Phil Sainty 2019-10-16 19:34 ` Eli Zaretskii 2019-10-16 21:02 ` Adam Plaice 0 siblings, 2 replies; 13+ messages in thread From: Phil Sainty @ 2019-10-16 19:09 UTC (permalink / raw) To: Eli Zaretskii; +Cc: Adam Plaice, 37656, stefan > > -*- mode: emacs-lisp; mode: flymake -*- > > This relies on the "deprecated" feature of allowing `mode: ' > > to be repeated more than once, to also specify minor modes. > > Just having: -*- mode: flymake -*- [...] would not trigger > > the security bug. On 17/10/19 6:09 AM, Eli Zaretskii wrote: > I don't think that removing the feature will solve the more > general problem in this bug report. In particular it seems there is no point in removing the deprecated method of calling a minor mode using local variables because, after testing, the *approved* method of calling a minor mode via local variables causes the same behaviour. i.e.: -*- mode: emacs-lisp; eval:(flymake-mode 1); -*- So the deprecated approach isn't actually a factor here. -Phil ^ permalink raw reply [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' 2019-10-16 19:09 ` Phil Sainty @ 2019-10-16 19:34 ` Eli Zaretskii 2019-10-16 21:02 ` Adam Plaice 1 sibling, 0 replies; 13+ messages in thread From: Eli Zaretskii @ 2019-10-16 19:34 UTC (permalink / raw) To: Phil Sainty; +Cc: plaiceadam, 37656, stefan > Cc: Adam Plaice <plaiceadam@gmail.com>, 37656@debbugs.gnu.org, > stefan@marxist.se > From: Phil Sainty <psainty@orcon.net.nz> > Date: Thu, 17 Oct 2019 08:09:04 +1300 > > On 17/10/19 6:09 AM, Eli Zaretskii wrote: > > I don't think that removing the feature will solve the more > > general problem in this bug report. > > > In particular it seems there is no point in removing the deprecated > method of calling a minor mode using local variables because, after > testing, the *approved* method of calling a minor mode via local > variables causes the same behaviour. i.e.: > > -*- mode: emacs-lisp; eval:(flymake-mode 1); -*- > > > So the deprecated approach isn't actually a factor here. Right, thanks for confirming. The question is: can we do something in core to prevent these problems, or does the solution have to be in the individual minor modes? ^ permalink raw reply [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' 2019-10-16 19:09 ` Phil Sainty 2019-10-16 19:34 ` Eli Zaretskii @ 2019-10-16 21:02 ` Adam Plaice 1 sibling, 0 replies; 13+ messages in thread From: Adam Plaice @ 2019-10-16 21:02 UTC (permalink / raw) To: Phil Sainty; +Cc: Stefan Kangas, 37656 > So the deprecated approach isn't actually a factor here. FWIW bug#8613 included a discussion of adding an optional `:risky' argument to define-minor-mode. If RISKY were absent (or nil) then the relevant minor mode function would have its `safe-local-eval-function' property set to t. (Why a `:risky' argument rather than a `:safe' one, would have been preferable, is discussed in the bug.) In the end, this was not implemented, (and the alternative approach of treating modes as a special case in `hack-one-local-variable-eval-safep', was taken). It was decided to not be needed yet, as the case of an unsafe minor mode was considered hypothetical. > I think it goes further than just flymake support for Elisp: flymake > support for other major modes may also end up running arbitrary code > (tho it will depend on the specifics). The advantage of being able to mark minor modes as "risky" would be that it might help solve the issue for all flymake backends and for any third-party minor modes which are unsafe, with minimal changes needed for such backends/modes. Adam ^ permalink raw reply [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Opening file with specially crafted local variables can cause arbitrary code execution Inbox x @ 2019-10-08 8:48 adam plaice 2019-10-15 21:05 ` bug#37656: 27.0.50; Arbitrary code execution with special `mode:' adam plaice 0 siblings, 1 reply; 13+ messages in thread From: adam plaice @ 2019-10-08 8:48 UTC (permalink / raw) To: 37656 * To reproduce: 1. Create a file, say `~/foobar', (it could have an arbitrary extension) with the following contents: -*- mode: emacs-lisp; mode: flymake -*- (eval-when-compile (with-temp-file "~/emacs_flymake_security_bug" (insert "Could have also executed any code."))) 2. Open the file with emacs: emacs -Q ~/foobar 3. Inspect ~/emacs_flymake_security_bug: cat ~/emacs_flymake_security_bug * Expected result ~/emacs_flymake_security_bug does not exist. * Actual result ~/emacs_flymake_security_bug does exist. * Further information This relies on the "deprecated" feature of allowing `mode: ' to be repeated more than once, to also specify minor modes. Just having: -*- mode: flymake -*- in, say, `~/foobar.el' would not trigger the security bug. There may, however, be alternative ways of triggering it, that I haven't come up with. This was "inspired" by a very similar bug (concerning an external package, editorconfig), described here: https://illikainen.dev/blog/2019-10-06-editorconfig Thank you and best regards, Adam In GNU Emacs 27.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.18.9) of 2019-10-07 built on adam Repository revision: 9839466b231b6384055b9b137405730876413cbe Repository branch: master Windowing system distributor 'The X.Org Foundation', version 11.0.11804000 System Description: Ubuntu 16.04.6 LTS Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Configured using: 'configure --with-modules --without-pop' Configured features: XPM JPEG TIFF GIF PNG RSVG SOUND GPM DBUS GSETTINGS GLIB NOTIFY INOTIFY ACL LIBSELINUX GNUTLS LIBXML2 FREETYPE HARFBUZZ M17N_FLT LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS GTK3 X11 XDBE XIM MODULES THREADS PDUMPER LCMS2 GMP Important settings: value of $LANG: en_GB.UTF-8 locale-coding-system: utf-8-unix Major mode: Lisp Interaction Minor modes in effect: tooltip-mode: t global-eldoc-mode: t eldoc-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message rmc puny dired dired-loaddefs format-spec rfc822 mml easymenu mml-sec password-cache epa derived epg epg-config gnus-util rmail rmail-loaddefs text-property-search time-date subr-x seq byte-opt gv bytecomp byte-compile cconv mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader cl-loaddefs cl-lib sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type mwheel term/x-win x-win term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode elisp-mode lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core term/tty-colors frame cl-generic cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite charscript charprop case-table epa-hook jka-cmpr-hook help simple abbrev obarray minibuffer cl-preloaded nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote threads dbusbind inotify lcms2 dynamic-setting system-font-setting font-render-setting move-toolbar gtk x-toolkit x multi-tty make-network-process emacs) Memory information: ((conses 16 44045 5448) (symbols 48 5971 1) (strings 32 15685 1582) (string-bytes 1 506409) (vectors 16 9198) (vector-slots 8 123144 8510) (floats 8 19 25) (intervals 56 186 0) (buffers 1000 11) (heap 1024 12431 1138)) ^ permalink raw reply [flat|nested] 13+ messages in thread
* bug#37656: 27.0.50; Arbitrary code execution with special `mode:' 2019-10-08 8:48 bug#37656: 27.0.50; Opening file with specially crafted local variables can cause arbitrary code execution Inbox x adam plaice @ 2019-10-15 21:05 ` adam plaice 0 siblings, 0 replies; 13+ messages in thread From: adam plaice @ 2019-10-15 21:05 UTC (permalink / raw) To: emacs-devel; +Cc: 37656 Since the bug allows an attacker to execute arbitrary code if the victim opens a payload file, and hence opening any file from an untrusted source becomes dangerous, it seems to be rather serious. The bug relies on the fact that flymake-mode can execute arbitrary code, that minor modes (in particular, flymake-mode) can be set with local variables (with `mode:') and that when a minor-mode is set in this way, the major-mode is not unset. (See the linked bug or below for details.) I'm not sure whether I should be bringing greater attention to it, but given that it's already in the open, and malicious actors can find it (or just come up with it themselves, as it's not a particularly complex idea), increasing the likelihood of getting it fixed hopefully outweighs the disadvantages. I'd offer to provide a patch, but I'm neither very proficient with Emacs lisp, nor a security expert. I also haven't signed any copyright papers. Some thoughts on potential solutions (from a well-intentioned, but possibly misguided layman): AFAICT the easiest way to prevent this specific bug would be to prevent more than one mode being set by the file and directory local-variables machinery. Perhaps also only allowing major modes to be set with `mode' in local variables (and only allowing minor-modes to be set with `eval', as is already encouraged in the manual), might decrease the "attack surface" for similar such attacks. I'm not sure whether any major modes are "unsafe" (in the way flymake is), but possibly it might make sense to mark major modes as safe, similarly to the way variables are, though that would be a far more extensive change. Thank you, Adam PS Should Emacs have some policies on reporting security issues? I was encouraged (via an earlier e-mail exchange) to post the bug to debbugs, as normal, but it might perhaps be useful if the process (specifically for security vulnerabilities, not bugs in general) were mentioned in the manual. > https://debbugs.gnu.org/cgi/bugreport.cgi?bug=37656 > > * To reproduce: > > 1. Create a file, say `~/foobar', (it could have an arbitrary > extension) with the following contents: > > -*- mode: emacs-lisp; mode: flymake -*- > > (eval-when-compile > (with-temp-file "~/emacs_flymake_security_bug" > (insert "Could have also executed any code."))) > > 2. Open the file with emacs: > > emacs -Q ~/foobar > > 3. Inspect ~/emacs_flymake_security_bug: > > cat ~/emacs_flymake_security_bug > > * Expected result > > ~/emacs_flymake_security_bug does not exist. > > * Actual result > > ~/emacs_flymake_security_bug does exist. > > * Further information > > This relies on the "deprecated" feature of allowing `mode: ' to be > repeated more than once, to also specify minor modes. Just having: > > -*- mode: flymake -*- > > in, say, `~/foobar.el' would not trigger the security bug. There may, > however, be alternative ways of triggering it, that I haven't come up > with. > > > This was "inspired" by a very similar bug (concerning an external > package, editorconfig), described here: > > https://illikainen.dev/blog/2019-10-06-editorconfig > > Thank you and best regards, > Adam > > ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2019-10-16 21:02 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <CAJw81dZZmX=z-YFDwvEkuWR6xH+cf=mR9h-fcZTphwdXWrA5wg@mail.gmail.com> 2019-10-15 22:27 ` bug#37656: 27.0.50; Arbitrary code execution with special `mode:' Stefan Kangas [not found] ` <CADwFkmnqfbsEEWkWMA2xnN1O+-JsTcCKrSYv0e3g1+jXrxRY5g@mail.gmail.com> 2019-10-15 22:55 ` Stefan Kangas 2019-10-15 23:17 ` Stefan Kangas 2019-10-16 0:35 ` Adam Plaice 2019-10-16 7:57 ` Eli Zaretskii 2019-10-16 0:55 ` Phil Sainty [not found] ` <CADwFkmk+03=J8YUy51xzBxSK2+u0DuMLq3Ur63Wr_YWv6e=C=g@mail.gmail.com> 2019-10-16 7:58 ` Eli Zaretskii 2019-10-16 11:51 ` Adam Plaice 2019-10-16 17:09 ` Eli Zaretskii 2019-10-16 19:09 ` Phil Sainty 2019-10-16 19:34 ` Eli Zaretskii 2019-10-16 21:02 ` Adam Plaice 2019-10-08 8:48 bug#37656: 27.0.50; Opening file with specially crafted local variables can cause arbitrary code execution Inbox x adam plaice 2019-10-15 21:05 ` bug#37656: 27.0.50; Arbitrary code execution with special `mode:' adam plaice
Code repositories for project(s) associated with this public inbox https://git.savannah.gnu.org/cgit/emacs.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).