-
Notifications
You must be signed in to change notification settings - Fork 20
Deployment Guide
Arpan Sarkar edited this page Dec 4, 2024
·
11 revisions
Quick Start: Halberd can be up and running in under 5 minutes! The setup process is straightforward and works seamlessly across Windows, macOS, and Linux.
- Python: Version 3.8.x >= 3.12.x
- Memory: 2GB minimum (4GB recommended)
- Storage: 1GB free space
- Browser: Any modern browser (Chrome, Firefox, Edge, or Safari)
-
Install Python if not already installed:
- Windows installer
- macOS installer
- Linux source (or use package manager)
-
Get Halberd - choose one:
- Using Git:
git clone https://github.com/vectra-ai-research/Halberd.git
- Direct download: Download ZIP
- Using Git:
# 1. Navigate to Halberd directory
cd Halberd
# 2. Create and activate virtual environment
python -m venv venv
.\venv\Scripts\activate
# 3. Install dependencies
pip install -r requirements.txt
# 4. Install Azure CLI (required for Azure modules)
# Download and run from: https://aka.ms/installazurecliwindowsx64
# 5. Launch Halberd
python Halberd.py
# 1. Navigate to Halberd directory
cd Halberd
# 2. Create and activate virtual environment
python3 -m venv venv
source venv/bin/activate
# 3. Install dependencies
pip install -r requirements.txt
# 4. Install Azure CLI:
# macOS:
brew update && brew install azure-cli
# Linux (Ubuntu/Debian):
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
# 5. Launch Halberd
python3 Halberd.py
Once launched, Halberd will be available in your browser. You'll see:
- A modern web interface for cloud security testing
- Ready-to-use attack modules for Azure, AWS, and Microsoft 365
- Built-in analysis dashboard and reporting tools
- Ensure Python is in your system PATH
- For virtual environment issues, try deactivating and reactivating
- Azure CLI issues? Check the official installation guide
- Windows: Run PowerShell or Command Prompt as administrator if needed
- macOS: Homebrew is recommended for Azure CLI installation
- Linux: Different distributions may have varying Azure CLI installation methods. Check the distribution-specific guide
Need help? Check our GitHub Issues or start a discussion in Halberd community.