Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
binwalk
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
binwalk
Commits
2bf2c4a8
Commit
2bf2c4a8
authored
Jul 29, 2014
by
devttys0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reversed hashlib commit
parent
e6916e06
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
common.py
src/binwalk/core/common.py
+1
-1
module.py
src/binwalk/core/module.py
+1
-1
binida.py
src/scripts/binida.py
+1
-1
No files found.
src/binwalk/core/common.py
View file @
2bf2c4a8
...
@@ -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
*
...
...
src/binwalk/core/module.py
View file @
2bf2c4a8
...
@@ -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
:
...
...
src/scripts/binida.py
View file @
2bf2c4a8
...
@@ -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
=
""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment