Download the repo
git clone https://github.com/its-a-feature/Mythic.git
cd Mythic
#Make the setup file
sudo make
Installing Docker
sudo apt update
sudo apt install -y docker.io
sudo systemctl enable docker --now
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable" | \
sudo tee /etc/apt/sources.list.d/docker.list
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io
Log out of Kali Session and re-Login
Running Mythic
#Start Mythic - give it few mins to download and setup containers - first time only
sudo ./mythic-cli start
#on your browser - go to
https://127.0.0.1:7443/new/login
#Finding Creds
default username is mythic_admin
#Mythic Password - you can find it in .env file in Mythic Directory
nano ./env
ctrl+F --> MYTHIC_ADMIN_PASSWORD
or
sudo ./mythic-cli config | grep MYTHIC_ADMIN_PASSWORD
Updating Configuration
nano ./env
#Changing the listening port for Mythic Server
ctrl + F --> NGINX_PORT
sudo ./mythic-cli start
Comments
Post a Comment