Commit 9c77840c by Craig Heffner

Merged sundhaug92's updates to documentation and .gitignore/.travis.yml

parent f1fe110e
build/
.coverage
*.extracted/
*.pyc
......@@ -81,7 +81,7 @@ for module in binwalk.scan('firmware1.bin', 'firmware2.bin', signature=True, qui
Note the above use of the `--quiet` option which prevents the binwalk module from printing its normal output to screen.
Each module object will also have an additional `extractor` attribute, which is an instance of the `binwalk.modules.extractor.Extractor` class. Of particular use is `binwalk.modules.extractor.Extrctor.output`, a dictionary containing information about carved/extracted data:
Each module object will also have an additional `extractor` attribute, which is an instance of the `binwalk.modules.extractor.Extractor` class. Of particular use is `binwalk.modules.extractor.Extractor.output`, a dictionary containing information about carved/extracted data:
```python
for module in binwalk.scan('firmware1.bin', 'firmware2.bin', signature=True, quiet=True, extract=True):
......
......@@ -31,6 +31,12 @@ Although all binwalk run-time dependencies are optional, the `python-lzma` modul
$ sudo apt-get install python-lzma
```
Binwalk uses the `nosetest` library for tests and `coverage` for test-coverage:
```bash
$ sudo pip install nose coverage
```
Binwalk uses the `pycrypto` library to decrypt some known encrypted firmware images:
```bash
......
[![Build Status](https://travis-ci.org/devttys0/binwalk)](https://travis-ci.org/devttys0/binwalk)
Description
===========
......
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