Skip to main content

Yet another GeoIP resolution tool.

Project description

Chickadee

Yet another GeoIP resolution tool.

build status

         _          _
        ('<        >')
       \(_)________( \
        (___________)\\        _____ _     _      _             _
           (     )     \      / ____| |   (_)    | |           | |
            |   |            | |    | |__  _  ___| | ____ _  __| | ___  ___
            |   |            | |    | '_ \| |/ __| |/ / _` |/ _` |/ _ \/ _ \
            |   |            | |____| | | | | (__|   < (_| | (_| |  __/  __/
           _|   |_            \_____|_| |_|_|\___|_|\_\__,_|\__,_|\___|\___|
          (_______)

Supported GeoIP back-ends:

  • http://ip-api.com/ - Free to query up to 150 requests per minute. Unlimited API keys available for purchase.

Installation

You may install Chickadee on your platform using pip install chickadee (you may need to use pip3 depending on your system configuration). Please ensure you are using Python 3

You may also install via the source code as detailed below.

macOS and Linux

Requirements:

  • Python 3+, installed on your path
  • Virtualenv (pip3 install virtualenv)
  1. Clone the git repo: git clone https://github.com/chapinb/chickadee.git
  2. Create your virtual environment virtualenv -p python3 venv3 and activate it (source venv3/bin/activate)
  3. Install dependencies: pip install .
  4. Run chickadee --help to get started.

Windows

Requirements:

  • Python 3+, installed on your path
  • Virtualenv (pip.exe install virtualenv)
  1. Clone the git repo: git clone https://github.com/chapinb/chickadee.git
  2. Create your virtual environment virtualenv -p python3 venv3 and activate it (source venv3/Scripts/activate.bat)
  3. Install dependencies: pip install .
  4. Run chickadee --help to get started.

Usage

The below shows the help information for using Chickadee. It can accept any of the below formats:

  • Loose IP addresses (either a single IP or a comma separated list)
  • IPv4 or IPv6
  • A path to a plaintext file containing IP addresses (even if they are among other data)
  • A path to a gzip'd plaintext file (not an archive of multiple plaintext files)
  • A path to a folder containing plaintext or gzip'd plaintext data
$ chickadee --help
usage: chickadee [-h] [-f F] [-t {json,jsonl,csv}] [-w FILENAME.JSON] data

Sample Argparse

positional arguments:
  data                 Either an IP address, comma delimited list of IP
                       addresses, or path to a file or folder containing files
                       to check for IP address values. Currently supported
                       file types: plain text (ie logs, csv, json), gzipped
                       plain text

optional arguments:
  -h, --help           show this help message and exit
  -f F                 Comma separated fields to query (default: query,as,org,
                       ispcontinent,country,regionName,city,district,zip,mobil
                       e,proxy,reverse,lat,lon,timezonestatus,message)
  -t {json,jsonl,csv}  Output format (default: jsonl)
  -w FILENAME.JSON     Path to file to write output (default:
                       <_io.TextIOWrapper name='<stdout>' mode='w'
                       encoding='UTF-8'>)

Built by Chapin Bryce, v.20190907

asciicast

Example

To resolve 8.8.8.8 and 1.1.1.1. The jq tool isn't a requirement, but is a great utility for formatting and querying any JSON data.

$ chickadee 8.8.8.8,1.1.1.1 | jq '.'
{
  "as": "AS15169 Google LLC",
  "city": "Ashburn",
  "country": "United States",
  "district": "",
  "lat": 39.0438,
  "lon": -77.4874,
  "mobile": false,
  "org": "Google Inc.",
  "proxy": false,
  "query": "8.8.8.8",
  "regionName": "Virginia",
  "zip": "20149"
}
{
  "as": "AS13335 Cloudflare, Inc.",
  "city": "Sydney",
  "country": "Australia",
  "district": "",
  "lat": -33.8688,
  "lon": 151.209,
  "mobile": false,
  "org": "",
  "proxy": false,
  "query": "1.1.1.1",
  "regionName": "New South Wales",
  "zip": "1001"
}

Example of using the custom fields. Available field names are at: http://ip-api.com/docs/api:json

$ chickadee 8.8.8.8,1.1.1.1 -t jsonl -f as,proxy
{"as": "AS15169 Google LLC", "proxy": false}
{"as": "AS13335 Cloudflare, Inc.", "proxy": false}

Known bugs

Below are a list of known bugs. Please report any new bugs identified or submit a PR to patch any of the below or ones you found on your own. No one is perfect :)

  • IPv6 addresses expressed in expanded form in the source document are not properly deduplicated against discovered IPv6 addresses in compressed form.

Contributing

Please create a fork of the repository, make your changes, and submit a pull request for review!

You can always use the issues tab to suggest features and identify bugs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chickadee-20190915.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

chickadee-20190915-py3-none-any.whl (27.1 kB view details)

Uploaded Python 3

File details

Details for the file chickadee-20190915.tar.gz.

File metadata

  • Download URL: chickadee-20190915.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3

File hashes

Hashes for chickadee-20190915.tar.gz
Algorithm Hash digest
SHA256 7463e1ddce3969a14a7449774639b87a5976aefa653e96bbeacc5bf3e8ea011e
MD5 12b72d1f3229fbf0202d01da6261db42
BLAKE2b-256 af24c0395112df7494c8ac4ac6e1432630d0637b62a540a5030013f1272f5f99

See more details on using hashes here.

File details

Details for the file chickadee-20190915-py3-none-any.whl.

File metadata

  • Download URL: chickadee-20190915-py3-none-any.whl
  • Upload date:
  • Size: 27.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3

File hashes

Hashes for chickadee-20190915-py3-none-any.whl
Algorithm Hash digest
SHA256 b6f636024de904fa12a30a17f499eaa32cd30a2938b10c4d78c6d6be2931d877
MD5 d0fe552b3b6585d600b9dcbc2054b074
BLAKE2b-256 c9c9b0d0e079b6590cf2edbbdd66e0d55f3d1348c70c1bf5a2fceaeb16a922ab

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page