https://github.com/kurtamohler/executable-buffer
C++ class to create and manipulate an array of executable instructions at runtime
https://github.com/kurtamohler/executable-buffer
Last synced: 30 days ago
JSON representation
C++ class to create and manipulate an array of executable instructions at runtime
- Host: GitHub
- URL: https://github.com/kurtamohler/executable-buffer
- Owner: kurtamohler
- Created: 2019-08-14T21:01:45.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-29T21:57:42.000Z (almost 6 years ago)
- Last Synced: 2025-02-08T06:42:15.642Z (5 months ago)
- Language: C++
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# executable-buffer
This repo provides an ExecutableBuffer C++ class which can be used to
generate, modify, and execute machine code at runtime. In other words,
this is a library to enable you to create self-modifying code.## Supported Environments
Currently this library only works on Linux machines.
## Example Applications
### Build
```
$ make all
```### NOP example
This example simply fills and executes the buffer with NOP instructions.