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
## Syntax highlighting for Rust. ## Copyright 2015 Luke Francl. ## Licensed under GPL version 3. ## NOTE: Rules are applied in order: later rules re-colorize matching text. syntax "rust" "\.rs" comment "//" # Function definitions color magenta "fn [a-z_0-9]+" # Reserved words color yellow "\<(abstract|alignof|as|become|box|break|const|continue|crate|do|else|enum|extern|false|final|fn|for|if|impl|in|let|loop|macro|match|mod|move|mut|offsetof|override|priv|pub|pure|ref|return|sizeof|static|self|struct|super|true|trait|type|typeof|unsafe|unsized|use|virtual|where|while|yield)\>" # Macros color red "[a-z_]+!" # Constants color magenta "[A-Z][A-Z_0-9]+" # Traits/Enums/Structs/Types/... color magenta "[A-Z][A-Za-z0-9]+" # Strings color green "\".*\"" color green start="\".*\\$" end=".*\"" ## NOTE: This isn't accurate, but matching "#{0,} for the end of the string is too liberal. color green start="r#+\"" end="\"#+" # Comments color blue "//.*" color blue start="/\*" end="\*/" # Attributes color magenta start="#!\[" end="\]" # Some common markers color brightcyan "(XXX|TODO|FIXME|\?\?\?)"