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
b3beae4e
Commit
b3beae4e
authored
Feb 23, 2015
by
Bernardo Rodrigues
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated install docs to include latest capstone
parent
f1e187c7
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 @
b3beae4e
...
...
@@ -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:
```
bash
$
wget http://www.capstone-engine.org/download/2.1.2/capstone-2.1.2.tgz
$
tar
-zxvf
capstone-2.1.2.tgz
$
(
cd
capstone-2.1.2
&&
./make.sh
&&
sudo
make install
)
$
(
cd
capstone-2.1.2/bindings/python
&&
sudo
python ./setup.py install
)
# Python2.7
$
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
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:
...
...
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