From d96a91f161e6a9a1a30cf3931571015fabac88a3 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Tue, 9 Feb 2021 12:05:20 +0000 Subject: [PATCH] Copy README from ltipinfo --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7585b33 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# IP Information Lookup Tool (iPilot) + +This Go application takes an IP address or domain name and gathers the following information: +- Location +- Timezone +- Internet Service Provider +- Autonomous System +- Advertised Prefixes + +## Running the script +Here are some ways that you can run the script: +| Command | Description | +| ---------------------- | ---------------------------------------- | +| `./main.py -i me` | Run against your own connection | +| `./main.py -i 1.1.1.1` | Run against the IP address `1.1.1.1` | +| `./main.py -i google.com` | Run against the domain name `google.com` | +| `./main.py -i google.com -p` | Run against the domain name `google.com` and lists BGP prefixes | + +## Credits +This script runs thanks to the APIs provided by [IP-API](http://ip-api.com) and [HackerTarget](https://hackertarget.com/as-ip-lookup).