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.python.js
// brush: "python" 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('python', function(brush) { var keywords = ["and", "as", "assert", "break", "class", "continue", "def", "del", "elif", "else", "except", "exec", "finally", "for", "from", "global", "if", "import", "in", "is", "lambda", "not", "or", "pass", "print", "raise", "return", "try", "while", "with", "yield"]; var operators = ["!=", "%", "%=", "&", "&=", "(", ")", "*", "**", "**=", "*=", "+", "+=", ",", "-", "-=", ".", "/", "//", "//=", "/=", ":", ";", "<", "<<", "<<=", "<=", "<>", "=", "==", ">", ">=", ">>", ">>=", "@", "[", "]", "^", "^=", "`", "`", "{", "|", "|=", "}", "~"]; // Extracted from http://docs.python.org/library/functions.html var builtinFunctions = ["abs", "all", "any", "basestring", "bin", "bool", "callable", "chr", "classmethod", "cmp", "compile", "complex", "delattr", "dict", "dir", "divmod", "enumerate", "eval", "execfile", "file", "filter", "float", "format", "frozenset", "getattr", "globals", "hasattr", "hash", "help", "hex", "id", "input", "int", "isinstance", "issubclass", "iter", "len", "list", "locals", "long", "map", "max", "min", "next", "object", "oct", "open", "ord", "pow", "print", "property", "range", "raw_input", "reduce", "reload", "repr", "reversed", "round", "set", "setattr", "slice", "sorted", "staticmethod", "str", "sum", "super", "tuple", "type", "type", "unichr", "unicode", "vars", "xrange", "zip", "__import__", "apply", "buffer", "coerce", "intern"]; var values = ["self", "True", "False", "None"]; brush.push({pattern: /^\s*@\w+/gm, klass: 'decorator'}); brush.push(values, {klass: 'constant'}); brush.push(keywords, {klass: 'keyword'}); brush.push(operators, {klass: 'operator'}); brush.push(builtinFunctions, {klass: 'builtin'}); // ClassNames (CamelCase) brush.push(Syntax.lib.camelCaseType); brush.push(Syntax.lib.cStyleFunction); brush.push(Syntax.lib.perlStyleComment); brush.push({pattern: /(['\"]{3})([^\1])*?\1/gm, klass: 'comment'}); 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); brush.processes['function'] = Syntax.lib.webLinkProcess("http://docs.python.org/search.html?q="); brush.processes['type'] = Syntax.lib.webLinkProcess("http://docs.python.org/search.html?q="); brush.processes['builtin'] = Syntax.lib.webLinkProcess("http://docs.python.org/search.html?q="); });
Close