Commit e382158b by devttys0

s/devttys0/ReFirmLabs/

parent e07757a5
......@@ -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).
......@@ -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],
......
......@@ -732,8 +732,12 @@ class Modules(object):
Returns the help string.
'''
modules = {}
help_string = "\nBinwalk v%s\nCraig Heffner, https://github.com/devttys0/binwalk\n" % binwalk.__version__
help_string += "\nUsage: 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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment