feat: cross-agent lateral movement visualization in attack flow#322
Merged
andres-linero merged 1 commit intomainfrom Mar 8, 2026
Merged
feat: cross-agent lateral movement visualization in attack flow#322andres-linero merged 1 commit intomainfrom
andres-linero merged 1 commit intomainfrom
Conversation
Adds build_lateral_movement_flow() — a dedicated React Flow graph for visualizing how agents are connected through shared MCP servers and which connections are cross-agent poison risks. attack_flow.py: - build_lateral_movement_flow(context_graph_data): builds nodes/edges from shared_servers and lateral_paths; detects write+read tool pairs on shared servers (cross_poison); cross-poison edges are red dashed + animated, lateral edges are orange dashed - build_attack_flow(): new context_graph_data param — overlays lateral movement edges onto the blast radius graph; stats now include lateral_edges and cross_poison_servers counts Tests: 11 new test cases in TestBuildLateralMovementFlow
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
andres-linero
approved these changes
Mar 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
build_lateral_movement_flow(): new function that builds a React Flow graph showing cross-agent lateral movement paths — agents connected through shared MCP servers, with cross-agent poison risks highlightedbuild_attack_flow(): newcontext_graph_dataparam overlays lateral movement edges onto existing blast radius graphlateral_edgesandcross_poison_serverscountsEdge types
cross_poisonlateralTest plan
TestBuildLateralMovementFlow— all passing