Ncat Pivoting
# Ncat =/= netcat
# Enhanced version, developped by nmap dev and often packaged with
# Ciphered connexion, IP restriction
# To pivot, needed on both attacker and pivot machine
# Attacker (broker == accept multiple connexions)
ncat -lv --broker --max-conns 2
# Pivot
# We connect to attacker and target
ncat -v 192.168.2.149 31337 -c 'ncat -v 10.42.42.2 80'
Last updated