diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-17 09:42:59 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-11-17 09:59:22 +0800 |
commit | d49be1cd2893ad583361ac058279a471ad7877e5 (patch) | |
tree | 3d2b7f6df5920969cbf66d8ab656af1a6260a830 /test | |
parent | b6200fbdf2035b09abfc0f94fba9c432bc0b9245 (diff) | |
download | rneovim-d49be1cd2893ad583361ac058279a471ad7877e5.tar.gz rneovim-d49be1cd2893ad583361ac058279a471ad7877e5.tar.bz2 rneovim-d49be1cd2893ad583361ac058279a471ad7877e5.zip |
vim-patch:9.0.2010: [security] use-after-free from buf_contents_changed()
Problem: [security] use-after-free from buf_contents_changed()
Solution: block autocommands
https://github.com/vim/vim/commit/41e6f7d6ba67b61d911f9b1d76325cd79224753d
Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/crash/editing_arg_idx_POC_1 | bin | 0 -> 398 bytes | |||
-rw-r--r-- | test/old/testdir/test_crash.vim | 9 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/old/testdir/crash/editing_arg_idx_POC_1 b/test/old/testdir/crash/editing_arg_idx_POC_1 Binary files differnew file mode 100644 index 0000000000..5d048d0340 --- /dev/null +++ b/test/old/testdir/crash/editing_arg_idx_POC_1 diff --git a/test/old/testdir/test_crash.vim b/test/old/testdir/test_crash.vim index 9a80340c28..5cd07e2a3f 100644 --- a/test/old/testdir/test_crash.vim +++ b/test/old/testdir/test_crash.vim @@ -78,6 +78,14 @@ func Test_crash1() \ ' && echo "crash 9: [OK]" >> X_crash1_result.txt' .. "\<cr>") call TermWait(buf, 1000) + let file = 'crash/editing_arg_idx_POC_1' + let args = printf(cmn_args, vim, file) + call term_sendkeys(buf, args .. + \ ' || echo "crash 10: [OK]" >> X_crash1_result.txt' .. "\<cr>") + call TermWait(buf, 1000) + call delete('Xerr') + call delete('@') + " clean up exe buf .. "bw!" @@ -93,6 +101,7 @@ func Test_crash1() \ 'crash 7: [OK]', \ 'crash 8: [OK]', \ 'crash 9: [OK]', + \ 'crash 10: [OK]', \ ] call assert_equal(expected, getline(1, '$')) |