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: talos
on: [push]
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
with: { python-version: '3.11' }
- run: pip install talos-redteam
- run: talos-scan --target $STAGING --adapter native --severity high
env: { 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.