freeBuf
主站

分类

漏洞 工具 极客 Web安全 系统安全 网络安全 无线安全 设备/客户端安全 数据安全 安全管理 企业安全 工控安全

特色

头条 人物志 活动 视频 观点 招聘 报告 资讯 区块链安全 标准与合规 容器安全 公开课

官方公众号企业安全新浪微博

FreeBuf.COM网络安全行业门户,每日发布专业的安全资讯、技术剖析。

FreeBuf+小程序

FreeBuf+小程序

Metasploit快速入门(一)
2019-04-15 13:42:28
所属地 湖南省

原创: 合天网安实验室 合天智汇

在本章中,我们将会学习以下内容:

1、在Windows上安装Metasploit

2、在Linux和MacOS上安装Metasploit

3、在Kali Linux中使用 Metasploit

4、升级Kali Linux

5、使用虚拟化软件构建渗透测试实验环境

6、配置SSH连接

7、使用SSH连接Kali

8、配置PostgreSQL数据库

9、创建工作区

10、使用数据库

11、使用hosts命令

12、理解services命令

image.png

简介

Metasploit是目前世界上领先的渗透测试工具,也是信息安全与渗透测试领域最大的开源项目之一。它彻底改变了我们执行安全测试的方式。

Metasploit之所以流行,是因为它可以执行广泛的安全测试任务,从而简化渗透测试的工作。Metasploit适用于所有流行的操作系统,本书中,主要以Kali Linux为主。因为Kali Linux预装了 Metasploit 框架和运行在框架上的其他第三方工具。

框架和相关术语简介:

Metasploit Framework:这是一个免费的、开源的渗透测试框架,由 H.D.Moore 在 2003 年发布,后来被 Rapid7 收购。当前稳定版本是使用 Ruby 语言编写的。它拥有世界上最大的渗透测试攻击数据库,每年超过100万次的下载。它也是迄今为止使用 Ruby构建的最复杂的项目之一。

Vulnerability:允许攻击者入侵或危害系统安全性的弱点称为漏洞,漏洞可能存在于操作系统,应用软件甚至网络协议中。

Exploit:攻击代码或程序,它允许攻击者利用易受攻击的系统并危害其安全性。每个漏洞都有对应的漏洞利用程序。Metasploit有超过 1700 个漏洞利用程序。

Payload:攻击载荷。它主要用于建立攻击者和受害者机器直接的连接,Metasploit有超过 500个有效攻击载荷。

Module:模块是一个完整的构件,每个模块执行特定的任务,并通过几个模块组成一个单元运行。这种架构的好处是可以很容易的将自己写的利用程序和工具集成到框架中。

Metasploit框架具有模块化的体系结构,exploits、payload、encoders都是独立的模块:


image.png

Metasploit提供两种不同的UI,msfconsole和WebUI,本书中主要使用msfconsole接口。因为msfconsole对Metasploit支持最好,可以使用所有功能。

1、在Windows上安装Metasploit

在Windows上安装Metasploit非常简单,直接从官方下载(http://www.metasploit.com/download).安装文件进行安装即可。

准备工作

Metasploit的四个版本:

Pro:适用于渗透测试人员和IT安全团队

Express:适用于一般IT人员

Community:适用于小公司和学生

Framework:适用于开发人员和安全研究人员

请从官网下载最新版的 Metasploit Framework

https://windows.metasploit.com/metasploitframework-latest.msi) 它包含控制台程序和其他依赖程序。

如何安装

下载完之后,运行即可,它将自动安装相关所有组件。

image.pngimage.pngimage.png

Tip:在Windows上安装Metasploit时候,应该禁用防护软件,因为可能会检测到一些安装文件为恶意程序,从而阻止安装过程。安装完后将 Metasploit加入到防护软件的白名单。

在Linux和MacOS上安装Metasploit

通过以下快速安装脚本导入Rapid7签名密钥并为受支持的Linux和macOS系统设置程序包:

  1. curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && \

  2.  chmod 755 msfinstall && \

  3.  ./msfinstall

软件包将集成到系统的包管理器中,可以使用 msfupdate 命令或包管理器进行更新。

安装过程差不多是这样的:

  1. bcook@localhost:~$ uname -a

  2. Linux localhost 3.14.0 #1 SMP PREEMPT Mon Feb 6 21:59:30 PST 2017 armv7l armv7l armv7l GNU/Linux

  3. bcook@localhost:~$ curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && \

  4. >   chmod 755 msfinstall && \

  5. >   ./msfinstall

  6.  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current

  7.                                 Dload  Upload   Total   Spent    Left  Speed

  8. 100  5394  100  5394    0     0   5609      0 --:--:-- --:--:-- --:--:--  5607

  9. Switching to root user to update the package

  10. [sudo] password for bcook: 

  11. Adding metasploit-framework to your repository list..OK

  12. Updating package cache..OK

  13. Checking for and installing update..

  14. Reading package lists... Done

  15. Building dependency tree      

  16. Reading state information... Done

  17. The following NEW packages will be installed:

  18.  metasploit-framework

  19. 0 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.

  20. Need to get 148 MB of archives.

  21. After this operation, 358 MB of additional disk space will be used.

  22. Get:1 http://downloads.metasploit.com/data/releases/metasploit-framework/apt lucid/main armhf metasploit-framework armhf 4.13.23+20170217143300.git.1.85dca6a~1rapid7-1 [148 MB]

  23. Fetched 148 MB in 19s (7743 kB/s)                                                                                                    

  24. Selecting previously unselected package metasploit-framework.

  25. (Reading database ... 28449 files and directories currently installed.)

  26. Preparing to unpack .../metasploit-framework_4.13.23+20170217143300.git.1.85dca6a~1rapid7-1_armhf.deb ...

  27. Unpacking metasploit-framework (4.13.23+20170217143300.git.1.85dca6a~1rapid7-1) ...

  28. Setting up metasploit-framework (4.13.23+20170217143300.git.1.85dca6a~1rapid7-1) ...

  29. update-alternatives: using /opt/metasploit-framework/bin/msfbinscan to provide /usr/bin/msfbinscan (msfbinscan) in auto mode

  30. update-alternatives: using /opt/metasploit-framework/bin/msfconsole to provide /usr/bin/msfconsole (msfconsole) in auto mode

  31. update-alternatives: using /opt/metasploit-framework/bin/msfd to provide /usr/bin/msfd (msfd) in auto mode

  32. update-alternatives: using /opt/metasploit-framework/bin/msfdb to provide /usr/bin/msfdb (msfdb) in auto mode

  33. update-alternatives: using /opt/metasploit-framework/bin/msfelfscan to provide /usr/bin/msfelfscan (msfelfscan) in auto mode

  34. update-alternatives: using /opt/metasploit-framework/bin/msfmachscan to provide /usr/bin/msfmachscan (msfmachscan) in auto mode

  35. update-alternatives: using /opt/metasploit-framework/bin/msfpescan to provide /usr/bin/msfpescan (msfpescan) in auto mode

  36. update-alternatives: using /opt/metasploit-framework/bin/msfrop to provide /usr/bin/msfrop (msfrop) in auto mode

  37. update-alternatives: using /opt/metasploit-framework/bin/msfrpc to provide /usr/bin/msfrpc (msfrpc) in auto mode

  38. update-alternatives: using /opt/metasploit-framework/bin/msfrpcd to provide /usr/bin/msfrpcd (msfrpcd) in auto mode

  39. update-alternatives: using /opt/metasploit-framework/bin/msfupdate to provide /usr/bin/msfupdate (msfupdate) in auto mode

  40. update-alternatives: using /opt/metasploit-framework/bin/msfvenom to provide /usr/bin/msfvenom (msfvenom) in auto mode

  41. Run msfconsole to get started

  42. W: --force-yes is deprecated, use one of the options starting with --allow instead.

  43. bcook@localhost:~$ msfconsole  //启动msfconsole

  44. ** Welcome to Metasploit Framework Initial Setup **

  45.    Please answer a few questions to get started.

  46. Would you like to use and setup a new database (recommended)? y //是否设置数据库

  47. Creating database at /home/bcook/.msf4/db

  48. Starting database at /home/bcook/.msf4/db...success

  49. Creating database users

  50. Creating initial database schema

  51. ** Metasploit Framework Initial Setup Complete **

  52.       =[ metasploit v4.13.23-dev-584850f1f8a1a74b69b5cea16c700c9fd1b8e4c6]

  53. + -- --=[ 1622 exploits - 924 auxiliary - 282 post        ]

  54. + -- --=[ 472 payloads - 39 encoders - 9 nops             ]

  55. + -- --=[ Free Metasploit Pro trial: http://r-7.co/trymsp ]

  56. msf >

在MacOS中手动安装Metasploit

最新的OS X安装程序包也可以直接在这里下载:https://osx.metasploit.com/metasploitframework-latest.pkg

下载完后安装即可,安装完后,使用/opt/metasploit-framework/bin/msfconsole启动msfconsole。

在Kali Linux上使用Metasploit

Kali Linux是最受安全从业人员欢迎的操作系统,第一、它预装了几乎所有流行的渗透测试工具,降低了使用成本,其次它是基于Linux的操作系统,具有可靠的稳定性和安全性。

准备工作

你可以在物理机上安装Kali Linux,也可以在虚拟机中安装它,安装过程非常简单。

在Kali Linux设置Metasploit开发环境可以用以下命令:

  1. sudo apt update

  2. sudo apt -y install autoconf bison build-essential curl git-core libapr1

  3. libaprutil1 libcurl4-openssl-dev libgmp3-dev libpcap-dev libpq-dev

  4. libreadline6-dev libsqlite3-dev libssl-dev libsvn1 libtool libxml2 libxml2-

  5. dev libxslt-dev libyaml-dev locate ncurses-dev openssl postgresql

  6. postgresql-contrib wget xsel zlib1g zlib1g-dev

  7. curl -sSL https://rvm.io/mpapis.asc | gpg --import -

  8. curl -L https://get.rvm.io | bash -s stable

  9. source ~/.rvm/scripts/rvm

  10. cd /opt

  11. sudo git clone https://github.com/rapid7/metasploit-framework.git

  12. sudo chown -R `whoami` /opt/metasploit-framework

  13. cd metasploit-framework

  14. rvm --install $(cat .ruby-version)

  15. gem install bundler

  16. bundle install

如何安装

你可以从Kali官网下载(https://www.kali.org)Kali Linux ISO镜像文件,用来制作USB启动盘或者制作DVD-ROM光盘。你可以将Kali Linux安装到硬盘上或者直接使用 Live CD模式。也可以在虚拟机中安装Kali Linux。

本书中,我们将使用 Kali Linux 虚拟机。

1、从官网下载 Kali Vmware 虚拟机文件,导入到Vmware Workstation中,启动系统,输入用户名和密码即可登录到Kali中,root默认密码是toor。

2、成功登录后,直接从 应用程序 菜单中启动 Metasploit

image.png

Tip:从应用程序菜单启动 Metasploit后,将自动设置PostgreSQL数据库,它将创建数据库用户,创建msf和msf_test数据库,配置Metasploit使用数据库,并通过以下命令启动msfconsole:(这是自动的,不需要手动执行下面的命令)

  1. service postgresql start && msfdb init && msfconsole

过程如下:

image.png

其他

或者你可以直接在终端中运行msfconsole启动Metasploit

升级Kali Linux

升级Kali Linux非常简单,建议定期升级以获得最新的安全更新。若要升级,可以使用 apt update,然后使用 apt upgrade进行升级,这种方法是在不删除任何包的情况下升级已安装的包。如果要升级大的版本和重要更新。可以使用apt full-upgrade进行完全升级,这种方式将会删除过时的软件包和安装新的依赖。

构建渗透测试实验环境

构建一个渗透测试实验环境是非常有必要的。它允许你在一个安全的环境中练习和测试,因为直接针对真实系统攻击测试是违法的。使用虚拟机构建渗透测试实验环境具有可移植性,灵活性和低维护成本。并且可以构建多种操作系统,设置复杂的网络场景,并在多个目标上执行渗透测试。

准备工作

选择你喜欢的虚拟化软件,比如 Vmware Workstation、VirtualBox、Hyper-V等

我们需要构建的渗透测试实验环境拓扑如下:

image.png

包含 Kali Linux,Linux服务器和Windows服务器以及一台Windows 10客户机。

当然你可以根据自己的喜好来构建。

如何构建

Kali Linux:直接从Kali官网下载安装就行

Linux服务器:可以从 SourceForge下载 Metasploitable2 : https://sourceforge.net/projects/ metasploitable/files/Metasploitable2/

Windows 10 客户机:可以从微软开发者网站下载 90天评估版: https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/

Windows Server:我们通过Metasploitable 3来构建。在Windows上运行build_win2008.sh进行构建。

Metasploitable 3 安装过程在此不做描述

构建过程不做详细描述

配置SSH连接

准备工作

要配置远程登录Kali Linux,首先我们需要更改默认的root密码并生成新的SSH密钥。

怎么做

使用passwd命令修改root密码

  1. root@osboxes:~# passwd

  2. Enter new UNIX password: 

  3. Retype new UNIX password: 

  4. passwd: password updated successfully

  5. root@osboxes:~# 

重新配置SSH主机密钥非常简单,首先删除当前的SSH主机密钥,然后使用dpkg-reconfigure openssh-server命令重新生成密钥即可。

  1. root@osboxes:~# rm /etc/ssh/ssh_host_*

  2. root@osboxes:~# dpkg-reconfigure openssh-server 

  3. Creating SSH2 RSA key; this may take some time ...

  4. 2048 SHA256:1FN10l0k50Ng/dpeLIXTPmFGyupZB22hk4JNQC1aKcI root@osboxes (RSA)

  5. Creating SSH2 ECDSA key; this may take some time ...

  6. 256 SHA256:37c9q4AwOW4wEwUoEpQ1Jz/KXIYJfV53ORWeGBzONdI root@osboxes (ECDSA)

  7. Creating SSH2 ED25519 key; this may take some time ...

  8. 256 SHA256:ky1bOQlbMFIMB0si0w7Msv32fpSeza6lZeHn8OevGdU root@osboxes (ED25519)

  9. rescue-ssh.target is a disabled or a static unit, not starting it.

我们还需要编辑OpenSSH服务配置文件:/etc/ssh/sshd_config,将#PermitRootLogin without-password 更改为PermitRootLogin yes,从而运行root远程登录。

image.png

若要设置SSH服务开机启动,则执行systemctl enable ssh即可

  1. root@osboxes:~# systemctl enable ssh

  2. Synchronizing state of ssh.service with SysV service script with /lib/systemd/systemd-sysv-install.

  3. Executing: /lib/systemd/systemd-sysv-install enable ssh

  4. Created symlink /etc/systemd/system/sshd.service → /lib/systemd/system/ssh.service.

Tip:最好是将远程登录配置为密钥登录,而不是使用密码。

使用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 root@192.168.177.138

  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. root@192.168.177.138'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:~# 



配置PostgreSQL数据库

Metasploit的一个重要特性是支持PostgreSQL数据库,使用它来存储渗透测试结果和漏洞信息。

准备工作

启动服务,然后使用 Metasploit msfdb 初始化数据库

怎么做

1、启动数据库

  1. root@osboxes:~# systemctl start postgresql

2、初始化数据库

  1. ~# msfdb init

  2. Creating database user 'msf'

  3. Enter password for new role:

  4. Enter it again:

  5. Creating databases 'msf' and 'msf_test'

  6. Creating configuration file in /usr/share/metasploit-framework/config/database.yml

  7. Creating initial database schema

msfdb 还可以用来管理Metasploit Framework数据库

  1. root@osboxes:~# msfdb                                              

  2. Manage the metasploit framework database                          

  3.  msfdb init     # start and initialize the database              

  4.  msfdb reinit   # delete and reinitialize the database            

  5.  msfdb delete   # delete database and stop using it              

  6.  msfdb start    # start the database                              

  7.  msfdb stop     # stop the database                              

  8.  msfdb status   # check service status                            

  9.  msfdb run      # start the database and run msfconsole          

3、修改数据库配置文件

我们可以直接编辑 database.yml文件,文件位于/usr/share/metasploit-framework/config/database.yml

  1. root@osboxes:~# cat /usr/share/metasploit-framework/config/database.yml  

  2. development:                                                             

  3.   adapter: postgresql                                                    

  4.   database: msf                                                          

  5.   username: msf                                                          

  6.   password: 9JHbuu/CdoGT0kvBiSXf+VLDRQ9dKKpMYyWKY6Ui2jc=                 

  7.   host: localhost                                                        

  8.   port: 5432                                                             

  9.   pool: 5                                                                

  10.   timeout: 5                                                             

  11. production:                                                              

  12.   adapter: postgresql                                                    

  13.   database: msf                                                          

  14.   username: msf                                                          

  15.   password: 9JHbuu/CdoGT0kvBiSXf+VLDRQ9dKKpMYyWKY6Ui2jc=                 

  16.   host: localhost                                                        

  17.   port: 5432                                                             

  18.   pool: 5                                                                

  19.   timeout: 5                                                             

  20. test:                                                                    

  21.   adapter: postgresql                                                    

  22.   database: msf_test                                                     

  23.   username: msf                                                          

  24.   password: 9JHbuu/CdoGT0kvBiSXf+VLDRQ9dKKpMYyWKY6Ui2jc=                 

  25.   host: localhost                                                        

  26.   port: 5432                                                             

  27.   pool: 5                                                                

  28.   timeout: 5                                                             

里面的usrname和password是默认配置的,你可以根据自己的喜好进行更改

4、确定是否连接到数据库

启动msfconsole,然后执行db_status,检查数据库连接情况。

  1. msf > db_status

  2. [*] postgresql connected to msf

  3. msf >

更多

如果要手动连接到数据库,可以使用如下命令:

  1. db_connect <user:pass>@<host:port>/<database>

我们可以使用databse.yml文件测试db_connect命令

  1. msf > db_disconnect //断开连接

  2. msf > db_status //查看连接状态

  3. [*] postgresql selected, no connection

  4. msf > db_connect

  5. [*]    Usage: db_connect <user:pass>@<host:port>/<database>

  6. [*]       OR: db_connect -y [path/to/database.yml]

  7. [*] Examples:

  8. [*]        db_connect user@metasploit3

  9. [*]        db_connect user:pass@192.168.0.2/metasploit3

  10. [*]        db_connect user:pass@192.168.0.2:1500/metasploit3

  11. msf > db_connect -y /usr/share/metasploit-framework/config/database.yml //连接数据库

  12. [*] Rebuilding the module cache in the background...

  13. msf > db_status //查看连接状态

  14. [*] postgresql connected to msf

  15. msf >



创建工作区

Metasploit中有工作区的概念,可以用来隔离不同的渗透测试任务,从而避免混淆不同的测试。

怎么做

1、默认工作区

默认工作区是default,输入workspace查看

  1. msf > workspace

  2. * default

  3. msf >

输入workspace -h 查看命令帮助

  1. msf > workspace -h

  2. Usage:

  3.    workspace                  List workspaces

  4.    workspace -v               List workspaces verbosely

  5.    workspace [name]           Switch workspace

  6.    workspace -a [name] ...    Add workspace(s)

  7.    workspace -d [name] ...    Delete workspace(s)

  8.    workspace -D               Delete all workspaces

  9.    workspace -r <old> <new>   Rename workspace

  10.    workspace -h               Show this help information

  11. msf >

2、新建工作区

使用workspace -a命令添加新的工作区

  1. msf > workspace -a book

  2. [*] Added workspace: book

  3. msf > workspace

  4.  default

  5. * book

  6. msf >

3、删除工作区

使用workspace -d命令删除工作区

  1. msf > workspace -d book

  2. [*] Deleted workspace: book

  3. [*] Switched workspace: default

4、更改工作区

使用workspace命令更改工作区

  1. msf > workspace book

  2. [*] Workspace: book

5、重命名工作区

使用workspace -r命令更改工作区

  1. msf > workspace -r book msf

  2. [*] Switched workspace: msf

  3. msf >


10 使用数据库

配置完数据库,我们就可以使用它了,首先我们了解如何使用db_import导入外部工具数据。

准备工作

在msfconsole中运行db_import命令,查看支持的文件类型

  1. msf > db_import                                                                            

  2. Usage: db_import <filename> [file2...]                                                      

  3. Filenames can be globs like *.xml, or **/*.xml which will search recursively                

  4. Currently supported file types include:                                                     

  5.    Acunetix                                                                                

  6.    Amap Log                                                                                

  7.    Amap Log -m                                                                            

  8.    Appscan                                                                                

  9.    Burp Session XML                                                                        

  10.    Burp Issue XML                                                                          

  11.    CI                                                                                      

  12.    Foundstone                                                                              

  13.    FusionVM XML                                                                            

  14.    ...                                                              

  15.    Wapiti XML                                                                              

  16. msf >                                                                                      

怎么做

1、导入nmap扫描结果

先完成扫描,保存结果为 XML 文档

  1. root@osboxes:~# nmap -Pn -A -oX report 192.168.177.139

2、然后执行 db_import PATH进行导入

  1. msf > db_import /root/report

  2. [*] Importing 'Nmap XML' data

  3. [*] Import: Parsing with 'Nokogiri v1.8.5'

  4. [*] Importing host 192.168.177.139

  5. [*] Successfully imported /root/report

  6. msf >

3、当然也可以直接在msfconsole中运行dbnmap进行扫描,这样结果就直接保存到当前数据库中了,dbnmap 命令的参数与nmap 命令相同。

11 使用 hosts 命令

既然数据库中有了数据,就可以使用hosts命令来显示当前工作区中存储的所有主机了。

  1. msf > hosts

  2. Hosts

  3. =====

  4. address          mac                name  os_name  os_flavor  os_sp  purpose  info  comments

  5. -------          ---                ----  -------  ---------  -----  -------  ----  --------

  6. 192.168.177.139  00:0c:29:c6:a9:e5        Unknown                    device

  7. msf >

怎么做

1、查看命令帮助hosts -h

  1. msf > hosts -h

  2. Usage: hosts [ options ] [addr1 addr2 ...]

  3. OPTIONS:

  4.  -a,--add          Add the hosts instead of searching

  5.  -d,--delete       Delete the hosts instead of searching

  6.  -c <col1,col2>    Only show the given columns (see list below)

  7.  -C <col1,col2>    Only show the given columns until the next restart (see list below)

  8.  -h,--help         Show this help information

  9.  -u,--up           Only show hosts which are up

  10.  -o <file>         Send output to a file in csv format

  11.  -O <column>       Order rows by specified column number

  12.  -R,--rhosts       Set RHOSTS from the results of the search

  13.  -S,--search       Search string to filter by

  14.  -i,--info         Change the info of a host

  15.  -n,--name         Change the name of a host

  16.  -m,--comment      Change the comment of a host

  17.  -t,--tag          Add or specify a tag to a range of hosts

  18. Available columns: address, arch, comm, comments, created_at, cred_count, detected_arch, exploit_attempt_count, host_detail_count, info, mac, name, note_count, os_family, os_flavor, os_lang, os_name, os_sp, purpose, scope, service_count, state, updated_at, virtual_host, vuln_count, tags

  19. msf >


12 理解 services 命令

services命令作用是显示目标主机上可用的服务

查看命令帮助:

  1. msf > services -h

  2. Usage: services [-h] [-u] [-a] [-r <proto>] [-p <port1,port2>] [-s <name1,name2>] [-o <filename>] [addr1 addr2 ...]

  3.  -a,--add          Add the services instead of searching

  4.  -d,--delete       Delete the services instead of searching

  5.  -c <col1,col2>    Only show the given columns

  6.  -h,--help         Show this help information

  7.  -s <name1,name2>  Search for a list of service names

  8.  -p <port1,port2>  Search for a list of ports

  9.  -r <protocol>     Only show [tcp|udp] services

  10.  -u,--up           Only show services which are up

  11.  -o <file>         Send output to a file in csv format

  12.  -O <column>       Order rows by specified column number

  13.  -R,--rhosts       Set RHOSTS from the results of the search

  14.  -S,--search       Search string to filter by

  15. Available columns: created_at, info, name, port, proto, state, updated_at

怎么做

1、显示所有可用服务

  1. msf > services

  2. Services

  3. ========

  4. host             port  proto  name         state  info

  5. ----             ----  -----  ----         -----  ----

  6. 192.168.177.142  22    tcp    ssh          open   OpenSSH 5.3p1 Debian 3ubuntu4 Ubuntu Linux; protocol 2.0

  7. 192.168.177.142  80    tcp    http         open   Apache httpd 2.2.14 (Ubuntu) mod_mono/2.4.3 PHP/5.3.2-1ubuntu4.30 with Suhosin-Patch proxy_html/3.0.1 mod_python/3.3.1 Python/2.6.5 mod_ssl/2.2.14 OpenSSL/0.9.8k Phusion_Passenger/4.0.38 mod_perl/2.0.4 Perl/v5.10.1

  8. 192.168.177.142  139   tcp    netbios-ssn  open   Samba smbd 3.X - 4.X workgroup: WORKGROUP

  9. 192.168.177.142  143   tcp    imap         open   Courier Imapd released 2008

  10. 192.168.177.142  443   tcp    ssl/https    open

  11. 192.168.177.142  445   tcp    netbios-ssn  open   Samba smbd 3.X - 4.X workgroup: WORKGROUP

  12. 192.168.177.142  5001  tcp    java-rmi     open   Java RMI

  13. 192.168.177.142  8080  tcp    http         open   Apache Tomcat/Coyote JSP engine 1.1

  14. 192.168.177.142  8081  tcp    http         open   Jetty 6.1.25

  15. msf >

2、过滤服务

  1. msf > services -s http

  2. Services

  3. ========

  4. host             port  proto  name  state  info

  5. ----             ----  -----  ----  -----  ----

  6. 192.168.177.142  80    tcp    http  open   Apache httpd 2.2.14 (Ubuntu) mod_mono/2.4.3 PHP/5.3.2-1ubuntu4.30 with Suhosin-Patch proxy_html/3.0.1 mod_python/3.3.1 Python/2.6.5 mod_ssl/2.2.14 OpenSSL/0.9.8k Phusion_Passenger/4.0.38 mod_perl/2.0.4 Perl/v5.10.1

  7. 192.168.177.142  8080  tcp    http  open   Apache Tomcat/Coyote JSP engine 1.1

  8. 192.168.177.142  8081  tcp    http  open   Jetty 6.1.25

3、过滤端口

  1. msf > services -p 22

  2. Services

  3. ========

  4. host             port  proto  name  state  info

  5. ----             ----  -----  ----  -----  ----

  6. 192.168.177.142  22    tcp    ssh   open   OpenSSH 5.3p1 Debian 3ubuntu4 Ubuntu Linux; protocol 2.0

  7. msf >

4、搜索特定字符

  1. msf > services -S Apache

  2. Services

  3. ========

  4. host             port  proto  name  state  info

  5. ----             ----  -----  ----  -----  ----

  6. 192.168.177.142  80    tcp    http  open   Apache httpd 2.2.14 (Ubuntu) mod_mono/2.4.3 PHP/5.3.2-1ubuntu4.30 with Suhosin-Patch proxy_html/3.0.1 mod_python/3.3.1 Python/2.6.5 mod_ssl/2.2.14 OpenSSL/0.9.8k Phusion_Passenger/4.0.38 mod_perl/2.0.4 Perl/v5.10.1

  7. 192.168.177.142  8080  tcp    http  open   Apache Tomcat/Coyote JSP engine 1.1

5、多条件过滤

  1. msf > services -c name,port,info -S Apache 192.168.177.142

  2. Services

  3. ========

  4. host             name  port  info

  5. ----             ----  ----  ----

  6. 192.168.177.142  http  80    Apache httpd 2.2.14 (Ubuntu) mod_mono/2.4.3 PHP/5.3.2-1ubuntu4.30 with Suhosin-Patch proxy_html/3.0.1 mod_python/3.3.1 Python/2.6.5 mod_ssl/2.2.14 OpenSSL/0.9.8k Phusion_Passenger/4.0.38 mod_perl/2.0.4 Perl/v5.10.1

  7. 192.168.177.142  http  8080  Apache Tomcat/Coyote JSP engine 1.1

Tip:在后续的章节我们将学习更多的数据库命令,比如 loot、cred、vulns、notes。

本章完

相关操作学习

 Metasploit之PostgreSQL及Scanner实践:通过该实验学会metasploit与postgresql的配合使用,metasploit中主机扫描模块的使用以及集成的web应用扫描框架使用,数据库和扫描器的配合使用。

http://www.hetianlab.com/expc.do?ec=ECID62bc-07d5-4138-a540-e5e7a8aebb51

image.png


说明

本文由合天网安实验室编译,转载请注明来源。

关于合天网安实验室

合天网安实验室(www.hetianlab.com)-国内领先的实操型网络安全在线教育平台,真实环境,在线实操学网络安全 ; 实验内容涵盖:系统安全,软件安全,网络安全,Web安全,移动安全,CTF,取证分析,渗透测试,网安意识教育等。






# 合天智汇
本文为 独立观点,未经允许不得转载,授权请联系FreeBuf客服小蜜蜂,微信:freebee2022
被以下专辑收录,发现更多精彩内容
+ 收入我的专辑
+ 加入我的收藏
相关推荐
  • 0 文章数
  • 0 关注者