An API for the Thinkst Canary Console
Project description
Thinkst Applied Research
Overview
The Python Canary API Wrapper allows access to the Canary Web API.
Installation
The API is supported on python 2.7. The recommended way to install the API Wrapper is via pip.
pip install canarytools
For instructions on installing python and pip see “The Hitchhiker’s Guide to Python” Installation Guides.
Quickstart
Assuming you have your API key handy as well as the domain of your website:
import canarytools
console = canarytools.Console(api_key='API_KEY', domain='CLIENT_DOMAIN')
Note: You can find your API key and domain on your console. Head over to the console’s setup page and under Canary Console API you’ll find your API key. Your domain is the tag in-front of ‘canary.tools’ in the console’s url. For example in https://testconsole.canary.tools/settings testconsole is the domain.
Alternatively, you can download a configurations file from the Canary Console API tab. Inside the file you’ll find instructions on where to place it. If you have this on your system the api_key and domain parameters are no longer necessary when instantiating a Console object.
With the console instance you can then interact with a Canary Console:
# Get all devices
console.devices.all()
# Acknowledge all incidents for a device older than 3 days
console.incidents.acknowledge(node_id='329921d242c30b5e', older_than='3d')
# Iterate all devices and start the update process
for device in console.devices.all():
device.update(update_tag='4ae023bdf75f14c8f08548bf5130e861')
# Acknowledge and delete all host port scan Incidents
for incident in console.incidents.unacknowledged():
if isinstance(incident, canarytools.IncidentHostPortScan):
incident.acknowledge()
incident.delete()
# Create a web image Canarytoken
console.tokens.create(
kind=canarytools.CanaryTokenKinds.KIND_WEB_IMAGE,
memo='Drop this token on DC box',
web_image='/path/to/test.png',
mimetype='image/png')
# Print out the name of all incidents and the source IP address
for incident in console.incidents.all():
print incident.description, incident.src_host
Please see the API doc’s documentation for more examples of what you can do with the Canary Console API.
Discussion and Support
Please file bugs and feature requests as issues on GitHub after first searching to ensure a similar issue was not already filed. If such an issue already exists please give it a thumbs up reaction. Comments to issues containing additional information are certainly welcome.
Documentation
The documentation is located at http://canarytools.readthedocs.io.
License
The Python Canary API Wrapper’s source (v1.0.0+) is provided under the Revised BSD License.
Copyright (c), 2017, Thinkst Applied Research
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file canarytools-1.1.1.tar.gz
.
File metadata
- Download URL: canarytools-1.1.1.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0390959dbbec0efbf6b930377bb9729dfc3d544a5adc7e8a6dfcb3ee6bd86d8 |
|
MD5 | f742a2e3056f9f99b24bb76c2586aed8 |
|
BLAKE2b-256 | 0acd8f4e3fdafdd94501a9936e0508225fc386ec56ca07d7c3ee7dcfef96a0eb |
File details
Details for the file canarytools-1.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: canarytools-1.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 23.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96c0a006679c6e6e204b5fdeef118e0202c62439f15f496e98a99a1cdf7da51a |
|
MD5 | 29ee0df6eef9da0dea72e67be7938465 |
|
BLAKE2b-256 | 913171451052f977a0ec3a23f267f9d8246567f1482ed04ebe6efdc65a414fc8 |