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
23030cf4
Commit
23030cf4
authored
Feb 25, 2015
by
devttys0
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #113 from bmaia/patch-3
Updated install docs to include latest capstone
parents
f1e187c7
b3beae4e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
INSTALL.md
INSTALL.md
+13
-4
No files found.
INSTALL.md
View file @
23030cf4
...
@@ -46,10 +46,19 @@ $ sudo pip3 install pyqtgraph
...
@@ -46,10 +46,19 @@ $ sudo pip3 install pyqtgraph
Binwalk's
`--disasm`
option requires the
[
Capstone
](
http://www.capstone-engine.org/
)
disassembly framework and its corresponding Python bindings:
Binwalk's
`--disasm`
option requires the
[
Capstone
](
http://www.capstone-engine.org/
)
disassembly framework and its corresponding Python bindings:
```
bash
```
bash
$
wget http://www.capstone-engine.org/download/2.1.2/capstone-2.1.2.tgz
# Python2.7
$
tar
-zxvf
capstone-2.1.2.tgz
$
wget http://www.capstone-engine.org/download/3.0.1/capstone-3.0.1.tgz
$
(
cd
capstone-2.1.2
&&
./make.sh
&&
sudo
make install
)
$
tar
-zxvf
capstone-3.0.1.tgz
$
(
cd
capstone-2.1.2/bindings/python
&&
sudo
python ./setup.py install
)
$
(
cd
capstone-3.0.1
&&
./make.sh
&&
sudo
make install
)
$
(
cd
capstone-3.0.1/bindings/python
&&
sudo
python ./setup.py install
)
```
```
bash
# Python3.x
$
wget http://www.capstone-engine.org/download/3.0.1/capstone-3.0.1.tgz
$
tar
-zxvf
capstone-3.0.1.tgz
$
(
cd
capstone-3.0.1
&&
./make.sh
&&
sudo
make install
)
$
(
cd
capstone-3.0.1/bindings/python
&&
sudo
python3 ./setup.py install
)
```
```
Binwalk relies on multiple external utilties in order to automatically extract/decompress files and data:
Binwalk relies on multiple external utilties in order to automatically extract/decompress files and data:
...
...
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