Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
vim /
vim91 /
Delete
Unzip
Name
Size
Permission
Date
Action
autoload
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
colors
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
compiler
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
doc
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
ftplugin
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
import
[ DIR ]
drwxr-xr-x
2025-08-05 17:14
indent
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
keymap
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
lang
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
macros
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
pack
[ DIR ]
drwxr-xr-x
2025-08-05 17:14
plugin
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
print
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
spell
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
syntax
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
tutor
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
bugreport.vim
1.95
KB
-rw-r--r--
2026-07-13 17:17
debian.vim
1.76
KB
-rw-r--r--
2026-06-15 22:15
defaults.vim
4.74
KB
-rw-r--r--
2026-07-13 17:17
delmenu.vim
1.25
KB
-rw-r--r--
2026-07-13 17:17
evim.vim
2.23
KB
-rw-r--r--
2026-07-13 17:17
filetype.vim
76.64
KB
-rw-r--r--
2026-07-13 17:17
ftoff.vim
346
B
-rw-r--r--
2026-07-13 17:17
ftplugin.vim
1.17
KB
-rw-r--r--
2026-07-13 17:17
ftplugof.vim
419
B
-rw-r--r--
2026-07-13 17:17
gvimrc_example.vim
1.67
KB
-rw-r--r--
2026-07-13 17:17
indent.vim
820
B
-rw-r--r--
2026-07-13 17:17
indoff.vim
348
B
-rw-r--r--
2026-07-13 17:17
menu.vim
41.16
KB
-rw-r--r--
2026-07-13 17:17
mswin.vim
3.41
KB
-rw-r--r--
2026-07-13 17:17
optwin.vim
67.38
KB
-rw-r--r--
2026-07-13 17:17
scripts.vim
866
B
-rw-r--r--
2026-07-13 17:17
synmenu.vim
39.39
KB
-rw-r--r--
2026-07-13 17:17
vimrc_example.vim
1.4
KB
-rw-r--r--
2026-07-13 17:17
Save
Rename
" Normally we use vim-extensions. If you want true vi-compatibility " remove change the following statements set nocompatible " Use Vim defaults instead of 100% vi compatibility set backspace=indent,eol,start " more powerful backspacing " Now we set some defaults for the editor set history=50 " keep 50 lines of command line history set ruler " show the cursor position all the time " modelines have historically been a source of security/resource " vulnerabilities -- disable by default, even when 'nocompatible' is set set nomodeline " Suffixes that get lower priority when doing tab completion for filenames. " These are files we are not likely to want to edit or read. set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc " We know xterm-debian is a color terminal if &term =~ "xterm-debian" || &term =~ "xterm-xfree86" set t_Co=16 set t_Sf=[3%dm set t_Sb=[4%dm endif " Some Debian-specific things if has('gui') " Must define this within the :if so it does not cause problems with " vim-tiny (which does not have +eval) function! <SID>MapExists(name, modes) for mode in split(a:modes, '\zs') if !empty(maparg(a:name, mode)) return 1 endif endfor return 0 endfunction " Make shift-insert work like in Xterm autocmd GUIEnter * if !<SID>MapExists("<S-Insert>", "nvso") | execute "map <S-Insert> <MiddleMouse>" | endif autocmd GUIEnter * if !<SID>MapExists("<S-Insert>", "ic") | execute "map! <S-Insert> <MiddleMouse>" | endif endif " Set paper size from /etc/papersize if available (Debian-specific) if filereadable("/etc/papersize") let s:papersize = matchstr(readfile('/etc/papersize', '', 1), '\p*') if strlen(s:papersize) exe "set printoptions+=paper:" . s:papersize endif endif