Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
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
871
B
-rw-r--r--
2017-02-15 15:33
autoconf.nanorc
541
B
-rw-r--r--
2017-02-15 15:33
awk.nanorc
1.31
KB
-rw-r--r--
2017-02-15 15:33
c.nanorc
1.63
KB
-rw-r--r--
2017-02-15 15:33
changelog.nanorc
699
B
-rw-r--r--
2017-02-15 15:33
cmake.nanorc
825
B
-rw-r--r--
2017-02-15 15:33
css.nanorc
330
B
-rw-r--r--
2017-02-15 15:33
debian.nanorc
778
B
-rw-r--r--
2017-02-15 15:33
default.nanorc
250
B
-rw-r--r--
2017-02-15 15:33
elisp.nanorc
1.05
KB
-rw-r--r--
2017-02-15 15:33
fortran.nanorc
1.91
KB
-rw-r--r--
2017-02-15 15:33
gentoo.nanorc
3.89
KB
-rw-r--r--
2017-02-15 15:33
go.nanorc
1.37
KB
-rw-r--r--
2017-02-15 15:33
groff.nanorc
699
B
-rw-r--r--
2017-02-15 15:33
guile.nanorc
592
B
-rw-r--r--
2017-02-15 15:33
html.nanorc
177
B
-rw-r--r--
2017-02-15 15:33
java.nanorc
642
B
-rw-r--r--
2017-02-15 15:33
javascript.nanorc
655
B
-rw-r--r--
2017-02-15 15:33
json.nanorc
833
B
-rw-r--r--
2017-02-15 15:33
lua.nanorc
2.26
KB
-rw-r--r--
2017-02-15 15:33
makefile.nanorc
287
B
-rw-r--r--
2017-02-15 15:33
man.nanorc
449
B
-rw-r--r--
2017-02-15 15:33
mgp.nanorc
219
B
-rw-r--r--
2017-02-15 15:33
mutt.nanorc
187
B
-rw-r--r--
2017-02-15 15:33
nanorc.nanorc
2.26
KB
-rw-r--r--
2017-02-15 15:33
nftables.nanorc
761
B
-rw-r--r--
2017-02-15 15:33
objc.nanorc
1.72
KB
-rw-r--r--
2017-02-15 15:33
ocaml.nanorc
831
B
-rw-r--r--
2017-02-15 15:33
patch.nanorc
457
B
-rw-r--r--
2017-02-15 15:33
perl.nanorc
1.43
KB
-rw-r--r--
2017-02-15 15:33
php.nanorc
710
B
-rw-r--r--
2017-02-15 15:33
po.nanorc
839
B
-rw-r--r--
2017-02-15 15:33
postgresql.nanorc
3.02
KB
-rw-r--r--
2017-02-15 15:33
pov.nanorc
670
B
-rw-r--r--
2017-02-15 15:33
python.nanorc
781
B
-rw-r--r--
2017-02-15 15:33
ruby.nanorc
1.45
KB
-rw-r--r--
2017-02-15 15:33
sh.nanorc
1.15
KB
-rw-r--r--
2017-02-15 15:33
spec.nanorc
1.87
KB
-rw-r--r--
2017-02-15 15:33
tcl.nanorc
2.1
KB
-rw-r--r--
2017-02-15 15:33
tex.nanorc
164
B
-rw-r--r--
2017-02-15 15:33
texinfo.nanorc
452
B
-rw-r--r--
2017-02-15 15:33
xml.nanorc
484
B
-rw-r--r--
2017-02-15 15:33
Save
Rename
## Here is an example for Ruby. syntax "ruby" "\.rb$" header "^#!.*ruby[-0-9._]*" linter ruby -w -c # 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|\?\?\?)"