-
Notifications
You must be signed in to change notification settings - Fork 0
Platform Notes
Colby Farley edited this page Apr 6, 2026
·
2 revisions
AzureFox is intended to be operator-usable on macOS, Linux, and Windows.
The CLI itself is mostly platform-neutral. The differences you are most likely to notice are shell syntax and path style, not AzureFox command behavior.
pip install azurefoxazurefox <command>-
--tenant,--subscription,--output,--outdir, and--debug - JSON, table, CSV, and loot artifact layout under the chosen output directory
# macOS/Linux
python -m venv .venv
source .venv/bin/activate# Windows PowerShell
python -m venv .venv
.venv\Scripts\Activate.ps1# macOS/Linux
export AZURE_TENANT_ID=<tenant-id>
export AZURE_CLIENT_ID=<client-id>
export AZURE_CLIENT_SECRET=<client-secret># Windows PowerShell
$env:AZURE_TENANT_ID="<tenant-id>"
$env:AZURE_CLIENT_ID="<client-id>"
$env:AZURE_CLIENT_SECRET="<client-secret>"Wiki and README examples prefer relative paths such as ./azurefox-demo.
That is intentional:
- it avoids over-biasing toward
/tmp/... - it reads cleanly on macOS, Linux, and Windows
- it makes it obvious that artifacts go wherever you point
--outdir
If you already have a preferred scratch directory, use that instead.
Some repo docs still show Unix-style shell examples for release or packaging work. That does not mean AzureFox is meant to be Unix-only. It only means the maintainer workflow docs currently reflect the environment they were authored in.
For first runs on any platform:
pip install azurefox
azurefox whoami --output tableIf that works, the rest of the command surface should feel familiar.
- Home
- Getting Started
- Platform Notes
- Running Against The Proof Lab
- Understanding Output
- Command Guides
Core
Identity
Config
Secrets
Storage
Resource
Compute
Investigations
- Axios - Post Exposure Azure Triage
- FAQ / Known Limits (coming soon)