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 1 year ago
JSON representation
Create a stream from one or more memory regions.
- Host: GitHub
- URL: https://github.com/nowsecure/frida-memory-stream
- Owner: nowsecure
- License: mit
- Created: 2016-06-07T13:22:07.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2024-01-22T10:26:04.000Z (over 2 years ago)
- Last Synced: 2024-10-15T02:06:52.180Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 25.4 KB
- Stars: 10
- Watchers: 8
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-frida - frida-memory-stream - Create a stream from one or more memory regions. (Libraries)
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);
```