@bugsplat/sysvelf
v0.1.0
Published
An Executable and Linkable Format (ELF) parser.
Downloads
7
Readme
node-elf
This module provides a parser for ELF files.
Install
$ npm install sysvelf
Usage
Load an ELF file:
elf.load('/usr/local/bin/node', function(err, file) {
if (err) throw err;
console.log('version: ' + file.version);
console.log('machine: ' + file.machine);
});
Read a segment:
file.readSegment(0x01, function(err, buf) {
});
Read a section:
file.readSection('.text', function(err, buf) {
});
Examples
For an example that parses an ELF header, refer to the parse.js example.
Tests
$ npm install
$ make test
Credits
License
Copyright (c) 2013 Sifteo Inc. <http://www.sifteo.com/>