https://github.com/property404/elfstream
Stream elf files over a network
https://github.com/property404/elfstream
Last synced: about 1 year 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-13T22:06:13.000Z (about 5 years ago)
- Last Synced: 2025-02-02T11:41:40.154Z (over 1 year ago)
- Language: C++
- Size: 236 KB
- Stars: 0
- Watchers: 3
- 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 git@github.com/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