Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. sudo apt update && apt upgrade -y
  2. sudo apt install -y git wget curl net-tools
  3. snap install pycharm-community --classic
  4.  
  5. ## install cuckoo
  6. sudo apt-get install -y python python-pip python-dev libffi-dev libssl-dev
  7. sudo apt-get install -y python-virtualenv python-setuptools
  8. sudo apt-get install -y libjpeg-dev zlib1g-dev swig
  9. sudo apt-get install -y mongodb
  10. sudo apt-get install -y postgresql libpq-dev
  11. sudo apt-get install -y qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils python-libvirt
  12. sudo apt-get install -y virtualbox
  13. sudo apt-get install -y tcpdump apparmor-utils libcap2-bin
  14. sudo apt-get install -y volatility
  15.  
  16. ## elasticsearch install
  17. sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-key D88E42B4
  18. echo "deb https://artifacts.elastic.co/packages/5.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-5.x.list
  19. sudo apt install -y apt-transport-https
  20. sudo apt update && sudo apt install -y elasticsearch
  21.  
  22. ## thehive install
  23. echo 'deb https://dl.bintray.com/thehive-project/debian-stable any main' | sudo tee -a /etc/apt/sources.list.d/thehive-project.list
  24. curl https://raw.githubusercontent.com/TheHive-Project/TheHive/master/PGP-PUBLIC-KEY | sudo apt-key add -
  25. sudo apt-get update
  26. sudo apt-get install -y thehive
  27.  
  28. ## cortex install
  29. curl https://raw.githubusercontent.com/TheHive-Project/Cortex/master/PGP-PUBLIC-KEY | sudo apt-key add -
  30. sudo apt-get update
  31. sudo apt-get install -y cortex
  32.  
  33. sudo apt autoremove
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement