https://github.com/luser/elf.js
Simple ELF parser in JavaScript
https://github.com/luser/elf.js
Last synced: 12 months ago
JSON representation
Simple ELF parser in JavaScript
- Host: GitHub
- URL: https://github.com/luser/elf.js
- Owner: luser
- Created: 2011-06-28T15:31:54.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2011-07-01T01:21:20.000Z (about 15 years ago)
- Last Synced: 2025-06-12T20:32:13.134Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 89.8 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
elf.js: A (very simple) ELF parser in JavaScript.
Relies heavily on typed arrays, as well as:
https://github.com/davidflanagan/BufferView
and DataView, or:
https://github.com/davidflanagan/DataView.js
and:
https://github.com/luser/uint64.js
Usage:
var elf = new ELF(buffer);
where |arraybuffer| is an ArrayBuffer containing the bytes of the ELF file.