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
4f1a9baf
Commit
4f1a9baf
authored
10 years ago
by
devttys0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed jffs2valid.py Python3 bugs
parent
acae7cb2
master
…
v2.3.4
v2.3.3
v2.3.2
v2.3.1
v2.3.0
v2.2.0
v2.1.1
python27
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
+4
-1
jffs2valid.py
src/binwalk/plugins/jffs2valid.py
+4
-1
No files found.
src/binwalk/plugins/jffs2valid.py
View file @
4f1a9baf
...
...
@@ -13,8 +13,11 @@ class JFFS2ValidPlugin(binwalk.core.plugin.Plugin):
MODULES
=
[
'Signature'
]
def
_check_crc
(
self
,
node_header
):
# struct and binascii want a bytes object in Python3
node_header
=
binwalk
.
core
.
compat
.
str2bytes
(
node_header
)
# Get the header's reported CRC value
if
node_header
[
0
:
2
]
==
"
\x19\x85
"
:
if
node_header
[
0
:
2
]
==
b
"
\x19\x85
"
:
header_crc
=
struct
.
unpack
(
">I"
,
node_header
[
8
:
12
])[
0
]
else
:
header_crc
=
struct
.
unpack
(
"<I"
,
node_header
[
8
:
12
])[
0
]
...
...
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