Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.2
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
ws /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
buffer-util.js
2.97
KB
-rw-rw-rw-
constants.js
268
B
-rw-rw-rw-
event-target.js
4.29
KB
-rw-rw-rw-
extension.js
6.72
KB
-rw-rw-rw-
limiter.js
1.01
KB
-rw-rw-rw-
permessage-deflate.js
13.98
KB
-rw-rw-rw-
receiver.js
13.71
KB
-rw-rw-rw-
sender.js
10.57
KB
-rw-rw-rw-
stream.js
4.54
KB
-rw-rw-rw-
validation.js
2.44
KB
-rw-rw-rw-
websocket-server.js
12.29
KB
-rw-rw-rw-
websocket.js
30.18
KB
-rw-rw-rw-
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