Ventra
Cloud forensic triage: collect, normalize, investigate.
Ventra is a read only cloud incident response toolkit. A collector runs in the client's cloud environment (AWS CloudShell, Azure Cloud Shell, GCP Cloud Shell, or an IR workstation), gathers incident relevant logs and artifacts, seals them into a hashed evidence package, and hands off to an offline analyst console. No ongoing access to the client account is required after collection.
Architecture · Evidence Package Format · Operator runbook · Analyst runbook
Quickstart
Ventra needs Python 3.11+. The fastest path is uv
(curl -LsSf https://astral.sh/uv/install.sh | sh, or brew install uv), which also fetches a
suitable Python for you.
1. Try it instantly — no install
uvx ventra --help
uvx ventra collect aws --list-collectors
uvx ventra collect aws --case CASE-2026-0042 --since 2026-05-01 --out ./ventra-evidence
2. Install it permanently
uv tool install ventra
ventra --version
uv tool upgrade ventra # after a new release
3. Fallback: pipx or pip
pipx install ventra
# or, inside a virtualenv you manage yourself:
python -m pip install ventra
The default install includes the AWS, Azure, GCP, and Kubernetes collectors and the analyst
console, so every ventra subcommand works out of the box. Before running a collection, review
the read only policy for your cloud in docs/iam-policies/.
About Ventra
Ventra streamlines collection of the data IR teams need during a cloud investigation. It is built for bounded, time scoped triage: not a SIEM replacement and not a live monitoring platform.
The workflow has three tiers, connected by a single contract: the Evidence Package Format (EPF).
| Tier | Where it runs | Responsibility |
|---|---|---|
| Collector | Client cloud shell or IR workstation | Read only acquisition, hashing, packaging |
| Ingester | IR workstation | Verify integrity, parse, normalize, load |
| Console | IR workstation or forensic VPC | Case scoped investigation UI |
┌────────────────┐ sealed .tar.zst ┌────────────────┐ ┌────────────────┐
│ COLLECTOR │ ────────────────► │ INGESTER │ ────► │ CONSOLE │
│ cloud shell │ manifest + hash │ parse/normalize│ query │ analyst GUI │
│ read only IAM │ │ verify/load │ │ RBAC, offline │
└────────────────┘ └────────────────┘ └────────────────┘
Every artifact is SHA 256 hashed at acquisition. Disabled, empty, or denied log sources are recorded in the manifest as gaps: missing telemetry is treated as evidence. After collection, analysis happens entirely on evidence copies; the console makes no outbound network calls and ships no telemetry.
Artifacts are declared in YAML; collectors execute in Python under a shared engine. The Acquire tab in the console lets an IR lead browse the catalog, preview narrowed IAM, choose a deployment profile, and download an operator kit without using the CLI.
Supported data sources
Ventra ships 60+ artifact definitions across AWS, Azure, and GCP, plus curated
baseline IR packs per cloud (baseline-ir-aws, baseline-ir-azure, baseline-ir-gcp).
AWS log sources
| Source | Description |
|---|---|
| CloudTrail | Management, data, insight, and network activity events; trail config; S3 log integrity validation |
| AWS Config | Recorder state and compliance findings |
| VPC Flow Logs | Flow log configuration and flow records from CloudWatch or S3 |
| WAF | WAFv2 Web ACL configs, logging configuration, sampled requests |
| ELB/ALB Access Logs | Access logs from S3 delivery buckets and per LB logging posture |
| CloudFront Access Logs | Standard access logs from S3 and per distribution logging posture |
| Route 53 Resolver Query Logs | DNS query logs from S3 or CloudWatch destinations |
| S3 Access Logs | Server access logs from logging target buckets and per bucket posture |
| EKS Audit Logs | Kubernetes API server audit logs from CloudWatch and cluster posture |
| GuardDuty | Findings, detector config, suppression filters |
| Security Hub | ASFF findings and enabled standards |
| Inspector2 | Vulnerability and network reachability findings |
| Macie | Sensitive data and policy findings |
| Detective | Graph membership and open investigations |
AWS inventory and posture
| Source | Description |
|---|---|
| Account | Account, organization, region, and operator context |
| IAM | Users, roles, groups, policies, access keys, credential report |
| KMS | Key inventory, key policies, and grants |
| Secrets Manager | Metadata (never secret values), rotation, resource policies |
| EC2 / EBS | Instance and volume inventory; snapshot share/copy evidence trail |
| S3 | Bucket inventory, public exposure, policies, logging, Object Lock |
| Lambda | Function inventory, resource policies, redacted environment config |
| Log posture | Presence detection for sources without a dedicated log collector yet (OpenSearch, DynamoDB Streams, Network Firewall) |
| CloudWatch Logs | Events from selected log groups (by name, ARN, or prefix); prefer domain collectors when the service is known |
| API Gateway | REST/HTTP API stage access logs from CloudWatch (Logs Coverage; no dedicated edge panel chip yet) |
| Lambda logs | Function execution logs from CloudWatch Logs (Logs Coverage) |
| RDS logs | Engine logs exported to CloudWatch Logs (Logs Coverage; not in-DB logs) |
Review the read only IAM policy before any engagement:
docs/iam-policies/aws-collector-readonly.json.
Azure
Review read only permissions before any engagement:
- ARM:
docs/iam-policies/azure-collector-readonly.json - Microsoft Graph:
docs/iam-policies/azure-collector-graph.json - M365 / Exchange UAL search:
docs/iam-policies/azure-collector-m365.json
Identity, M365, and control plane
| Collector | Description | Console panel |
|---|---|---|
subscription |
Tenant, subscription, and operator context | Resource Inventory |
entra_signin |
Entra ID sign in logs (P1/P2 required) | Activity Log |
entra_audit |
Entra ID directory audit logs | Activity Log |
entra_directory |
Users, groups, applications, service principals snapshot | Identity & Access |
rbac |
Azure RBAC role definitions and assignments | Identity & Access |
activity_log |
Azure Activity Log: ARM control plane operations (89d default) | Activity Log |
unified_audit |
M365 Unified Audit Log via Management API (~7d); CLI / registry (hidden in Acquire) | Activity Log |
unified_audit_search |
M365 UAL via Search-UnifiedAuditLog (90d default); CLI / registry (hidden in Acquire) | Activity Log |
oauth_consent |
OAuth2 permission grants inventory | Activity Log |
defender |
Microsoft Defender for Cloud security alerts | Security Findings |
resource_graph |
Cross subscription ARM inventory snapshot | Resource Inventory |
diag_posture |
Diagnostic settings routing posture (Storage / LA / none) | Logs Coverage |
Network, data access, and Log Analytics
| Collector | Description | Console panel |
|---|---|---|
vnet_flow |
VNet flow logs from delivery Storage account | Network Activity |
nsg_flow |
Legacy NSG flow logs from Storage | Network Activity |
azure_firewall |
Azure Firewall application/network/DNS logs (Storage diagnostics) | Network Activity |
app_gateway |
Application Gateway access, performance, and WAF logs | Web & DNS |
front_door |
Front Door / CDN access and WAF logs | Web & DNS |
dns |
Public/private DNS and resolver query logs | Web & DNS |
storage_access |
Storage account read/write/delete access logs | Data Access |
key_vault |
Key Vault audit events | Data Access |
aks_audit |
AKS kube audit logs from Storage diagnostics | Kubernetes Audit |
log_analytics |
Same diagnostic categories when routed to Log Analytics workspaces | Network / Web / Data panels |
Collect a subset with --collectors, for example:
ventra collect azure --case CASE-2026-0042 --collectors activity_log,entra_signin.
GCP
GCP collectors cover Cloud Audit Logs (admin, system, data access), login events, SCC and Cloud Monitoring findings, VPC flow / firewall / NAT and network posture, load balancer / CDN / API Gateway / DNS / Cloud Armor, Cloud Storage / BigQuery / Cloud SQL / Secret Manager access, GCE and Cloud Functions inventory and logs, GKE audit, IAM policy snapshot, and logging posture. Run the baseline pack:
ventra collect gcp --pack baseline-ir-gcp --case CASE-2026-0042 --project my-project --out ~/ventra-evidence
See docs/artifacts.md for the catalog layout,
artifacts/packs/baseline-ir-gcp.yaml for the curated
IR bundle, and the console Docs → Google Cloud Platform → Collectors pages for per-collector
permissions and parameters (sourced from the artifact YAML).
| Collector | Description | Console panel |
|---|---|---|
project |
Project, organization, and operator context | Resource Inventory |
iam_policy |
IAM bindings, service accounts, key metadata, custom roles | Identity & IAM |
login_events |
Google Cloud console sign-in audit events | Audit Log / Identity & IAM |
cloud_audit_admin |
Admin Activity audit logs | Audit Log |
cloud_audit_system |
System Event audit logs | Audit Log |
cloud_audit_data |
Data Access audit logs | Audit Log / Storage Access |
logging_posture |
Flow logs, firewall logging, and audit sink posture | Logs Coverage |
vpc_flow |
VPC Flow Logs (sampled L3/L4) | VPC & Firewall |
firewall_logs |
VPC firewall rule hit logs | VPC & Firewall |
cloud_nat |
Cloud NAT translation logs | VPC & Firewall |
network_posture |
Firewall rules, VPC topology, packet mirroring | VPC & Firewall |
load_balancer |
Cloud Load Balancing Logs (HTTP(S) / TCP/UDP proxy) | Load Balancer & API Gateway |
cloud_cdn |
CDN cache request logs | Load Balancer & API Gateway |
api_gateway |
API Gateway request logs | Load Balancer & API Gateway |
cloud_dns |
Cloud DNS query logs | Load Balancer & API Gateway |
cloud_armor |
Cloud Armor policy inventory and enforced request logs | Load Balancer & API Gateway |
storage_access |
GCS bucket access / data-plane audit logs | Storage Access |
bigquery_audit |
BigQuery data access audit logs | Storage Access |
cloud_sql |
Cloud SQL query, connection, and error logs | Storage Access |
secret_manager |
Secret Manager access audit logs | Storage Access |
gce |
GCE instance, disk, snapshot, and NIC inventory | Resource Inventory |
vm_logs |
GCE VM logs via the Cloud Logging agent | Resource Inventory |
cloud_functions |
Cloud Functions execution and platform logs | Resource Inventory |
gke_audit |
GKE API-server audit logs + cluster posture | GKE Audit Logs |
scc_findings |
Security Command Center findings | Security Command Center |
cloud_monitoring |
Cloud Monitoring alert / incident notifications | Security Command Center |
Analyst console
After ingest, investigation panels map directly to collector output. The console operates in two modes:
| Mode | Purpose |
|---|---|
| Investigate | Import evidence packages, query normalized events, review coverage and inventory |
| Acquire | Browse artifacts and packs, preview IAM, build operator kits, operator handoff |
Investigate panels
Panel titles follow the case cloud (AWS defaults below; Azure and GCP rename several panels).
| Panel | Focus |
|---|---|
| CloudTrail Timeline | Control-plane activity (CloudTrail; Azure Activity Log / Entra / OAuth; GCP Cloud Audit + login events) |
| CloudWatch Logs | CloudWatch log group events (AWS cases only) |
| Security Findings | GuardDuty, Security Hub, Inspector, Macie, Detective, Config; Azure Defender; GCP SCC and Cloud Monitoring |
| Identity & Access | IAM / Entra / RBAC principals, policies, KMS and Secrets inventory |
| Network Activity | VPC / VNet / NSG / firewall flow volume, egress, and rejected connections |
| Web & DNS | Edge access logs, WAF, DNS resolver / Cloud DNS queries |
| Kubernetes Audit | EKS / AKS / GKE API-server audit logs |
| Data Access | S3 / storage / Key Vault / GCS / BigQuery / Cloud SQL / Secret Manager access |
| Logs Coverage | What was collected, partial, empty, denied, or missing (gaps as evidence) |
| Resource Inventory | EC2, S3, Lambda, ARM, GCE, and related inventory snapshots |
| Raw Evidence | Browse sealed source files from the package |
Role based access control (Responder, Investigator, Data Custodian, Analyst) is enforced
server side. Investigators can import cases and export evidence bundles for downstream SIEM
workflows (Elastic NDJSON export and Logstash pipelines under ingester/pipelines/).
Usage
Requirements
- Python 3.11+
- uv (recommended), or pipx / pip
- AWS: credentials with the read only collector policy attached (CloudShell works out of the box)
- Azure:
az login - GCP: Application default credentials or a service account JSON key
- Console: included in the package — after installing, run
ventra guifrom any directory (no Node.js, no clone). Use a git checkout only when developing the UI (ventra gui --dev-source).
Install options
See Quickstart for uvx / uv tool install / pipx / pip. Other ways in:
# Pin a release (e.g. for an engagement)
uv tool install 'ventra==1.0.0'
uvx ventra@1.0.0 --version
# Install a wheel you were handed
uv tool install ./ventra-1.0.0-py3-none-any.whl
# One-liner installer (prefers pipx, falls back to uv)
curl -fsSL https://raw.githubusercontent.com/Haggag-22/Ventra/main/bin/install.sh | bash
Extras. The base install already carries every cloud SDK. The per-cloud sets are also
published as extras — ventra[aws], ventra[azure], ventra[gcp], ventra[kubernetes], and
ventra[all] — so an install spec can name the clouds it relies on. Two optional features are
extras only:
| Extra | Adds | Needed for |
|---|---|---|
ventra[sftp] |
paramiko |
--transport sftp:… |
ventra[enrich] |
geoip2 |
GeoIP enrichment during ingest |
uv tool install 'ventra[sftp]'
uvx --from 'ventra[sftp]' ventra collect aws --transport sftp:… --case CASE-2026-0042
pipx install 'ventra[sftp]'
Development (local clone)
git clone https://github.com/Haggag-22/Ventra.git
cd Ventra
uv sync # .venv with locked deps + dev tools (pytest, ruff), editable
uv run pytest
uv run ruff check && uv run ruff format --check
uv run ventra gui # console with hot reload
Prefer plain pip-style tooling? uv venv && uv pip install -e ".[dev]" (or
python -m pip install -e ".[dev]" in any 3.11+ virtualenv) gives the same editable install.
| You changed… | What to run |
|---|---|
Python source under collector/, ingester/, console/backend/ |
Nothing — edits are live via editable install; use uv run ventra … |
pyproject.toml or uv.lock (new/updated packages) |
uv sync |
Fresh clone or deleted .venv/ |
uv sync |
uv build produces the sdist and wheel in dist/. Releasing to PyPI: tag the commit — the
version comes from git, not from pyproject.toml. See RELEASING.md and
CONTRIBUTING.md.
git tag v1.0.0
git push origin v1.0.0
AWS CloudShell (recommended for client side collection)
# Review the read only policy first:
# docs/iam-policies/aws-collector-readonly.json
curl -fsSL https://raw.githubusercontent.com/Haggag-22/Ventra/main/bin/install-cloudshell.sh | bash
ventra collect aws \
--case CASE-2026-0042 \
--since 2026-05-01 \
--out ~/ventra-evidence
The installer upgrades to the latest PyPI release on each run. Pin a version for an engagement
with VENTRA_INSTALL_SPEC='ventra==1.0.0'.
Azure (host / IR workstation)
Use a client service principal from your machine. Flags override AZURE_* env vars:
ventra collect azure \
--case CASE-2026-0042 \
--tenant-id "<tenant-id>" \
--client-id "<app-client-id>" \
--client-secret "<secret>" \
--subscription "<subscription-id>" \
--since 2026-05-01 \
--out ~/ventra-evidence
Certificate auth instead of a secret:
ventra collect azure \
--case CASE-2026-0042 \
--tenant-id "<tenant-id>" \
--client-id "<app-client-id>" \
--client-certificate /path/to/sp.pem \
--subscription "<subscription-id>" \
--out ~/ventra-evidence
Or set AZURE_TENANT_ID, AZURE_CLIENT_ID, and AZURE_CLIENT_SECRET (or
AZURE_CLIENT_CERTIFICATE_PATH) in the environment and omit the flags.
GCP (host / IR workstation)
ventra collect gcp \
--pack baseline-ir-gcp \
--case CASE-2026-0042 \
--project my-gcp-project \
--since 2026-05-01 \
--out ~/ventra-evidence
AWS (host / IR workstation)
Use a named profile from ~/.aws/credentials:
ventra collect aws \
--case CASE-2026-0042 \
--profile client-readonly \
--since 2026-05-01 \
--out ~/ventra-evidence
--profile is equivalent to AWS_PROFILE for that run. The profile name is recorded in
the package manifest (not the secret key).
Operator kits and packs
Build a kit zip from the CLI or the Acquire tab in the console:
ventra kit build \
--cloud aws \
--pack baseline-ir-aws \
--case CASE-2026-0042 \
--out kit.zip
The kit contains acquisition.yaml, artifact YAML copies, narrowed IAM, and a bootstrap script
for the operator to run in Cloud Shell. See docs/artifacts.md.
Investigate (IR workstation)
uv tool install ventra # once (or: pipx install ventra)
ventra gui # opens the console in your browser
Works from any directory after uv tool install / pipx install. Case data defaults to ~/.ventra (or
~/Library/Application Support/Ventra on macOS). Override with VENTRA_HOME.
From a git checkout, ventra gui still supports hot-reload development (--dev-source forces
that mode even if a static build is present).
Import a package from the Cases screen, use Import from S3 for enterprise handoff, or run
ventra import / ventra-ingest from the CLI.
Export a case to Elastic friendly NDJSON:
ventra-export --case-dir ./cases/CASE-2026-0042 --out ./export
Full operator steps: docs/runbooks/operator.md
Full analyst workflow: docs/runbooks/analyst.md
Available collectors
Running ventra collect aws, ventra collect azure, or ventra collect gcp executes every
registered collector for that cloud unless you pass --collectors, --pack, or --acquisition.
List them with:
ventra collect aws --list-collectors
ventra collect azure --list-collectors
ventra collect gcp --list-collectors
ventra collect aws --list-packs
ventra artifacts list --cloud gcp
Control plane and audit
| Collector | Description | Console panel |
|---|---|---|
cloudtrail |
CloudTrail trail config; management, insight, data, and network activity events from S3 (LookupEvents only when no trails exist); S3 log integrity validation | CloudTrail Timeline |
cloudwatch |
CloudWatch Logs events from selected log groups (by name, ARN, or prefix) | CloudWatch Logs |
config |
AWS Config recorder state and compliance findings | Security Findings |
activity_log |
Azure Activity Log: subscription control plane operations | Activity Log |
entra_signin |
Entra ID sign in logs | Activity Log |
entra_audit |
Entra ID audit logs: directory and application changes | Activity Log |
cloud_audit_admin |
GCP Admin Activity audit logs | Audit Log |
cloud_audit_system |
GCP System Event audit logs | Audit Log |
cloud_audit_data |
GCP Data Access audit logs | Audit Log / Storage Access |
log_posture |
Logging posture for OpenSearch, DynamoDB Streams, and Network Firewall | Logs Coverage |
logging_posture |
GCP logging posture for flow logs, firewall logging, and audit sinks | Logs Coverage |
Identity and access
| Collector | Description | Console panel |
|---|---|---|
account |
AWS account, organization, region, and operator context | Resource Inventory |
subscription |
Azure subscription, tenant, region, and operator context | Resource Inventory |
project |
GCP project, organization, and operator context | Resource Inventory |
iam |
IAM users, roles, groups, policies, access keys, credential report | Identity & Access |
iam_policy |
GCP IAM policy bindings, service accounts, key metadata | Identity & IAM |
rbac |
Azure RBAC role definitions and assignments | Identity & Access |
entra_directory |
Entra ID users, groups, apps, and service principals | Identity & Access |
kms |
KMS key inventory, key policies, and grants | Identity & Access |
secrets |
Secrets Manager metadata (never values), rotation, resource policies | Identity & Access |
login_events |
GCP console sign-in audit events | Audit Log / Identity & IAM |
Network and edge
| Collector | Description | Console panel |
|---|---|---|
vpc_flow |
VPC Flow Logs configuration and flow records (AWS or GCP) | Network Activity / VPC & Firewall |
vnet_flow |
Azure VNet flow logs from storage | Network Activity |
nsg_flow |
NSG flow log configuration and flow records from storage | Network Activity |
azure_firewall |
Azure Firewall application/network/DNS proxy logs | Network Activity |
firewall_logs |
GCP VPC firewall rule logs | VPC & Firewall |
cloud_nat |
GCP Cloud NAT translation logs | VPC & Firewall |
network_posture |
GCP firewall rules, VPC topology, packet mirroring | VPC & Firewall |
waf |
WAFv2 Web ACL configs, logging configuration, sampled requests | Web & DNS |
elb_alb |
ELB/ALB access logs from S3 and per LB logging posture | Web & DNS |
cloudfront |
CloudFront standard access logs from S3 and logging posture | Web & DNS |
apigateway |
API Gateway REST/HTTP stage access logs from CloudWatch | Logs Coverage |
route53_resolver |
Route 53 Resolver DNS query logs from S3 or CloudWatch | Web & DNS |
load_balancer |
GCP Cloud Load Balancing Logs | Load Balancer & API Gateway |
cloud_cdn |
GCP Cloud CDN cache request logs | Load Balancer & API Gateway |
api_gateway |
GCP API Gateway request logs | Load Balancer & API Gateway |
cloud_dns |
GCP Cloud DNS query logs | Load Balancer & API Gateway |
cloud_armor |
GCP Cloud Armor policy inventory and enforced request logs | Load Balancer & API Gateway |
app_gateway |
Azure Application Gateway access, performance, and WAF logs | Web & DNS |
front_door |
Azure Front Door / CDN access and WAF logs | Web & DNS |
dns |
Azure public/private DNS and resolver query logs | Web & DNS |
Detections and findings
| Collector | Description | Console panel |
|---|---|---|
guardduty |
GuardDuty findings, detector config, suppression filters | Security Findings |
securityhub |
Security Hub ASFF findings and enabled standards | Security Findings |
inspector2 |
Inspector2 vulnerability and network reachability findings | Security Findings |
macie |
Macie sensitive data and policy findings | Security Findings |
detective |
Detective graph config and open investigations | Security Findings |
defender |
Microsoft Defender for Cloud security alerts | Security Findings |
scc_findings |
GCP Security Command Center findings | Security Command Center |
cloud_monitoring |
GCP Cloud Monitoring alert and incident notifications | Security Command Center |
Workloads and data access
| Collector | Description | Console panel |
|---|---|---|
ec2 |
EC2/EBS inventory and snapshot share/copy evidence trail | Resource Inventory |
s3 |
S3 bucket inventory, public exposure, policies, logging, Object Lock | Resource Inventory |
lambda |
Lambda function inventory, resource policies, redacted env config | Resource Inventory |
lambda_logs |
Lambda function execution logs from CloudWatch Logs | Logs Coverage |
rds |
RDS engine logs exported to CloudWatch Logs | Logs Coverage |
s3_access |
S3 server access logs and per bucket logging posture | Data Access |
eks_audit |
EKS Kubernetes API server audit logs and cluster posture | EKS Audit Logs |
aks_audit |
AKS kube-audit logs from Storage diagnostics | AKS Audit Logs |
gke_audit |
GKE API-server audit logs and cluster posture | GKE Audit Logs |
storage_access |
Azure Storage or GCS bucket access logs | Data Access / Storage Access |
key_vault |
Azure Key Vault audit events | Storage & Key Vault |
bigquery_audit |
BigQuery data access audit logs | Storage Access |
cloud_sql |
Cloud SQL query and connection logs | Storage Access |
secret_manager |
Secret Manager access audit logs | Storage Access |
gce |
GCE instance, disk, snapshot, and NIC inventory | Resource Inventory |
vm_logs |
GCE VM logs via the Cloud Logging agent | Resource Inventory |
cloud_functions |
Cloud Functions execution and platform logs | Resource Inventory |
log_analytics |
Azure diagnostic categories when routed to Log Analytics | Network / Web / Data panels |
resource_graph |
Azure Resource Graph inventory snapshot | Resource Inventory |
diag_posture |
Azure diagnostic-settings routing posture | Logs Coverage |
CLI reference
| Command | Description |
|---|---|
ventra collect aws |
Run AWS collectors and seal an evidence package |
ventra collect azure |
Run Azure collectors and seal an evidence package |
ventra collect gcp |
Run GCP collectors and seal an evidence package |
ventra collect <cloud> --list-collectors |
List registered collectors |
ventra collect <cloud> --list-packs |
List curated IR packs |
ventra kit build |
Build an operator kit zip from artifacts or a pack |
ventra artifacts list |
Browse the artifact catalog |
ventra artifacts validate |
Validate artifact YAML (CI gate) |
ventra gui |
Start the analyst console locally |
ventra import <package.tar.zst> |
Import a sealed package (or ventra run output) into a case |
ventra run <kit.kit> |
Run a downloaded Collection Kit offline |
ventra-ingest <package.tar.zst> |
Ingest a package into the case store |
ventra-verify <package.tar.zst> |
Verify a package's integrity without ingesting it |
ventra-export --case-dir … --out … |
Export ingested events to Elastic NDJSON |
Common flags: --case, --since, --until, --regions, --out, --no-ingest, --transport, --collectors, --pack, --acquisition.
AWS host auth: --profile <name> (or AWS_PROFILE). Azure host auth: --tenant-id, --client-id, --client-secret or --client-certificate, plus --subscription (comma separated). Env vars AZURE_* work when flags are omitted. GCP: --project and application default credentials or a service account key.
For M365 UAL filters: --ual-users, --ual-operations, and related --ual-* flags.
What Ventra is not
- Not a SIEM: cases are scoped investigations, not always on log pipelines.
- Not EDR or disk forensics: OS internals, memory, and imaging stay with dedicated tools.
- Not a containment platform: the collector never modifies, isolates, or terminates resources.
- Not long term storage: Ventra defines the evidence format; retention is the IR team's choice.
Documentation
| Document | Description |
|---|---|
docs/architecture.md |
Three tier design and EPF contract |
docs/evidence-package-format.md |
Package structure and integrity |
docs/artifacts.md |
YAML catalog, packs, kit builder, Acquire API |
docs/runbooks/operator.md |
Running the collector |
docs/runbooks/analyst.md |
Console investigation workflow |
docs/runbooks/data-custodian.md |
Case import, export, deletion |
docs/iam-policies/ |
Read only policies per cloud |
docs/threat-coverage.md |
Detection and log source mapping |
ingester/pipelines/elastic/README.md |
Elastic NDJSON export and Logstash runbook |
ROADMAP.md |
Planned phases and milestones |
Status
AWS, Azure, and GCP collectors are supported end to end: demo fixtures, ingest, and console panels. The Acquire builder (artifact library, packs, IAM preview, operator handoff) is shipped. Enterprise scale work (streaming collectors, S3 ingest workers, SSO, managed collection workers) is in progress under Track D.
See ROADMAP.md for current phase detail.
Contributing, security, license
- CONTRIBUTING.md — dev setup, tests, lint, release flow
- SECURITY.md — report vulnerabilities privately
- CODE_OF_CONDUCT.md — Contributor Covenant
Apache-2.0. No telemetry.
Release files for ventra 0.7.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ventra-0.7.1.tar.gz | 1.5 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| ventra-0.7.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 3.3 MB
Release files / ventra-0.7.1.tar.gz
| Download URL | ventra-0.7.1.tar.gz |
|---|---|
| Size | 1.5 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
183aa4774589169845118221bdc10bb8f2c52e1d25b4e4e06b211e684cf57af9
|
|
BLAKE2b-256 checksum How to use checksums |
4b83b162895573d6200d7e453b758d54f5b3bfe129bef2bbac071d23ef3222a6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / ventra-0.7.1-py3-none-any.whl
| Download URL | ventra-0.7.1-py3-none-any.whl |
|---|---|
| Size | 1.8 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
6e55641c93d946f8e5d668e809e4fbc061185ff716f05090d2d728bbea4c5c1c
|
|
BLAKE2b-256 checksum How to use checksums |
d05e168424ec95ab2ec84ebef43b14b050cdecb85dcd6b73a54702579b517179
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log