Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
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
/
home /
syrihapj /
public_html /
node_modules /
ws /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
buffer-util.js
2.84
KB
-rw-r--r--
constants.js
360
B
-rw-r--r--
event-target.js
6.44
KB
-rw-r--r--
extension.js
6.04
KB
-rw-r--r--
limiter.js
1.01
KB
-rw-r--r--
permessage-deflate.js
13.69
KB
-rw-r--r--
receiver.js
14.17
KB
-rw-r--r--
sender.js
12.37
KB
-rw-r--r--
stream.js
3.99
KB
-rw-r--r--
subprotocol.js
1.46
KB
-rw-r--r--
validation.js
3.07
KB
-rw-r--r--
websocket-server.js
13.38
KB
-rw-r--r--
websocket.js
30.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : limiter.js
'use strict'; const kDone = Symbol('kDone'); const kRun = Symbol('kRun'); /** * A very simple job queue with adjustable concurrency. Adapted from * https://github.com/STRML/async-limiter */ class Limiter { /** * Creates a new `Limiter`. * * @param {Number} [concurrency=Infinity] The maximum number of jobs allowed * to run concurrently */ constructor(concurrency) { this[kDone] = () => { this.pending--; this[kRun](); }; this.concurrency = concurrency || Infinity; this.jobs = []; this.pending = 0; } /** * Adds a job to the queue. * * @param {Function} job The job to run * @public */ add(job) { this.jobs.push(job); this[kRun](); } /** * Removes a job from the queue and runs it if possible. * * @private */ [kRun]() { if (this.pending === this.concurrency) return; if (this.jobs.length) { const job = this.jobs.shift(); this.pending++; job(this[kDone]); } } } module.exports = Limiter;
Close