vim-patch:9.2.0496: [security]: Code Injection in cucumber filetype plugin

Problem:  [security]: Code Injection in cucumber filetype plugin
          (Christopher Lusk)
Solution: Use rubys Regexp.new() with the untrusted pattern

Github Security Advisory:
https://github.com/vim/vim/security/advisories/GHSA-4473-94jm-w5x9

a65a52d684

Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq
2026-05-18 08:01:20 +08:00
parent a7d3835cb9
commit 878718fa76
2 changed files with 34 additions and 1 deletions

View File

@@ -2,6 +2,8 @@
" Language: Cucumber
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
" Last Change: 2016 Aug 29
" 2026 May 26 by Vim Project: prevent Code Injection
" https://github.com/vim/vim/security/advisories/GHSA-4473-94jm-w5x9
" Only do this when not done yet for this buffer
if (exists("b:did_ftplugin"))
@@ -96,7 +98,8 @@ function! s:stepmatch(receiver,target)
catch
endtry
if has("ruby") && pattern !~ '\\\@<!#{'
ruby VIM.command("return #{if (begin; Kernel.eval('/'+VIM.evaluate('pattern')+'/'); rescue SyntaxError; end) === VIM.evaluate('a:target') then 1 else 0 end}")
" Use Regexp.new, so the pattern stays untrusted data and cannot inject Ruby
ruby VIM.command("return #{if (begin; Regexp.new(VIM.evaluate('pattern')); rescue RegexpError; end) === VIM.evaluate('a:target') then 1 else 0 end}")
else
return 0
endif

View File

@@ -3463,4 +3463,34 @@ func Test_app_file()
filetype off
endfunc
func Test_cucumber_code_injection()
CheckFeature ruby
filetype plugin on
call mkdir('Xcucu/features/step_definitions', 'pR')
call writefile([
\ 'Feature: demo',
\ ' Scenario: trigger',
\ ' Given xyzzy',
\ ], 'Xcucu/features/test.feature')
let marker = getcwd() . '/Xcucu/MARKER'
" Malicious step: terminates the regex literal, injects Ruby system(),
" comments the trailing slash. With the fix, the pattern is passed to
" Regexp.new() instead of Kernel.eval() and the payload is inert.
call writefile([
\ 'Given /xyzzy/; system("touch ' . marker . '"); #/ do',
\ 'end',
\ ], 'Xcucu/features/step_definitions/poc.rb')
new Xcucu/features/test.feature
call assert_equal('cucumber', &filetype)
call cursor(3, 1)
" Triggers s:jump -> s:steps -> s:stepmatch on every discovered step,
" including the malicious one. Suppress preview and error messages.
silent! normal [d
call assert_false(filereadable(marker), 'Ruby injection executed')
bwipe!
filetype plugin off
endfunc
" vim: shiftwidth=2 sts=2 expandtab