Last active
August 29, 2015 14:26
-
-
Save dcode/a828034a883cc06634f9 to your computer and use it in GitHub Desktop.
Install Laikaboss on CentOS 7.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#===============================================================# | |
# Installing Laikaboss on CentOS 7.1 | |
#===============================================================# | |
# Enable EPEL repo | |
sudo yum install -y epel-release | |
# Install dcode/cyberdev repo | |
curl -s https://packagecloud.io/install/repositories/dcode/cyberdev/script.rpm.sh | sudo bash | |
# Install custom built RPMs from dcode/cyberdev repo above or install this from source. | |
sudo yum install -y yara-3.4.0-1 | |
sudo yum install -y yara-python-3.4.0-1 | |
sudo yum install -y unrar-5.0.3 | |
sudo yum install -y python-progressbar python-zmq python-gevent pexpect python-IPy python-m2ext perl-Image-ExifTool python-msgpack ssdeep-devel python-cffi python-devel xz-libs python-pip clamav | |
sudo pip install interruptingcow | |
sudo pip install pefile pyclamd | |
sudo pip install -U six | |
sudo pip install fluent-logger olefile ssdeep py-unrar2 pylzma | |
curl -L -J -O https://github.com/smarnach/pyexiftool/archive/master.tar.gz | |
tar xzvf pyexiftool-master.tar.gz; cd pyexiftool-master | |
python setup.py build | |
sudo python setup.py install | |
# Install jq (optional, but recommended) | |
curl -L -J https://github.com/stedolan/jq/releases/download/jq-1.5rc2/jq-linux-x86_64 | sudo tee /usr/local/bin/jq >/dev/null | |
sudo chmod +x /usr/local/bin/jq | |
# Clone laikaboss repo | |
git clone https://github.com/lmco/laikaboss.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment