目录导航
使用whois工具批量查询whois记录的工具
安装方法
git clone http://github.com/melbadry9/WhoEnum.git;
cd WhoEnum;
pip3 install .;
命令参数
$ whoenum -h
用法: whoenum [-h] [-t 线程] [-r 重试] [-d 域名| -l 列表]
可选参数:
-h, --help 显示这个帮助信息并退出
-t THREADS, --threads 线程
线程
-r RETRIES, --retries 重试
失败后的重试次数
-d 域名, --domain 域名
使用域作为由','分隔的字符串
-l LIST, --list LIST 使用域名列表批量检测
使用示例
whoenum -d alibaba.com | jq
结果:
{
"domain_name": [
"ALIBABA.COM",
"alibaba.com"
],
"registrar": "Alibaba Cloud Computing (Beijing) Co., Ltd.",
"whois_server": "grs-whois.hichina.com",
"referral_url": null,
"updated_date": "2018-11-19 04:52:41",
"creation_date": "1999-04-15 04:00:00",
"expiration_date": "2023-05-23 19:54:58",
"name_servers": [
"NS1.ALIBABADNS.COM",
"NS2.ALIBABADNS.COM"
],
"status": [
"clientTransferProhibited https://icann.org/epp#clientTransferProhibited",
"serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited",
"serverTransferProhibited https://icann.org/epp#serverTransferProhibited",
"serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited"
],
"emails": "[email protected]",
"dnssec": "unsigned",
"name": null,
"org": null,
"address": null,
"city": null,
"state": "zhe jiang",
"zipcode": null,
"country": "CN"
}
此工具基于 python-whois
工具下载地址
①GitHub:
github.com/melbadry9/WhoEnum.zip
②云中转网盘:
yzzpan.com/#sharefile=zgUoqhRu_24027
解压密码:www.ddosi.org
使用截图
单个域名whois查询
whoenum -d ddosi.org
#或
whoenum -d ddosi.org | jq

批量查询
whoenum -l ddosi.org.txt -t 10 -r 5

项目地址
转载请注明出处及链接