LoginSignup
0
0

MITRE CALDERA v5.0.0 インストール手順

Posted at

MITRE CALDERA v5.0.0

米国MITRE社がOSS公開している BASツール の MITRE CALDERA v5.0.0 が公開されました。

インストール手順

早速 Kali Linux に展開してみたのですが、Webログインできないという症状が発生しました。
CALDERA の Slack を覗いてみたところ、Node.js や npm などのインストールが必要で、その手順が書いてありましたので共有します。

# 1) Install git, python, pip, npm
sudo apt update && sudo apt upgrade -y && sudo apt install python3-venv npm git -y
# 2) Update Node & NPM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
source ~/.bashrc
nvm install stable
# 3) Download Caldera
git clone https://github.com/mitre/caldera.git --recursive
# 4) Create environment & activate
cd caldera
python3 -m venv venv
source venv/bin/activate
# 5) Install requirements
pip install -r requirements.txt
# 6) Install Go & add to path
wget https://go.dev/dl/go1.22.0.linux-amd64.tar.gz && sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.22.0.linux-amd64.tar.gz && export PATH=$PATH:/usr/local/go/bin
# 7) Run caldera
python3 server.py --insecure --build

しばらくすると端末に大きな CALDERA のロゴが表示されます。
その後、Webブラウザを開いて http://localhost:8888/ にアクセスするとログイン画面が表示されます。

Username: red
Password: admin

でログインできます。

関連情報

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0