sysvelf

0.1.0 • Public • Published

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

Build Status

Credits

License

The MIT License

Copyright (c) 2013 Sifteo Inc. <http://www.sifteo.com/>

Readme

Keywords

none

Package Sidebar

Install

npm i sysvelf

Weekly Downloads

5

Version

0.1.0

License

none

Last publish

Collaborators

  • jaredhanson