mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Fix ruby-mode.el local command injection vulnerability (bug#60268)
* lisp/progmodes/ruby-mode.el
(ruby-find-library-file): Fix local command injection vulnerability.
(cherry picked from commit 9a3b08061f)
This commit is contained in:
parent
807d2d5b3a
commit
22fb5ff512
1 changed files with 1 additions and 1 deletions
|
|
@ -1819,7 +1819,7 @@ or `gem' statement around point."
|
|||
(setq feature-name (read-string "Feature name: " init))))
|
||||
(let ((out
|
||||
(substring
|
||||
(shell-command-to-string (concat "gem which " feature-name))
|
||||
(shell-command-to-string (concat "gem which " (shell-quote-argument feature-name)))
|
||||
0 -1)))
|
||||
(if (string-match-p "\\`ERROR" out)
|
||||
(user-error "%s" out)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue