Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/melbadry9/WhoEnum
Mass querying whois records
https://github.com/melbadry9/WhoEnum
bugbounty enumeration recon whois
Last synced: 3 months ago
JSON representation
Mass querying whois records
- Host: GitHub
- URL: https://github.com/melbadry9/WhoEnum
- Owner: melbadry9
- License: mit
- Created: 2021-11-18T12:17:34.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-28T16:56:13.000Z (almost 3 years ago)
- Last Synced: 2024-06-06T20:57:29.841Z (5 months ago)
- Topics: bugbounty, enumeration, recon, whois
- Language: Python
- Homepage:
- Size: 104 KB
- Stars: 28
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-hacking-lists - melbadry9/WhoEnum - Mass querying whois records (Python)
README
# WhoEnum
Mass querying whois records using whois tool
## Install
```bash
git clone http://github.com/melbadry9/WhoEnum.git;
cd WhoEnum;
pip3 install .;
```## Help
```bash
$ whoenum -husage: whoenum [-h] [-t THREADS] [-r RETRIES] [-d DOMAIN | -l LIST]
optional arguments:
-h, --help show this help message and exit
-t THREADS, --threads THREADS
Number of threads
-r RETRIES, --retries RETRIES
Number of retries after failure attempt
-d DOMAIN, --domain DOMAIN
Use domains as a string sperated by ','
-l LIST, --list LIST Use list of domains
```## Example
```bash
$ whoenum -d alibaba.com | jq
``````json
{
"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"
}
```## Thanks
This tool is based on [python-whois](https://github.com/richardpenman/whois)