Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 235 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 235 Bytes

frida-memory-stream

Create a stream from one or more memory regions.

Example

import memoryStream from 'frida-memory-stream';

const m = Process.enumerateModules()[0];
memoryStream(m.base, m.size).pipe(networkStream);