node-coff-pe

0.1.2 • Public • Published

NodeJS: PE file format

Read Windows EXE/DLL/... files with NodeJS.

Usage:

var fs = require('fs');
var pe = require('node-coff-pe');
 
var fd = fs.openSync('./some.exe', 'r');
pe.read(fd, function(err, exehdr, coffhdr) {
  if (err) throw err;
  console.log(exehdr);
  console.log(coffhdr);
  pe.getSection(fd, coffhdr, '.rsrc', function(err, data) {
    if (err) throw err;
    console.log(data); // could be null, if section not found
  });
  pe.checksum(fd, coffhdr, function(err, checksum) {
    if (err) throw err;
    console.log('Checksum:', checksum.toString(16));
    console.log('Expected:', coffhdr.Optional.Checksum.toString(16));
  });
});

TODO: Update, Write.

Copyright (c) 2016 Tobias Hoffmann

License: https://opensource.org/licenses/MIT

Dependents (0)

Package Sidebar

Install

npm i node-coff-pe

Weekly Downloads

6

Version

0.1.2

License

MIT

Last publish

Collaborators

  • smilingthax