-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
EASE is a python tool to launch exploit. It works with Python2.
To install ease, you have to install three additional libraries:
- configparser, for configuration files parsing
- path.py, for path manipulation
- scapy, for launching network packet
Config Parser will be used to parse the default and the user configuration files.
You must install it with pip.
pip install configparserPath.py will be used for all path manipulation. You must install it with pip
pip install Path.pyScapy is a network library for python2. It used inside EASE to launch exploit modules.
The latest available in pip doesn't contain OT protocols support, so you have to install the developer version available on Github to used the EASE default exploits.
git clone https://github.com/secdev/scapy
cd scapy
python setup.py installYou can also used the fork I created to obtain some additional functionalities about Modbus protocols (usefull if you want to create some modbus exploits).
git clone https://github.com/thmsaurel/scapy cd scapy python setup.py install
## EASE installation
To install ease you just have to clone this repository.
```bash
git clone https://github.com/thmsaurel/ease
Now, you can use it !
## Links