使用SSH连接到Kali

使用SSH连接到Kali

要连接到Kali Linux,我们只需要使用SSH客户端即可,大多数Unix,Linux和MacOS都已经安装了SSH客户端。如果使用的是Windows,可以安装PuTTY等SSH客户端软件。

作者:

锦凡歆在酷狗直播唱歌最好听

怎么做

查看Kali的IP地址

  1. root@osboxes:~# ip a 
  2. 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
  3.     link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  4.    inet 127.0.0.1/8 scope host lo
  5.       valid_lft forever preferred_lft forever
  6.     inet6 ::1/128 scope host 
  7.       valid_lft forever preferred_lft forever
  8. 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
  9.     link/ether 00:0c:29:9f:99:bf brd ff:ff:ff:ff:ff:ff
  10.    inet 192.168.177.138/24 brd 192.168.177.255 scope global dynamic noprefixroute eth0
  11.       valid_lft 1784sec preferred_lft 1784sec
  12.     inet6 fe80::28ff:605:ed51:4ab7/64 scope link noprefixroute 
  13.       valid_lft forever preferred_lft forever

 

使用SSH 客户端连接到Kali

  1. λ ssh [email protected]
  2. The authenticity of host '192.168.177.138 (192.168.177.138)' can't be established.
  3. ECDSA key fingerprint is SHA256:37c9q4AwOW4wEwUoEpQ1Jz/KXIYJfV53ORWeGBzONdI.
  4. Are you sure you want to continue connecting (yes/no)? yes
  5. Warning: Permanently added '192.168.177.138' (ECDSA) to the list of known hosts.
  6. [email protected]'s password:
  7. Linux osboxes 4.14.0-kali3-amd64 #1 SMP Debian 4.14.12-2kali1 (2018-01-08) x86_64
  8. The programs included with the Kali GNU/Linux system are free software;
  9. the exact distribution terms for each program are described in the
  10. individual files in /usr/share/doc/*/copyright.
  11. Kali GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
  12. permitted by applicable law.
  13. Linux osboxes 4.14.0-kali3-amd64 #1 SMP Debian 4.14.12-2kali1 (2018-01-08) x86_64
  14. The programs included with the Kali GNU/Linux system are free software;
  15. the exact distribution terms for each program are described in the
  16. individual files in /usr/share/doc/*/copyright.
  17. Kali GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
  18. permitted by applicable law.
  19. root@osboxes:~# 

猜你喜欢

转载自blog.csdn.net/hyg1165269653/article/details/89544335