01 2022 档案

摘要:nmap详细操作1. 探测网络中活跃的主机 nmap -sP 10.0.105.1/24 :探测10.0.105网段中的全部主机。 2. 探测主机系统版本 nmap -O 192.168.45.129 :探测指定IP的相关数据。 3. 探测是否打开指定端口 nmap -p80,443 192.168.61.0/24 阅读全文
posted @ 2022-01-25 11:25 Security 阅读(139) 评论(0) 推荐(0)
摘要:Linux-批量ping 批量端口探真批量测试 ip/domain 连通性 #!/bin/bash echo Start ping for i in `/usr/bin/cat ~/agent/ping_list/domain` do code=`ping -c 4 -W 3 $i|grep loss|awk '{print $6}'| 阅读全文
posted @ 2022-01-12 14:27 Security 阅读(900) 评论(0) 推荐(0)