码迷,mamicode.com
首页 > 其他好文 > 详细

nmap的使用

时间:2019-08-10 11:33:02      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:start   hosts   add   cti   操作   host   targe   code   over   

  • 一台主机有哪些开启了
    nmap <target_ip>
    技术图片
  • 指定探测主机的指定端口是否开放
    -p
    nmap -p <port1>,<port2> <target_ip>
  • 技术图片

    1. 扫描主机的操作系统和端口开发情况
      -O: Enable OS detection
      nmap -O <target_ip>
      技术图片

    2. 扫描主机ping是存活 (-P 代表的是ping的意思)
      -sP 是使用ICMP协议发送echo请求数据包
      nmap -sP <target_ip>
      nmap -sP <network address> </CIDR>

    3. 常组合参数
      -v 详细信息
      -n 不dns反向解析

    4. 常用命令扫描
      -sV: Probe open ports to determine service/version info
      -Pn: Treat all hosts as online -- skip host discovery

    nmap -sV -Pn -p1-65535 <target_ip> -v -n
    nmap -sV -Pn -p1-65535 192.168.203.0/24 -n -v

    nmap的使用

    标签:start   hosts   add   cti   操作   host   targe   code   over   

    原文地址:https://blog.51cto.com/cuidehua/2428277

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    登录后才能评论!
    © 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
    迷上了代码!