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
e382158b
Commit
e382158b
authored
Dec 11, 2017
by
devttys0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/devttys0/ReFirmLabs/
parent
e07757a5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
README.md
README.md
+2
-2
setup.py
setup.py
+1
-1
module.py
src/binwalk/core/module.py
+6
-2
No files found.
README.md
View file @
e382158b
...
...
@@ -20,7 +20,7 @@ If you're running Python 2.x, installing the optional Python lzma module is stro
$
sudo
apt-get install python-lzma
```
For instructions on installing other optional dependencies, see
[
INSTALL.md
](
https://github.com/
devttys0
/binwalk/blob/master/INSTALL.md
)
.
For instructions on installing other optional dependencies, see
[
INSTALL.md
](
https://github.com/
ReFirmLabs
/binwalk/blob/master/INSTALL.md
)
.
Usage
...
...
@@ -38,4 +38,4 @@ DECIMAL HEXADECIMAL DESCRIPTION
2319004 0x23629C Squashfs filesystem, little endian, version 4.0, compression: xz, size: 12442471 bytes, 3158 inodes, blocksize: 131072 bytes, blocksize: 131072 bytes, created: 2014-05-21 22:38:47
```
For additional examples and descriptions of advanced options, see the
[
wiki
](
https://github.com/
devttys0
/binwalk/wiki
)
.
For additional examples and descriptions of advanced options, see the
[
wiki
](
https://github.com/
ReFirmLabs
/binwalk/wiki
)
.
setup.py
View file @
e382158b
...
...
@@ -346,7 +346,7 @@ setup(
version
=
MODULE_VERSION
,
description
=
"Firmware analysis tool"
,
author
=
"Craig Heffner"
,
url
=
"https://github.com/
devttys0
/
%
s"
%
MODULE_NAME
,
url
=
"https://github.com/
ReFirmLabs
/
%
s"
%
MODULE_NAME
,
requires
=
[],
package_dir
=
{
""
:
"src"
},
packages
=
[
MODULE_NAME
],
...
...
src/binwalk/core/module.py
View file @
e382158b
...
...
@@ -732,8 +732,12 @@ class Modules(object):
Returns the help string.
'''
modules
=
{}
help_string
=
"
\n
Binwalk v
%
s
\n
Craig Heffner, https://github.com/devttys0/binwalk
\n
"
%
binwalk
.
__version__
help_string
+=
"
\n
Usage: binwalk [OPTIONS] [FILE1] [FILE2] [FILE3] ...
\n
"
help_string
=
"
\n
"
help_string
+=
"Binwalk v
%
s
\n
"
%
binwalk
.
__version__
help_string
+=
"Craig Heffner, ReFirmLabs
\n
"
help_string
+=
"https://github.com/ReFirmLabs/binwalk
\n
"
help_string
+=
"
\n
"
help_string
+=
"Usage: binwalk [OPTIONS] [FILE1] [FILE2] [FILE3] ...
\n
"
# Build a dictionary of modules and their ORDER attributes.
# This makes it easy to sort modules by their ORDER attribute for
...
...
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