GNU bug report logs -
#60268
[PATCH] Fix ruby-mode.el local command injection vulnerability
Previous Next
Reported by: lux <lx <at> shellcodes.org>
Date: Fri, 23 Dec 2022 04:57:01 UTC
Severity: normal
Tags: patch
Fixed in version 29.1
Done: Dmitry Gutov <dgutov <at> yandex.ru>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 60268 in the body.
You can then email your comments to 60268 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#60268
; Package
emacs
.
(Fri, 23 Dec 2022 04:57:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
lux <lx <at> shellcodes.org>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Fri, 23 Dec 2022 04:57:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
In ruby-mode.el, the 'ruby-find-library-file' function have a local
command injection vulnerability:
(defun ruby-find-library-file (&optional feature-name)
(interactive)
...
(shell-command-to-string (concat "gem which "
(shell-quote-argument feature-name))) ...)
The 'ruby-find-library-file' is a interactive function, and bound to the
shortcut key C-c C-f. Inside the function, the external command 'gem' is
called through 'shell-command-to-string', but the 'feature-name'
parameters are not escape.
So, if the Ruby source file contains the following:
require 'irb;id'
and typing C-c C-f, there is a risk of executing unexpected orders, for
example:
(ruby-find-library-file "irb;uname")
#<buffer irb.rb
Linux>
Although the probability of being exploited is low, but I think it's
still necessary to avoid this kind of security problem.
The attachment is the patch file, thanks.
[0001-Fix-etags-local-command-injection-vulnerability.patch (text/x-patch, attachment)]
[0001-Fix-ruby-mode.el-local-command-injection-vulnerabili.patch (text/x-patch, attachment)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#60268
; Package
emacs
.
(Fri, 23 Dec 2022 05:00:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 60268 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Sorry, 0001-Fix-etags-local-command-injection-vulnerability.patch is a file I uploaded by mistake, please ignore
[Message part 2 (text/html, inline)]
Reply sent
to
Dmitry Gutov <dgutov <at> yandex.ru>
:
You have taken responsibility.
(Fri, 23 Dec 2022 23:45:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
lux <lx <at> shellcodes.org>
:
bug acknowledged by developer.
(Fri, 23 Dec 2022 23:45:02 GMT)
Full text and
rfc822 format available.
Message #13 received at 60268-done <at> debbugs.gnu.org (full text, mbox):
Version: 29.1
On 23/12/2022 06:56, lux wrote:
> In ruby-mode.el, the 'ruby-find-library-file' function have a local
> command injection vulnerability:
>
> (defun ruby-find-library-file (&optional feature-name)
> (interactive)
> ...
> (shell-command-to-string (concat "gem which "
> (shell-quote-argument feature-name))) ...)
>
> The 'ruby-find-library-file' is a interactive function, and bound to the
> shortcut key C-c C-f. Inside the function, the external command 'gem' is
> called through 'shell-command-to-string', but the 'feature-name'
> parameters are not escape.
>
> So, if the Ruby source file contains the following:
>
> require 'irb;id'
>
> and typing C-c C-f, there is a risk of executing unexpected orders, for
> example:
>
> (ruby-find-library-file "irb;uname")
> #<buffer irb.rb
> Linux>
>
> Although the probability of being exploited is low, but I think it's
> still necessary to avoid this kind of security problem.
>
> The attachment is the patch file, thanks.
Thanks! Installed.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sat, 21 Jan 2023 12:24:08 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 33 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.