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
63282988
Commit
63282988
authored
7 years ago
by
devttys0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made entropy module's output file accessible via the API
parent
e0873ac9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
entropy.py
src/binwalk/modules/entropy.py
+3
-2
No files found.
src/binwalk/modules/entropy.py
View file @
63282988
...
...
@@ -84,6 +84,7 @@ class Entropy(Module):
self
.
HEADER
[
-
1
]
=
"ENTROPY"
self
.
max_description_length
=
0
self
.
file_markers
=
{}
self
.
output_file
=
None
if
self
.
use_zlib
:
self
.
algorithm
=
self
.
gzip
...
...
@@ -310,8 +311,8 @@ class Entropy(Module):
ax
.
legend
(
loc
=
'lower right'
,
shadow
=
True
)
if
self
.
save_plot
:
o
ut_file
=
os
.
path
.
join
(
os
.
getcwd
(),
os
.
path
.
basename
(
fname
))
+
'.png'
fig
.
savefig
(
o
ut_file
)
self
.
outp
ut_file
=
os
.
path
.
join
(
os
.
getcwd
(),
os
.
path
.
basename
(
fname
))
+
'.png'
fig
.
savefig
(
self
.
outp
ut_file
)
else
:
plt
.
show
()
This diff is collapsed.
Click to expand it.
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