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.pascal.js
// brush: "pascal" aliases: ["delphi"] // 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. // // Constructed using information from http://pascal.comsci.us/etymology/ // Syntax.register('pascal', function(brush) { var keywords = ["absolute", "abstract", "all", "and_then", "as", "asm", "asmname", "attribute", "begin", "bindable", "c", "c_language", "case", "class", "const", "constructor", "destructor", "dispose", "do", "downto", "else", "end", "except", "exit", "export", "exports", "external", "far", "file", "finalization", "finally", "for", "forward", "function", "goto", "if", "implementation", "import", "inherited", "initialization", "inline", "interface", "interrupt", "is", "keywords", "label", "library", "module", "name", "near", "new", "object", "of", "on", "only", "operator", "or_else", "otherwise", "packed", "pascal", "pow", "private", "procedure", "program", "property", "protected", "public", "published", "qualified", "raise", "record", "repeat", "resident", "restricted", "segment", "set", "then", "threadvar", "to", "try", "type", "unit", "until", "uses", "value", "var", "view", "virtual", "while", "with"]; var operators = ["+", "-", "*", "/", "div", "mod", "and", "or", "xor", "shl", "shr", "not", "=", ">=", ">", "<>", "<=", "<", "in", ":="]; var values = ["true", "false", "nil"]; // Keywords are case insensitive brush.push(values, {klass: 'constant', options: 'gi'}); brush.push(keywords, {klass: 'keyword', options: 'gi'}); brush.push(operators, {klass: 'operator', options: 'gi'}); brush.push(Syntax.lib.camelCaseType); // Pascal style comments brush.push({ pattern: /\{[\s\S]*?\}/gm, klass: 'comment', allow: ['href'] }); brush.push({ pattern: /\(\*[\s\S]*?\*\)/gm, klass: 'comment', allow: ['href'] }); brush.push(Syntax.lib.webLink); // Strings brush.push(Syntax.lib.singleQuotedString); brush.push(Syntax.lib.doubleQuotedString); brush.push(Syntax.lib.stringEscape); // Numbers brush.push(Syntax.lib.decimalNumber); brush.push(Syntax.lib.hexNumber); // Functions brush.push(Syntax.lib.cStyleFunction); });
Close