audit-labs/audit-tools

A collection of scripts, queries, and other goodies you can use in an audit.

clone: git clone https://gitbay.org/audit-labs/audit-tools.git

v1.0.0: requirements.txt · raw

 1# Dependencies are declared in pyproject.toml as optional "extras", so you only
 2# install what a given procedure needs. Installing this file pulls EVERYTHING.
 3#
 4# Lighter, targeted installs (run from the repo root):
 5#   pip install ".[analysis]"     # sampling + data analysis (pandas, Excel)
 6#   pip install ".[dashboards]"   # dash + plotly dashboards
 7#   pip install ".[aws]"          # AWS collectors (boto3)
 8#   pip install ".[collectors]"   # GitHub / GitLab collectors (requests)
 9#   pip install ".[mongo]"        # MongoDB collectors (pymongo)
10#   pip install ".[tui]"          # the terminal UI runner
11#   pip install ".[dev]"          # everything + pytest + ruff
12#
13# Full install (all optional features):
14.[all]