Skip to content

Instantly share code, notes, and snippets.

@jorritfolmer
Created October 17, 2020 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jorritfolmer/d6713c344e173765b06352b858b186ba to your computer and use it in GitHub Desktop.
Save jorritfolmer/d6713c344e173765b06352b858b186ba to your computer and use it in GitHub Desktop.
Installing MITRE Caldera on RHEL7

Installing MITRE Caldera on RHEL7

Doesn't seem to want to run in a virtualenv, not sure why.

Steps

  1. yum install rh-python36
  2. yum install gcc
  3. scl enable rh-python36 bash
  4. git clone https://github.com/mitre/caldera.git --recursive --branch 2.7.0
  5. wget https://golang.org/dl/go1.15.linux-amd64.tar.gz
  6. sudo tar -C /usr/local/ -xzf go1.15.linux-amd64.tar.gz
  7. echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.bashrc
  8. go get github.com/google/go-github/github
  9. go get golang.org/x/oauth2
  10. pip install pip --upgrade
  11. pip install -r requirements.txt
  12. python server.py --insecure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment