Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
tapable /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
AsyncParallelBailHook.js
2.12
KB
-rw-r--r--
AsyncParallelHook.js
721
B
-rw-r--r--
AsyncSeriesBailHook.js
851
B
-rw-r--r--
AsyncSeriesHook.js
711
B
-rw-r--r--
AsyncSeriesLoopHook.js
728
B
-rw-r--r--
AsyncSeriesWaterfallHook.js
1.06
KB
-rw-r--r--
Hook.js
4.29
KB
-rw-r--r--
HookCodeFactory.js
8.79
KB
-rw-r--r--
HookMap.js
995
B
-rw-r--r--
MultiHook.js
837
B
-rw-r--r--
SyncBailHook.js
922
B
-rw-r--r--
SyncHook.js
785
B
-rw-r--r--
SyncLoopHook.js
810
B
-rw-r--r--
SyncWaterfallHook.js
1.18
KB
-rw-r--r--
Tapable.js
1.91
KB
-rw-r--r--
index.js
790
B
-rw-r--r--
simpleAsyncCases.js
4.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : HookMap.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; class HookMap { constructor(factory) { this._map = new Map(); this._factory = factory; this._interceptors = []; } get(key) { return this._map.get(key); } for(key) { const hook = this.get(key); if(hook !== undefined) { return hook; } let newHook = this._factory(key); const interceptors = this._interceptors; for(let i = 0; i < interceptors.length; i++) { newHook = interceptors[i].factory(key, newHook); } this._map.set(key, newHook); return newHook; } intercept(interceptor) { this._interceptors.push(Object.assign({ factory: (key, hook) => hook }, interceptor)); } tap(key, options, fn) { return this.for(key).tap(options, fn); } tapAsync(key, options, fn) { return this.for(key).tapAsync(options, fn); } tapPromise(key, options, fn) { return this.for(key).tapPromise(options, fn); } } module.exports = HookMap;
Close