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
/
usr /
share /
nodejs /
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.56
KB
-rw-r--r--
websocket.js
31.72
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