Advanced
Continuous monitoring
Re-run Talos on every deploy.
Point Talos at your staging URL and schedule a scan on every merge to main. Talos diffs the new report against the last known-good baseline and only surfaces regressions.
Baseline diffing
shell
❯ talos-scan --target $STAGING --baseline ./reports/baseline.json --severity high→ 3 findings carried over from baseline (suppressed)✗ 1 NEW finding: permission-escalation.refund-bounds-02
GitHub Actions
.github/workflows/talos.yml
name: taloson: [push]jobs:scan:runs-on: ubuntu-lateststeps:- uses: actions/setup-python@v5with: { python-version: '3.11' }- run: pip install talos-redteam- run: talos-scan --target $STAGING --adapter native --severity highenv: { STAGING: ${{ secrets.STAGING_URL }} }
Coming soon
A hosted monitoring dashboard is on the roadmap for design partners. Ask us about it if you're on the beta.