Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/property404/elfstream
Stream elf files over a network
https://github.com/property404/elfstream
Last synced: 27 days ago
JSON representation
Stream elf files over a network
- Host: GitHub
- URL: https://github.com/property404/elfstream
- Owner: Property404
- Created: 2021-01-27T03:40:35.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-13T22:06:13.000Z (almost 4 years ago)
- Last Synced: 2023-03-01T07:31:18.153Z (almost 2 years ago)
- Language: C++
- Size: 236 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Elf Stream
Stream/lazy-load elf files over a network## How it Works
Client receives a reduced version of the ELF file from the server.
Upon each access to a region of code or data that the client doesn't have,
the client requests that that region from the server## Building
Requires a C++20 compiler
`git clone --recursive [email protected]/Property404/ElfStream`
`make`
`make test`## Usage
On Server: `./esserver`
On Client: `./esclient -H example.com path/to/elf/file`## Limits
* Limited to 64-bit ELF files
* Limited to GNU/Linux on x86-64
* Does not load shared libraries not on system
* Does not copy resources(images, configs, etc) over network