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-gitdep
binwalk
Commits
23497c18
Commit
23497c18
authored
10 years ago
by
devttys0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed common LZMA false positives
parent
30877f6f
fix-entropy-graph-legend
No related merge requests found
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
binwalk
src/binwalk/magic/binwalk
+0
-0
lzma
src/magic/lzma
+0
-0
signature_scan.py
src/scripts/examples/signature_scan.py
+5
-5
No files found.
src/binwalk/magic/binwalk
View file @
23497c18
This diff is collapsed.
Click to expand it.
src/magic/lzma
View file @
23497c18
This diff is collapsed.
Click to expand it.
src/scripts/examples/signature_scan.py
View file @
23497c18
...
...
@@ -5,9 +5,9 @@ import binwalk
try
:
# Perform a signature scan against the files specified on the command line and suppress the usual binwalk output.
for
module
in
binwalk
.
Modules
()
.
execute
(
*
sys
.
argv
[
1
:],
signature
=
True
,
quiet
=
True
):
print
(
"
%
s Results:"
%
module
.
name
)
for
result
in
module
.
results
:
print
(
"
\t
%
s 0x
%.8
X
%
s"
%
(
result
.
file
.
name
,
result
.
offset
,
result
.
description
))
for
module
in
binwalk
.
Modules
()
.
execute
(
*
sys
.
argv
[
1
:],
signature
=
True
,
quiet
=
True
):
print
(
"
%
s Results:"
%
module
.
name
)
for
result
in
module
.
results
:
print
(
"
\t
%
s 0x
%.8
X
%
s"
%
(
result
.
file
.
name
,
result
.
offset
,
result
.
description
))
except
binwalk
.
ModuleException
as
e
:
pass
pass
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