Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
istanbul /
lib /
util /
Delete
Unzip
Name
Size
Permission
Date
Action
factory.js
2.76
KB
-rw-r--r--
2023-08-21 05:40
file-matcher.js
2.26
KB
-rw-r--r--
2023-08-21 05:40
file-writer.js
4.06
KB
-rw-r--r--
2023-08-21 05:40
help-formatter.js
798
B
-rw-r--r--
2023-08-21 05:40
input-error.js
283
B
-rw-r--r--
2023-08-21 05:40
insertion-text.js
3.04
KB
-rw-r--r--
2023-08-21 05:40
meta.js
376
B
-rw-r--r--
2023-08-21 05:40
tree-summarizer.js
6.32
KB
-rw-r--r--
2023-08-21 05:40
writer.js
2.68
KB
-rw-r--r--
2023-08-21 05:40
yui-load-hook.js
1.78
KB
-rw-r--r--
2023-08-21 05:40
Save
Rename
/* Copyright (c) 2012, Yahoo! Inc. All rights reserved. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */ //EXPERIMENTAL code: do not rely on this in anyway until the docs say it is allowed var path = require('path'), yuiRegexp = /yui-nodejs\.js$/; module.exports = function (matchFn, transformFn, verbose) { return function (file) { if (!file.match(yuiRegexp)) { return; } var YMain = require(file), YUI, loaderFn, origGet; if (YMain.YUI) { YUI = YMain.YUI; loaderFn = YUI.Env && YUI.Env.mods && YUI.Env.mods['loader-base'] ? YUI.Env.mods['loader-base'].fn : null; if (!loaderFn) { return; } if (verbose) { console.log('Applying YUI load post-hook'); } YUI.Env.mods['loader-base'].fn = function (Y) { loaderFn.call(null, Y); origGet = Y.Get._exec; Y.Get._exec = function (data, url, cb) { if (matchFn(url) || matchFn(path.resolve(url))) { //allow for relative paths as well if (verbose) { console.log('Transforming [' + url + ']'); } try { data = transformFn(data, url); } catch (ex) { console.error('Error transforming: ' + url + ' return original code'); console.error(ex.message || ex); if (ex.stack) { console.error(ex.stack); } } } return origGet.call(Y, data, url, cb); }; return Y; }; } }; };