Agent responsible for retrieving WHOIS information of an IP such as it's AS Number, contact information, registrar, and address.
This repository is an implementation of OXO Agent for ipwhois.
To perform your first scan, simply run the following command.
oxo scan run --install --agent agent/ostorlab/whois_ip ip 8.8.8.8
This command will download and install agent/ostorlab/whois_ip
.
For more information, please refer to
the OXO Documentation
Agent Whois can be installed directly from the oxo agent store or built from this repository.
oxo agent install agent/ostorlab/whois_ip
You can then run the agent with the following command:
oxo scan run --agent agent/ostorlab/whois_ip domain-name tesla.com
- To build the whois_ip agent you need to have oxo installed in your machine. if you have already installed oxo, you can skip this step.
pip3 install ostorlab
- Clone this repository.
git clone https://github.com/Ostorlab/agent_whois_ip.git && cd agent_whois_ip
- Build the agent image using oxo cli.
oxo agent build --file=ostorlab.yaml
You can pass the optional flag --organization
to specify your organisation. The organization is empty by default.
- Run the agent using on of the following commands:
- If you did not specify an organization when building the image:
oxo scan run --agent agent//whois_ip ip 8.8.8.8
- If you specified an organization when building the image:
oxo scan run --agent agent/[ORGANIZATION]/whois_ip ip 8.8.8.8