Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
vim /
vim74 /
plugin /
Delete
Unzip
Name
Size
Permission
Date
Action
README.txt
936
B
-rw-r--r--
2020-10-14 14:58
getscriptPlugin.vim
1.36
KB
-rw-r--r--
2020-10-14 14:58
gzip.vim
1.92
KB
-rw-r--r--
2020-10-14 14:58
logiPat.vim
9.89
KB
-rw-r--r--
2020-10-14 14:58
matchparen.vim
6.38
KB
-rw-r--r--
2020-10-14 14:58
netrwPlugin.vim
10.2
KB
-rw-r--r--
2020-10-14 14:58
rrhelper.vim
1.38
KB
-rw-r--r--
2020-10-14 14:58
spellfile.vim
499
B
-rw-r--r--
2020-10-14 14:58
tarPlugin.vim
2.16
KB
-rw-r--r--
2020-10-14 14:58
tohtml.vim
9.69
KB
-rw-r--r--
2020-10-14 14:58
vimballPlugin.vim
2.7
KB
-rw-r--r--
2020-10-14 14:58
zipPlugin.vim
2.44
KB
-rw-r--r--
2020-10-14 14:58
Save
Rename
" Vim plugin for editing compressed files. " Maintainer: Bram Moolenaar <Bram@vim.org> " Last Change: 2010 Mar 10 " Exit quickly when: " - this plugin was already loaded " - when 'compatible' is set " - some autocommands are already taking care of compressed files if exists("loaded_gzip") || &cp || exists("#BufReadPre#*.gz") finish endif let loaded_gzip = 1 augroup gzip " Remove all gzip autocommands au! " Enable editing of gzipped files. " The functions are defined in autoload/gzip.vim. " " Set binary mode before reading the file. " Use "gzip -d", gunzip isn't always available. autocmd BufReadPre,FileReadPre *.gz,*.bz2,*.Z,*.lzma,*.xz setlocal bin autocmd BufReadPost,FileReadPost *.gz call gzip#read("gzip -dn") autocmd BufReadPost,FileReadPost *.bz2 call gzip#read("bzip2 -d") autocmd BufReadPost,FileReadPost *.Z call gzip#read("uncompress") autocmd BufReadPost,FileReadPost *.lzma call gzip#read("lzma -d") autocmd BufReadPost,FileReadPost *.xz call gzip#read("xz -d") autocmd BufWritePost,FileWritePost *.gz call gzip#write("gzip") autocmd BufWritePost,FileWritePost *.bz2 call gzip#write("bzip2") autocmd BufWritePost,FileWritePost *.Z call gzip#write("compress -f") autocmd BufWritePost,FileWritePost *.lzma call gzip#write("lzma -z") autocmd BufWritePost,FileWritePost *.xz call gzip#write("xz -z") autocmd FileAppendPre *.gz call gzip#appre("gzip -dn") autocmd FileAppendPre *.bz2 call gzip#appre("bzip2 -d") autocmd FileAppendPre *.Z call gzip#appre("uncompress") autocmd FileAppendPre *.lzma call gzip#appre("lzma -d") autocmd FileAppendPre *.xz call gzip#appre("xz -d") autocmd FileAppendPost *.gz call gzip#write("gzip") autocmd FileAppendPost *.bz2 call gzip#write("bzip2") autocmd FileAppendPost *.Z call gzip#write("compress -f") autocmd FileAppendPost *.lzma call gzip#write("lzma -z") autocmd FileAppendPost *.xz call gzip#write("xz -z") augroup END