Application security posture management

Four scanners, one webhook, one dashboard.

Register a repository, add a webhook. Bearer, OWASP Dependency-Track, KICS and gitleaks then run on every push — and their findings arrive normalized and deduplicated in a single view.

docker-compose up three containers, on your own box

Mixeway Flow repository view: a Vulnerability Sources chart split by engine, a severity summary showing 2 critical and 12 high findings out of 177 total, and a filterable findings table.
Repository view — every engine's output in one place.

About the project

Scanning engines
Bearer · OWASP Dependency-Track · KICS · gitleaks
Source & development
Available on GitHub
Where it runs
Your own infrastructure via Docker Compose, or the hosted instance. Community on Discord
What actually runs

Named engines, not "best-in-class tooling"

Flow does not reinvent detection. It orchestrates established open-source scanners, keeps their configuration consistent across repositories, and merges their output into one schema.

Scanning engines used by Mixeway Flow, what each detects and what it requires
Layer Engine Detects Requires
SAST Bearer Injection flaws and insecure patterns in your own source code. nothing — runs on every change
SCA OWASP Dependency-Track Known CVEs, licensing issues and outdated libraries, via SBOM ingestion. sbom.json in the repo root
IaC KICS Misconfiguration in Terraform, Kubernetes manifests, Dockerfiles and other templates. nothing — runs on every change
Secrets gitleaks API keys, tokens and passwords committed by accident. nothing — runs on every change
Platform Mixeway GitLab ruleset 15+ GitLab repository and CI/CD misconfigurations — the layer code scanners ignore. read access to project settings
The repository card for Mixeway/Flow, showing its Git URL, default branch, creation date and a language breakdown.
Repository metadata — the same surface the ruleset audits.
Beyond the code

Your pipeline configuration is attack surface too

A curated ruleset queries repository metadata, CI settings and protection rules, then reports policy gaps with remediation guidance. A sample of what it catches:

  • Weak branch protection — force-push allowed, approvals missing on default branches.
  • Untrusted runners registered to a project or group.
  • Unmasked CI/CD variables holding passwords or tokens.
  • Merge requests without review or approval requirements.
  • Private projects exposed through inherited visibility or sharing.
  • Overbroad pipeline triggers, webhooks and artifact retention.
How it works

Three steps, no pipeline surgery

Scans are triggered by Git events, not by YAML you have to maintain in every repository. Nothing about your build changes.

  1. Register the repository

    Provide the URL and an access token. An initial scan runs against the latest commit on the default branch.

  2. Add the webhook

    Point a GitHub or GitLab webhook at Flow. Every push, pull request and merge request triggers a scan; events queue when they arrive faster than they run.

  3. Work the queue

    Review findings in one dashboard, filter to your branch or team, and suppress by context so the same noise does not come back next week.

Severity summary for a repository: 2 critical, 12 high and 163 other findings, each with its share of the total and a recommended level of urgency.
Severity summary, after normalization and deduplication.
The console

One schema for everything the engines find

Five tools produce five formats. Flow normalizes them into one record type, so a finding means the same thing regardless of which scanner raised it.

  • Deduplicated by code locationThe same issue found by two engines, or on two branches, is one entry — not three tickets.
  • Filter to the slice you ownBy branch, severity, source, status or location, with bulk actions for triage days.
  • Suppress with contextIgnore by rule rather than clicking through the same false positive every week.
  • Teams and ownershipRepositories belong to teams, so a hundred projects stay attributable instead of anonymous.
The findings table with filters for branch, severity, source, status and location, showing a CVE entry attributed to the SCA scanner with its affected component and version.
Findings table — filters, statuses and per-source attribution.
Under development — not shipped yet

Exploitability verification, in your own code

We are building an AI-assisted layer that decides whether a finding is actually exploitable in your repository, not merely present. It is in active development and will ship in a future release — we would rather say that than imply it is ready.

  1. Normalized findings as input

    The SAST, SCA, IaC and secret-scan output that Flow already collects and deduplicates.

  2. Extended vulnerability intelligence

    CVE and CWE metadata, CVSS, known-exploited catalogues, exploit-probability signals and advisories.

  3. Code-aware reasoning

    A constraint checklist per finding — reachable sink, untrusted data flow, missing validation, vulnerable version actually called — mapped to concrete files, functions and execution paths.

Want to test it early? Open an issue on GitHub or say hello on Discord .

Getting it running

Run it on your hardware, or try ours

Self-hosting is the default deployment model: the code, the scanners and the findings all stay inside your network.

Hosted instance

flow.mixeway.io

A running instance for evaluating the interface and the workflow before installing anything.

  • No installation, no hardware
  • The same interface as the self-hosted build
  • Best paired with a walkthrough
Open it

Commercial & enterprise

Talk to us

Rollout support, integration work, licensing for larger estates, and the training and consulting below.

  • Deployment and integration support
  • Triage and suppression governance
  • Team enablement
Book 30 minutes
Quick start Docker + docker-compose
# 1 — bring the stack up
$ git clone https://github.com/Mixeway/flow
$ cd flow
$ docker-compose up

# 2 — open the app and rotate the default credentials
 https://localhost:443

# 3 — create a team, import a repository, register the webhook

The bundled certificates are self-signed and the default credentials must be changed on first login — fine for a local trial, not for anything shared.

Beyond the product

Training & consulting

Trainings

Secure Coding
Patterns against the OWASP Top 10, memory and logic bugs and supply-chain pitfalls, with language-specific exercises and real code review.
Secure CI/CD
Pipeline hardening, secretless CI, policy-as-code, artifact signing, SBOM and release gates aligned with NIST SSDF.
Secure Cloud
Cloud-native threat modeling, least-privilege IAM, network segmentation, workload identity and IaC guardrails.

Consulting

Secure Coding Advisory
Standards, linters and review checklists; sane defaults rolled out across repositories.
DevSecOps Implementation
Integrating SAST, SCA, IaC and secret scanning, plus risk-based triage and suppression governance.
Program Uplift
Metrics, dashboards and an operating model that scales from a pilot repository to the whole estate.

Discuss a program

Questions

Before you book anything

What is Mixeway Flow?

A self-hostable Application Security Posture Management (ASPM) platform. It does not detect vulnerabilities itself — it registers your Git repositories, runs established open-source engines on every push through a Git webhook (Bearer for SAST, OWASP Dependency-Track for SCA, KICS for infrastructure as code, gitleaks for secrets), and normalizes and deduplicates everything they report into one triage queue. A fifth, in-house ruleset audits GitLab repository and CI/CD configuration rather than application code.

Does my source code leave my network?

Not in the self-hosted deployment, which is the default model. You run the whole stack — database, backend, scanners and frontend — with Docker Compose inside your own infrastructure. The hosted instance at flow.mixeway.io exists so you can evaluate the interface without installing anything.

Which scanners does it run, exactly?

Bearer for SAST, OWASP Dependency-Track for SCA via SBOM ingestion, KICS for infrastructure as code and gitleaks for secrets. A fifth, Mixeway's own ruleset, audits GitLab repository and CI/CD configuration. All four external engines are open source and linked from this page, so you can read exactly what they check.

Do I have to change my CI pipeline?

No. Scans are triggered by Git webhooks on push, pull request and merge request events, so there is no per-repository pipeline YAML to write or maintain. SCA is the one exception that needs something from you: an sbom.json in the repository root.

Is the AI prioritization available today?

No, and we would rather be explicit about it. The exploitability-verification layer described above is under active development and will arrive in a future release. What ships today is orchestration, normalization, deduplication and context-based suppression. If you want early access to the verification work, open a GitHub issue or find us on Discord.

What does it cost?

The source is on GitHub under the FlowLicense and you can run it yourself; read the licence for the exact terms. For commercial support, larger deployments or the training and consulting work, pricing depends on scope — book a call and we will give you a number.

What do I need to run it?

Docker and docker-compose, with at least 2 CPUs, 16 GB of RAM and 50 GB of disk; 4 CPUs, 32 GB and 100 GB is the comfortable configuration. The stack starts as three containers: Postgres, the backend bundling Dependency-Track, and an nginx frontend.

Something not answered here? Ask on Discord or book 30 minutes .

Bring a repository to the call.

Thirty minutes, your code, the actual product. We register one of your repositories, run the engines, and go through what comes back — including the parts that are noise.