frida-fs
v5.2.5
Published
Create a stream from a filesystem resource
Downloads
7,392
Readme
frida-fs
Create a stream from a filesystem resource.
Example
const fs = require('frida-fs');
fs.createReadStream('/etc/hosts').pipe(networkStream);
const fs = require('frida-fs');
for (const elm of fs.list("/proc/self/")) {
console.log(JSON.stringify(elm));
}
console.log(fs.readFileSync("/etc/hosts"));