Skip to content

Commit

Permalink
Merge pull request #11 from jshlbrd/jshlbrd/imphash
Browse files Browse the repository at this point in the history
Add imphash to meta_pe
  • Loading branch information
marnao committed Oct 2, 2015
2 parents a148169 + c98f280 commit c827b2f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions laikaboss/modules/meta_pe.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ def _run(self, scanObject, result, depth, args):
raise
except:
logging.debug('No export entries')

try:
scanObject.addMetadata(self.module_name, 'Imphash', pe.get_imphash())
except:
logging.debug('Unable to identify imphash')

try:
for entry in pe.DIRECTORY_ENTRY_IMPORT:
Expand Down

0 comments on commit c827b2f

Please sign in to comment.