This commit is contained in:
shiva108
2026-01-22 23:41:07 +01:00
parent c288ff9aed
commit d2e391097f
@@ -77,15 +77,20 @@ AI/LLM red teaming often deals with powerful models, sensitive data, and complex
<img src="assets/chapter_07_rec_12_network_topology.png" alt="Isolated Lab Topology" width="512">
</p>
<p align="center">
<img src="assets/chapter_07_simple_topology_diagram.png" alt="Simple Lab Topology" width="600">
</p>
```mermaid
graph LR
A["Red Team VM(s)"] --> B["Test LLM/API Env"]
B --> C["Staging Plugins/DBs"]
C --> D["Synthetic Data Sources"]
```
### Segmented Topology (for large engagements)
<p align="center">
<img src="assets/chapter_07_segmented_topology_diagram.png" alt="Segmented Lab Topology" width="600">
</p>
```mermaid
graph TD
A["Red Team Zone"] --> B["Isolated LLM+Plugins Lab<br/>(matches client prod as close as possible)"]
A --> C["Logging/Evidence Server<br/>(read-only access for client POCs)"]
```
---