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
6286612e
Commit
6286612e
authored
Nov 21, 2014
by
devttys0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed rising/falling entropy edge trigger reset bug
parent
56f81816
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
entropy.py
src/binwalk/modules/entropy.py
+5
-5
No files found.
src/binwalk/modules/entropy.py
View file @
6286612e
...
...
@@ -165,6 +165,11 @@ class Entropy(Module):
description
=
"
%
f"
%
entropy
if
not
self
.
config
.
verbose
:
if
last_edge
in
[
None
,
0
]
and
entropy
>
self
.
trigger_low
:
trigger_reset
=
True
elif
last_edge
in
[
None
,
1
]
and
entropy
<
self
.
trigger_high
:
trigger_reset
=
True
if
trigger_reset
and
entropy
>=
self
.
trigger_high
:
description
=
"Rising entropy edge (
%
f)"
%
entropy
display
=
self
.
display_results
...
...
@@ -179,11 +184,6 @@ class Entropy(Module):
display
=
False
description
=
"
%
f"
%
entropy
if
last_edge
in
[
None
,
0
]
and
entropy
>
self
.
trigger_low
:
trigger_reset
=
True
elif
last_edge
in
[
None
,
1
]
and
entropy
<
self
.
trigger_high
:
trigger_reset
=
True
r
=
self
.
result
(
offset
=
(
file_offset
+
i
),
file
=
fp
,
entropy
=
entropy
,
...
...
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