Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/nowsecure/frida-memory-stream
- Owner: nowsecure
- License: mit
- Created: 2016-06-07T13:22:07.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-01-22T10:26:04.000Z (12 months ago)
- Last Synced: 2024-10-15T02:06:52.180Z (3 months 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);
```