Default installer scripts works for .deb based distros like Debian, Ubuntu and Kali and not for Arch Linux (pacman).
Here are some hints on installing Empire for ArchLinux. Base repo is here: https://github.com/BC-SECURITY/Empire
- Clone the repo recursively:
git clone --recursive https://github.com/BC-SECURITY/Empire.git
- Checkout the latest version (using the included script):
cd Empire
./setup/checkout-latest-tag.sh
And now comes the difference because the included ./setup/install.sh
is not compatible with Arch Linux.
- Empire uses poetry for managing its Python virtual env, we need to set it up manually.
We need the extra/python-poetry
package installed. Then:
poetry config virtualenvs.in-project true
poetry config virtualenvs.prefer-active-python true
poetry install
- Reset the MySQL database.
We need a MySQL db engine installed (e.g. extra/mariadb
) and started (systemctl start mariadb
). Then:
./ps-empire server --reset
- Start the server (Starkiller web GUI also gets installed automatically):
./ps-empire server
- Access the Starkiller GUI at:
http://localhost:1337/index.html
Default credentials are: empireadmin:password123
.
- add dependencies (like powershell, nim, etc.)