网络常用命令
- 目标主机缓存表ARP
C:\>arp -a
2. Nmap 是網路掃描、探測工具
需要安装 nmap-7.91 npcap-1.50
測試 HTTP ( 80 port ),結果輸出到畫面
nmap -p 80 192.168.128.129
測試 HTTP ( 80 port ),結果輸出到 C:\P\result.txt 檔案
nmap -p 80 192.168.128.129 > C:\P\result.txt
測試 HTTPS (SSL , 443 port ),結果輸出到畫面
nmap --script ssl-cert,ssl-enum-ciphers -p 443 192.168.128.129
測試 HTTPS (SSL , 443 port ),結果輸出到 C:\P\result.txt 檔案
nmap --script ssl-cert,ssl-enum-ciphers -p 443 192.168.128.129 > C:\P\result.txt
评论
发表评论