Commit 2bf2c4a8 by devttys0

Reversed hashlib commit

parent e6916e06
...@@ -5,7 +5,7 @@ import os ...@@ -5,7 +5,7 @@ import os
import re import re
import sys import sys
import ast import ast
#import hashlib import hashlib
import operator as op import operator as op
import binwalk.core.idb import binwalk.core.idb
from binwalk.core.compat import * from binwalk.core.compat import *
......
...@@ -690,7 +690,7 @@ class Modules(object): ...@@ -690,7 +690,7 @@ class Modules(object):
if hasattr(binwalk.modules, dependency.name): if hasattr(binwalk.modules, dependency.name):
dependency.module = getattr(binwalk.modules, dependency.name) dependency.module = getattr(binwalk.modules, dependency.name)
else: else:
continue # CJH raise ModuleException("%s depends on %s which was not found in binwalk.modules.__init__.py\n" % (str(module), dependency.name)) raise ModuleException("%s depends on %s which was not found in binwalk.modules.__init__.py\n" % (str(module), dependency.name))
# No recursive dependencies, thanks # No recursive dependencies, thanks
if dependency.module == module: if dependency.module == module:
......
...@@ -4,7 +4,7 @@ import binwalk ...@@ -4,7 +4,7 @@ import binwalk
class binwalk_t(idaapi.plugin_t): class binwalk_t(idaapi.plugin_t):
flags = 0 flags = 0
comment = "Binwalk IDA Plugin" comment = "Scan the current IDB for file signatures"
help = "" help = ""
wanted_name = "Binwalk IDA Plugin" wanted_name = "Binwalk IDA Plugin"
wanted_hotkey = "" wanted_hotkey = ""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment