Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nowsecure/frida-memory-stream

Create a stream from one or more memory regions.
https://github.com/nowsecure/frida-memory-stream

Last synced: about 2 months ago
JSON representation

Create a stream from one or more memory regions.

Awesome Lists containing this project

README

        

# frida-memory-stream

Create a stream from one or more memory regions.

## Example

```js
import memoryStream from 'frida-memory-stream';

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