Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
yelp-xsl /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
jquery.js
178.89
KB
-rw-r--r--
jquery.syntax.brush.apache.js
1.11
KB
-rw-r--r--
jquery.syntax.brush.applescrip...
7.58
KB
-rw-r--r--
jquery.syntax.brush.assembly.j...
1.16
KB
-rw-r--r--
jquery.syntax.brush.bash-scrip...
2.15
KB
-rw-r--r--
jquery.syntax.brush.bash.js
854
B
-rw-r--r--
jquery.syntax.brush.basic.js
3
KB
-rw-r--r--
jquery.syntax.brush.clang.js
3.14
KB
-rw-r--r--
jquery.syntax.brush.csharp.js
2.21
KB
-rw-r--r--
jquery.syntax.brush.css.js
3.89
KB
-rw-r--r--
jquery.syntax.brush.diff.js
873
B
-rw-r--r--
jquery.syntax.brush.go.js
1.69
KB
-rw-r--r--
jquery.syntax.brush.haskell.js
1.44
KB
-rw-r--r--
jquery.syntax.brush.html.js
1.77
KB
-rw-r--r--
jquery.syntax.brush.io.js
1.3
KB
-rw-r--r--
jquery.syntax.brush.java.js
1.88
KB
-rw-r--r--
jquery.syntax.brush.javascript...
1.36
KB
-rw-r--r--
jquery.syntax.brush.kai.js
757
B
-rw-r--r--
jquery.syntax.brush.lisp.js
1.07
KB
-rw-r--r--
jquery.syntax.brush.lua.js
1.28
KB
-rw-r--r--
jquery.syntax.brush.ocaml.js
3.07
KB
-rw-r--r--
jquery.syntax.brush.ooc.js
2.07
KB
-rw-r--r--
jquery.syntax.brush.pascal.js
2.22
KB
-rw-r--r--
jquery.syntax.brush.perl5.js
3.54
KB
-rw-r--r--
jquery.syntax.brush.php-script...
1.81
KB
-rw-r--r--
jquery.syntax.brush.php.js
516
B
-rw-r--r--
jquery.syntax.brush.plain.js
341
B
-rw-r--r--
jquery.syntax.brush.protobuf.j...
1.36
KB
-rw-r--r--
jquery.syntax.brush.python.js
2.69
KB
-rw-r--r--
jquery.syntax.brush.ruby.js
2.48
KB
-rw-r--r--
jquery.syntax.brush.scala.js
1.39
KB
-rw-r--r--
jquery.syntax.brush.smalltalk....
877
B
-rw-r--r--
jquery.syntax.brush.sql.js
10.36
KB
-rw-r--r--
jquery.syntax.brush.super-coll...
1.51
KB
-rw-r--r--
jquery.syntax.brush.xml.js
1.48
KB
-rw-r--r--
jquery.syntax.brush.yaml.js
677
B
-rw-r--r--
jquery.syntax.core.js
34.38
KB
-rw-r--r--
jquery.syntax.js
8.05
KB
-rw-r--r--
jquery.syntax.layout.yelp.js
106
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.syntax.brush.csharp.js
// brush: "csharp" aliases: ["c-sharp", "c#"] // This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License. // Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz> // See <jquery.syntax.js> for licensing details. Syntax.register('csharp', function(brush) { var keywords = ["abstract", "add", "alias", "ascending", "base", "break", "case", "catch", "class", "const", "continue", "default", "delegate", "descending", "do", "dynamic", "else", "enum", "event", "explicit", "extern", "finally", "for", "foreach", "from", "get", "global", "goto", "group", "if", "implicit", "in", "interface", "into", "join", "let", "lock", "namespace", "new", "operator", "orderby", "out", "override", "params", "partial", "readonly", "ref", "remove", "return", "sealed", "select", "set", "stackalloc", "static", "struct", "switch", "throw", "try", "unsafe", "using", "value", "var", "virtual", "volatile", "where", "while", "yield"]; var access = ["public", "private", "internal", "protected"]; var types = ["object", "bool", "byte", "fixed", "float", "uint", "char", "ulong", "ushort", "decimal", "int", "sbyte", "short", "void", "long", "string", "double"]; var operators = ["+", "-", "*", "/", "%", "&", "|", "^", "!", "~", "&&", "||", "++", "--", "<<", ">>", "==", "!=", "<", ">", "<=", ">=", "=", "?", "new", "as", "is", "sizeof", "typeof", "checked", "unchecked"]; var values = ["this", "true", "false", "null"]; brush.push(values, {klass: 'constant'}); brush.push(types, {klass: 'type'}); brush.push(keywords, {klass: 'keyword'}); brush.push(operators, {klass: 'operator'}); brush.push(access, {klass: 'access'}); // Functions brush.push(Syntax.lib.cStyleFunction); brush.push({ pattern: /(?:\.)([a-z_][a-z0-9_]+)/gi, matches: Syntax.extractMatches({klass: 'function'}) }); // Camel Case Types brush.push(Syntax.lib.camelCaseType); // Comments brush.push(Syntax.lib.cStyleComment); brush.push(Syntax.lib.cppStyleComment); brush.push(Syntax.lib.webLink); // Strings brush.push(Syntax.lib.singleQuotedString); brush.push(Syntax.lib.doubleQuotedString); brush.push(Syntax.lib.stringEscape); brush.push(Syntax.lib.decimalNumber); brush.push(Syntax.lib.hexNumber); });
Close