From 7178307b9d909eede895fc981430335079e52609 Mon Sep 17 00:00:00 2001 From: Ahmed Allam Date: Sat, 1 Nov 2025 01:39:01 +0200 Subject: [PATCH] docs: Update README to include multi-target testing examples --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5470e26..10b917b 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,13 @@ strix --target https://github.com/org/repo # Web application assessment strix --target https://your-app.com -# Focused testing +# Multi-target white-box testing (source code + deployed app) +strix -t https://github.com/org/app -t https://your-app.com + +# Test multiple environments simultaneously +strix -t https://dev.your-app.com -t https://staging.your-app.com -t https://prod.your-app.com + +# Focused testing with instructions strix --target api.your-app.com --instruction "Prioritize authentication and authorization testing" # Testing with credentials @@ -156,7 +162,7 @@ jobs: STRIX_LLM: ${{ secrets.STRIX_LLM }} LLM_API_KEY: ${{ secrets.LLM_API_KEY }} - run: strix -n --target ./ + run: strix -n -t ./ ``` ## 🏆 Enterprise Platform