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.1
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.go.js
// brush: "go" 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('go', function(brush) { var keywords = ["break", "default", "func", "interface", "select", "case", "defer", "go", "map", "struct", "chan", "else", "goto", "package", "switch", "const", "fallthrough", "if", "range", "type", "continue", "for", "import", "return", "var"]; var types = [ /u?int\d*/g, /float\d+/g, /complex\d+/g, "byte", "uintptr", "string", ]; var operators = ["+", "&", "+=", "&=", "&&", "==", "!=", "-", "|", "-=", "|=", "||", "<", "<=", "*", "^", "*=", "^=", "<-", ">", ">=", "/", "<<", "/=", "<<=", "++", "=", ":=", ",", ";", "%", ">>", "%=", ">>=", "--", "!", "...", ".", ":", "&^", "&^="]; var values = ["true", "false", "iota", "nil"]; var functions = ["append", "cap", "close", "complex", "copy", "imag", "len", "make", "new", "panic", "print", "println", "real", "recover"]; brush.push(values, {klass: 'constant'}); brush.push(types, {klass: 'type'}); brush.push(keywords, {klass: 'keyword'}); brush.push(operators, {klass: 'operator'}); brush.push(functions, {klass: 'function'}); brush.push(Syntax.lib.cStyleFunction); brush.push(Syntax.lib.camelCaseType); 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); // Numbers brush.push(Syntax.lib.decimalNumber); brush.push(Syntax.lib.hexNumber); });
Close