Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nano /
Delete
Unzip
Name
Size
Permission
Date
Action
asm.nanorc
884
B
-rw-r--r--
2017-01-11 03:10
autoconf.nanorc
557
B
-rw-r--r--
2017-01-11 03:10
awk.nanorc
1.33
KB
-rw-r--r--
2017-01-11 03:10
c.nanorc
1.64
KB
-rw-r--r--
2017-01-11 03:10
changelog.nanorc
711
B
-rw-r--r--
2017-01-11 03:10
cmake.nanorc
837
B
-rw-r--r--
2017-01-11 03:10
css.nanorc
346
B
-rw-r--r--
2017-01-11 03:10
debian.nanorc
790
B
-rw-r--r--
2017-01-11 03:10
default.nanorc
262
B
-rw-r--r--
2017-01-11 03:10
elisp.nanorc
1.06
KB
-rw-r--r--
2017-01-11 03:10
fortran.nanorc
1.92
KB
-rw-r--r--
2017-01-11 03:10
gentoo.nanorc
4.07
KB
-rw-r--r--
2017-01-11 03:10
go.nanorc
1.39
KB
-rw-r--r--
2017-01-11 03:10
groff.nanorc
713
B
-rw-r--r--
2017-01-11 03:10
guile.nanorc
604
B
-rw-r--r--
2017-01-11 03:10
html.nanorc
1.2
KB
-rw-r--r--
2017-01-11 03:10
java.nanorc
655
B
-rw-r--r--
2017-01-11 03:10
javascript.nanorc
668
B
-rw-r--r--
2017-01-11 03:10
json.nanorc
881
B
-rw-r--r--
2017-01-11 03:10
lua.nanorc
2.27
KB
-rw-r--r--
2017-01-11 03:10
makefile.nanorc
299
B
-rw-r--r--
2017-01-11 03:10
man.nanorc
463
B
-rw-r--r--
2017-01-11 03:10
mgp.nanorc
231
B
-rw-r--r--
2017-01-11 03:10
mutt.nanorc
187
B
-rw-r--r--
2017-01-11 03:10
nanorc.nanorc
2.45
KB
-rw-r--r--
2017-01-11 03:10
nftables.nanorc
794
B
-rw-r--r--
2017-01-11 03:10
objc.nanorc
1.74
KB
-rw-r--r--
2017-01-11 03:10
ocaml.nanorc
847
B
-rw-r--r--
2017-01-11 03:10
patch.nanorc
597
B
-rw-r--r--
2017-01-11 03:10
perl.nanorc
1.44
KB
-rw-r--r--
2017-01-11 03:10
php.nanorc
723
B
-rw-r--r--
2017-01-11 03:10
po.nanorc
891
B
-rw-r--r--
2017-01-11 03:10
postgresql.nanorc
3.03
KB
-rw-r--r--
2017-01-11 03:10
pov.nanorc
683
B
-rw-r--r--
2017-01-11 03:10
python.nanorc
793
B
-rw-r--r--
2017-01-11 03:10
ruby.nanorc
1.46
KB
-rw-r--r--
2017-01-11 03:10
rust.nanorc
1.08
KB
-rw-r--r--
2017-01-11 03:10
sh.nanorc
1.16
KB
-rw-r--r--
2017-01-11 03:10
spec.nanorc
1.88
KB
-rw-r--r--
2017-01-11 03:10
tcl.nanorc
2.11
KB
-rw-r--r--
2017-01-11 03:10
tex.nanorc
176
B
-rw-r--r--
2017-01-11 03:10
texinfo.nanorc
466
B
-rw-r--r--
2017-01-11 03:10
xml.nanorc
503
B
-rw-r--r--
2017-01-11 03:10
Save
Rename
## Here is an example for Ruby. syntax "ruby" "\.rb$" header "^#!.*ruby[-0-9._]*" linter ruby -w -c comment "#" # Reserved words. color yellow "\<(BEGIN|END|alias|and|begin|break|case|class|def|defined\?|do|else|elsif|end|ensure|false|for|if|in|module)\>" color yellow "\<(next|nil|not|or|redo|rescue|retry|return|self|super|then|true|undef|unless|until|when|while|yield)\>" # Constants. color brightblue "(\$|@|@@)?\<[A-Z]+[0-9A-Z_a-z]*" # Ruby "symbols". icolor magenta "([ ]|^):[0-9A-Z_]+\>" # Some unique things we want to stand out. color brightyellow "\<(__FILE__|__LINE__)\>" # Regular expressions. color brightmagenta "/([^/]|(\\/))*/[iomx]*" "%r\{([^}]|(\\}))*\}[iomx]*" # Shell command expansion is in `backticks` or like %x{this}. These are # "double-quotish" (to use a perlism). color brightblue "`[^`]*`" "%x\{[^}]*\}" # Strings, double-quoted. color green ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\[[^]]*\]" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!" # Expression substitution. These go inside double-quoted strings, # "like #{this}". color brightgreen "#\{[^}]*\}" # Strings, single-quoted. color green "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!" # Comments. color cyan "#[^{].*$" "#$" color brightcyan "##[^{].*$" "##$" # "Here" docs. color green start="<<-?'?EOT'?" end="^EOT" # Some common markers. color brightcyan "(XXX|TODO|FIXME|\?\?\?)"