Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.119.100.196
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
panel /
BTPanel /
static /
ace /
snippets /
[ HOME SHELL ]
Name
Size
Permission
Action
apache_conf.js
480
B
-rwxr-xr-x
batchfile.js
474
B
-rwxr-xr-x
c_cpp.js
2.92
KB
-rwxr-xr-x
csharp.js
465
B
-rwxr-xr-x
css.js
19.51
KB
-rwxr-xr-x
django.js
4.23
KB
-rwxr-xr-x
dockerfile.js
477
B
-rwxr-xr-x
golang.js
465
B
-rwxr-xr-x
html.js
19.02
KB
-rwxr-xr-x
ini.js
456
B
-rwxr-xr-x
java.js
4.54
KB
-rwxr-xr-x
javascript.js
4.08
KB
-rwxr-xr-x
json.js
459
B
-rwxr-xr-x
jsp.js
3.03
KB
-rwxr-xr-x
less.js
459
B
-rwxr-xr-x
lua.js
835
B
-rwxr-xr-x
makefile.js
530
B
-rwxr-xr-x
markdown.js
2.25
KB
-rwxr-xr-x
mysql.js
462
B
-rwxr-xr-x
nginx.js
462
B
-rwxr-xr-x
objectivec.js
477
B
-rwxr-xr-x
perl.js
5.7
KB
-rwxr-xr-x
perl6.js
462
B
-rwxr-xr-x
pgsql.js
462
B
-rwxr-xr-x
php.js
7.11
KB
-rwxr-xr-x
php_laravel_blade.js
484
B
-rwxr-xr-x
powershell.js
477
B
-rwxr-xr-x
python.js
3.91
KB
-rwxr-xr-x
r.js
2.89
KB
-rwxr-xr-x
ruby.js
21.1
KB
-rwxr-xr-x
rust.js
459
B
-rwxr-xr-x
sass.js
459
B
-rwxr-xr-x
scss.js
459
B
-rwxr-xr-x
sh.js
2.32
KB
-rwxr-xr-x
sql.js
1.24
KB
-rwxr-xr-x
sqlserver.js
2.41
KB
-rwxr-xr-x
swift.js
462
B
-rwxr-xr-x
text.js
459
B
-rwxr-xr-x
typescript.js
477
B
-rwxr-xr-x
vbscript.js
471
B
-rwxr-xr-x
verilog.js
468
B
-rwxr-xr-x
xml.js
456
B
-rwxr-xr-x
yaml.js
459
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : javascript.js
define("ace/snippets/javascript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='# Prototype\nsnippet proto\n ${1:class_name}.prototype.${2:method_name} = function(${3:first_argument}) {\n ${4:// body...}\n };\n# Function\nsnippet fun\n function ${1?:function_name}(${2:argument}) {\n ${3:// body...}\n }\n# Anonymous Function\nregex /((=)\\s*|(:)\\s*|(\\()|\\b)/f/(\\))?/\nsnippet f\n function${M1?: ${1:functionName}}($2) {\n ${0:$TM_SELECTED_TEXT}\n }${M2?;}${M3?,}${M4?)}\n# Immediate function\ntrigger \\(?f\\(\nendTrigger \\)?\nsnippet f(\n (function(${1}) {\n ${0:${TM_SELECTED_TEXT:/* code */}}\n }(${1}));\n# if\nsnippet if\n if (${1:true}) {\n ${0}\n }\n# if ... else\nsnippet ife\n if (${1:true}) {\n ${2}\n } else {\n ${0}\n }\n# tertiary conditional\nsnippet ter\n ${1:/* condition */} ? ${2:a} : ${3:b}\n# switch\nsnippet switch\n switch (${1:expression}) {\n case \'${3:case}\':\n ${4:// code}\n break;\n ${5}\n default:\n ${2:// code}\n }\n# case\nsnippet case\n case \'${1:case}\':\n ${2:// code}\n break;\n ${3}\n\n# while (...) {...}\nsnippet wh\n while (${1:/* condition */}) {\n ${0:/* code */}\n }\n# try\nsnippet try\n try {\n ${0:/* code */}\n } catch (e) {}\n# do...while\nsnippet do\n do {\n ${2:/* code */}\n } while (${1:/* condition */});\n# Object Method\nsnippet :f\nregex /([,{[])|^\\s*/:f/\n ${1:method_name}: function(${2:attribute}) {\n ${0}\n }${3:,}\n# setTimeout function\nsnippet setTimeout\nregex /\\b/st|timeout|setTimeo?u?t?/\n setTimeout(function() {${3:$TM_SELECTED_TEXT}}, ${1:10});\n# Get Elements\nsnippet gett\n getElementsBy${1:TagName}(\'${2}\')${3}\n# Get Element\nsnippet get\n getElementBy${1:Id}(\'${2}\')${3}\n# console.log (Firebug)\nsnippet cl\n console.log(${1});\n# return\nsnippet ret\n return ${1:result}\n# for (property in object ) { ... }\nsnippet fori\n for (var ${1:prop} in ${2:Things}) {\n ${0:$2[$1]}\n }\n# hasOwnProperty\nsnippet has\n hasOwnProperty(${1})\n# docstring\nsnippet /**\n /**\n * ${1:description}\n *\n */\nsnippet @par\nregex /^\\s*\\*\\s*/@(para?m?)?/\n @param {${1:type}} ${2:name} ${3:description}\nsnippet @ret\n @return {${1:type}} ${2:description}\n# JSON.parse\nsnippet jsonp\n JSON.parse(${1:jstr});\n# JSON.stringify\nsnippet jsons\n JSON.stringify(${1:object});\n# self-defining function\nsnippet sdf\n var ${1:function_name} = function(${2:argument}) {\n ${3:// initial code ...}\n\n $1 = function($2) {\n ${4:// main code}\n };\n }\n# singleton\nsnippet sing\n function ${1:Singleton} (${2:argument}) {\n // the cached instance\n var instance;\n\n // rewrite the constructor\n $1 = function $1($2) {\n return instance;\n };\n \n // carry over the prototype properties\n $1.prototype = this;\n\n // the instance\n instance = new $1();\n\n // reset the constructor pointer\n instance.constructor = $1;\n\n ${3:// code ...}\n\n return instance;\n }\n# class\nsnippet class\nregex /^\\s*/clas{0,2}/\n var ${1:class} = function(${20}) {\n $40$0\n };\n \n (function() {\n ${60:this.prop = ""}\n }).call(${1:class}.prototype);\n \n exports.${1:class} = ${1:class};\n# \nsnippet for-\n for (var ${1:i} = ${2:Things}.length; ${1:i}--; ) {\n ${0:${2:Things}[${1:i}];}\n }\n# for (...) {...}\nsnippet for\n for (var ${1:i} = 0; $1 < ${2:Things}.length; $1++) {\n ${3:$2[$1]}$0\n }\n# for (...) {...} (Improved Native For-Loop)\nsnippet forr\n for (var ${1:i} = ${2:Things}.length - 1; $1 >= 0; $1--) {\n ${3:$2[$1]}$0\n }\n\n\n#modules\nsnippet def\n define(function(require, exports, module) {\n "use strict";\n var ${1/.*\\///} = require("${1}");\n \n $TM_SELECTED_TEXT\n });\nsnippet req\nguard ^\\s*\n var ${1/.*\\///} = require("${1}");\n $0\nsnippet requ\nguard ^\\s*\n var ${1/.*\\/(.)/\\u$1/} = require("${1}").${1/.*\\/(.)/\\u$1/};\n $0\n',t.scope="javascript"}); (function() { window.require(["ace/snippets/javascript"], function(m) { if (typeof module == "object" && typeof exports == "object" && module) { module.exports = m; } }); })();
Close