实战脚本|批量检测域名是否能ping通

免责声明:该公众号里面提供的所有攻防知识只用于授权目标攻击,如非法攻击,后果自负。

(脚本源码在文末)实战中常常遇到众多的子域名需要测试是否可用,此时如果是小白,不会子域名爆破,需要手动一个一个测试,但这样也太过于繁琐了。此时,一个批量ping 域名的脚本诞生了。

实战脚本|批量检测域名是否能ping通_第1张图片

脚本原理:将收集到的域名保存在1.txt中,打开终端,进入到保存1.txt和脚本的路径,输入

python domain.py脚本跑起来,脚本自动会将ping通的域名保存在2.txt,ping不通的域名保存在3.txt。

1.txt域名格式如下图所示:                

实战脚本|批量检测域名是否能ping通_第2张图片

ping通的域名保存在2.txt,如下图所示:

ping不通的域名保存在3.txt,如下图所示:

脚本源码:

import os
# 定义文件名input_file = "1.txt"output_file1 = "2.txt"output_file2 = "3.txt"
# 打开输入文件,读取域名列表with open(input_file, "r") as f:    domains = [line.strip() for line in f]
# 循环测试每个域名是否可达reachable_domains = []unreachable_domains = []for domain in domains:    response = os.system("ping -c 1 " + domain)    if response == 0:        reachable_domains.append(domain)    else:        unreachable_domains.append(domain)
# 将可达的域名写入输出文件1中with open(output_file1, "w") as f:    f.write("\n".join(reachable_domains))
# 将不可达的域名写入输出文件2中with open(output_file2, "w") as f:    f.write("\n".join(unreachable_domains))
print("Done!")

感谢观看!

你可能感兴趣的:(网络安全,计算机网络)