Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 7 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-29T21:57:42.000Z (over 5 years ago)
- Last Synced: 2024-12-15T09:10:31.830Z (21 days 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.