nmap 常用命令
How to install nmap Ubuntu/Debain systems # sudo apt-get install nmap To Install nmap in yum packaged system Centos/RHEL # yum install nmap -y To install from rpm Pcakge # rpm -ivh nmap{version_of_package}.deb To Install from .deb package file if you have downloaded # dpkg -i nmap{version_of_package}.deb scan a single host # nmap ubuntu.example.com scan a hostname for more information about the host # nmap -v ubuntu.example.com Scan Multiple IP Address # nmap 192.168.1.77 192.168.1.99 Scanning Range of IP using Wildcard (*) # nmap 192.168.1.* Scanning Entire Subnet 255.255.255.0 # nmap 192.168.1.0/24 Scanning for range of IPs # nmap 192.168.1.33-99 To Find the OS & Version of remote Hosts Using Nmap # nmap -A 192.168.1.77 his will output more information about a Host and its Ports and Operating systems and Version # nmap -v -A 192.168.1.77 scanning for particular Port number # nmap -p 22 192.168.1.99 scanning for TCP ports 80 # nmap -p T:443 192.168.1.99 scanning for UDP ports 82 # nmap -p U:82 192.168.1.99 scanning multiple ports # nmap -p 443,82 192.168.1.99 scanning for all ports using wildcard(*) # nmap -p "*" 192.168.1.99 To Watch the all packets send and reciving # nmap --packet-trace 192.168.1.77 Know Whether a Host is Protected by Firewall or not : To scan firewall protcted for a host # nmap -PN 192.168.1.99 scan firewall protected for a Network # nmap -sA 192.168.1.77 To know the interface and Route # nmap --iflist Excluding Single host # nmap 192.168.1.10-100 --exclude 192.168.1.77 Excluding Multiple Hosts # nmap 192.168.1.10-100 --exclude 192.168.1.77,192.168.1.95,192.168.1.99 To Perform a Fast scan # nmap -F 192.168.1.77 To know more commands Use command man # man nmap (编辑:甘南站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
- putty 无法登陆Ubuntu系统解决办法
- Ubuntu使用VNC连接windows错误: connection: no matahcing
- ubuntu利用update-alternatives配置java
- 在Ubuntu 14.10中安装OpenCV
- 安装ubuntu14.04遇到网卡驱动不成功问题
- ubuntu安装memcached
- Ubuntu elasticsearch max virtual memory areas vm.max_ma
- 如何在Ubuntu中安装Spring Tool Suite?
- Ubuntu上配置Ruby on Rails框架及RubyMine IDE开发环境
- ubuntu14.04系统中安装tensorflow(gpu版)