Linux 掃描(Scan) 遠端/近端 IP/PORT GUI 軟體
Linux 掃描(Scan) 遠端/近端 IP/PORT GUI 軟體
資料來源: https://linuxhint.com/zenmap_scan_network/
軟體簡介:
Zenmap is a GUI (Graphical User Interface) the most popular network scanner called Nmap (Network Mapper). This article shows how to carry out different scan types focusing on the flags executed behind the intuitive and user-friendly interface. While Zenmap usage is the same for all Linux systems the installation procedure is based on Debian and based Linux distributions.To being install Zenmap through the following command execution:
軟體安裝:
apt install zenmap -y
軟體介面:
One thought on “Linux 掃描(Scan) 遠端/近端 IP/PORT GUI 軟體”
nmap教學~ Nmap 網路診斷工具基本使用技巧與教學
https://blog.gtwang.org/linux/nmap-command-examples-tutorials/
安裝:
sudo yum install nmap
sudo apt-get install nmap
基本主機掃描
nmap http://www.hinet.net
nmap -v http://www.hinet.net
掃描多台主機
nmap http://www.hinet.net tw.yahoo.com http://www.google.com.tw
一次掃描整個子網域:
nmap 192.168.0.*
nmap 192.168.0.0/24
nmap 192.168.0.123,124,125
nmap 192.168.0.123-140
以檔案列表指定主機
nmap -iL hostlist.txt
偵測作業系統版本
nmap -A scanme.nmap.org
nmap -O scanme.nmap.org
nmap -sV scanme.nmap.org
測試主機是否有防火牆
nmap -sA scanme.nmap.org
掃描有防火牆的主機
nmap -PN scanme.nmap.org
偵測有開機的主機
nmap -sP 140.115.35.0/24
快速掃描
nmap -F http://www.hinet.net
指定掃描的連接埠
nmap -p 80 192.168.1.1
nmap -p T:80 192.168.1.1
nmap -p U:53 192.168.1.1
nmap -p 80,443 192.168.1.1
nmap -p 80-200 192.168.1.1
查詢主機名稱
nmap -sL 192.168.1.0/24