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.216.67
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.ooc.js
// brush: "ooc" aliases: [] // 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('ooc', function(brush) { var keywords = ["class", "interface", "implement", "abstract", "extends", "from", "const", "final", "static", "import", "use", "extern", "inline", "proto", "break", "continue", "fallthrough", "operator", "if", "else", "for", "while", "do", "switch", "case", "as", "in", "version", "return", "include", "cover", "func"]; var types = ["Int", "Int8", "Int16", "Int32", "Int64", "Int80", "Int128", "UInt", "UInt8", "UInt16", "UInt32", "UInt64", "UInt80", "UInt128", "Octet", "Short", "UShort", "Long", "ULong", "LLong", "ULLong", "Float", "Double", "LDouble", "Float32", "Float64", "Float128", "Char", "UChar", "WChar", "String", "Void", "Pointer", "Bool", "SizeT", "This"]; var operators = ["+", "-", "*", "/", "+=", "-=", "*=", "/=", "=", ":=", "==", "!=", "!", "%", "?", ">", "<", ">=", "<=", "&&", "||", "&", "|", "^", ".", "~", "..", ">>", "<<", ">>>", "<<<", ">>=", "<<=", ">>>=", "<<<=", "%=", "^=", "@"]; var values = ["this", "super", "true", "false", "null", /[A-Z][A-Z0-9_]+/g]; brush.push(values, {klass: 'constant'}); brush.push(types, {klass: 'type'}); brush.push(keywords, {klass: 'keyword'}); brush.push(operators, {klass: 'operator'}); // Hex, Octal and Binary numbers :) brush.push({ pattern: /0[xcb][0-9a-fA-F]+/g, klass: 'constant' }); brush.push(Syntax.lib.decimalNumber); // ClassNames (CamelCase) brush.push(Syntax.lib.camelCaseType); brush.push(Syntax.lib.cStyleType); brush.push(Syntax.lib.cStyleFunction); 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.processes['function'] = Syntax.lib.webLinkProcess("http://docs.ooc-lang.org/search.html?q="); });
Close