implementing-canary-tokens-for-network-intrusion skill (Anthropic-Cybersecurity-Skills)
- Install
- SKILL.md (verbatim)
- When to Use
- Prerequisites
- Core Concepts
- What Are Canary Tokens?
- Token Types for Network Intrusion Detection
- Alert Flow Architecture
- Instructions
- Step 1: Generate DNS Canary Tokens
- Step 2: Deploy HTTP Canary Tokens
- Step 3: Create AWS API Key Tokens
- Step 4: Configure Webhook Alert Integration
- Step 5: Enterprise Deployment with Thinkst Canary API
- Step 6: Token Placement Strategy by Network Zone
- Examples
- Full Deployment Script
- Monitor Triggered Tokens
- Generate Token Inventory
- Validation Checklist
- References
- Other files in this skill
- references/api-reference.md (verbatim)
- Canarytokens.org Public API
- Create Token
- Thinkst Canary Enterprise API
- Authentication
- Create Token
- List Tokens
- Get Triggered Alerts
- Using Python Client Library
- Webhook Alert Payload Format
- Token Placement Matrix
- MITRE ATT&CK Mapping
- References
What it does. 'Deploys DNS, HTTP, and AWS API key canary tokens across network infrastructure Part of mukul975/Anthropic-Cybersecurity-Skills (817 security skills) (mukul975/Anthropic-Cybersecurity-Skills).
| Upstream | mukul975/Anthropic-Cybersecurity-Skills |
| Skill file | skills/implementing-canary-tokens-for-network-intrusion/SKILL.md |
| License | Apache-2.0 (skill folder LICENSE) |
| Author | mukul975 |
| Fetched | 2026-09-10 |
Install
npx skills add mukul975/Anthropic-Cybersecurity-Skills --skill implementing-canary-tokens-for-network-intrusion, or copy the skill folder into~/.claude/skills/implementing-canary-tokens-for-network-intrusion/.- Raw file:
curl -sL https://raw.githubusercontent.com/mukul975/Anthropic-Cybersecurity-Skills/HEAD/skills/implementing-canary-tokens-for-network-intrusion/SKILL.md
SKILL.md (verbatim)
1 placeholder credential was shortened (for example to
api_key=YOUR_KEY) to pass the site's secret filter.
name: implementing-canary-tokens-for-network-intrusion
description: 'Deploys DNS, HTTP, and AWS API key canary tokens across network infrastructure
to detect unauthorized access and lateral movement. Integrates with webhook alerting
(Slack, Teams, email, generic HTTP) for real-time intrusion notifications. Provides
automated token generation, placement strategies, and monitoring for enterprise
network environments. Use when building deception-based network intrusion detection
with Canarytokens.org and Thinkst Canary platforms.
'
domain: cybersecurity
subdomain: security-operations
tags:
- canary-tokens
- intrusion-detection
- deception
- network-security
- honeytokens
- breach-detection
version: '1.0'
author: mukul975
license: Apache-2.0
nist_csf:
- DE.CM-01
- RS.MA-01
- GV.OV-01
- DE.AE-02
mitre_attack:
- T1078
- T1190
- T1059
- T1021
- T1550
Implementing Canary Tokens for Network Intrusion Detection
When to Use
- When deploying deception-based tripwires across network infrastructure to detect intrusions
- When building early warning systems that alert on unauthorized access to sensitive resources
- When planting fake AWS credentials, DNS beacons, or HTTP tokens to catch attackers during lateral movement
- When integrating canary token alerts with SOC workflows via Slack, Microsoft Teams, or SIEM webhooks
- When complementing traditional IDS/IPS with zero-false-positive deception technology
Prerequisites
- Python 3.8+ with
requestslibrary installed - Network access to canarytokens.org API (or self-hosted Canarytokens instance)
- Webhook endpoint for alert delivery (Slack, Teams, email, or generic HTTP)
- For Thinkst Canary enterprise: valid console domain and API auth token
- Administrative access to target systems where tokens will be planted
- Appropriate authorization for all deployment activities
Core Concepts
What Are Canary Tokens?
Canary tokens are digital tripwires -- resources that should never be accessed during normal operations. When an attacker interacts with a canary token, it immediately triggers an alert with near-zero false positives. Unlike signature-based detection, canary tokens detect attackers by their behavior (accessing bait resources) rather than matching known patterns.
Token Types for Network Intrusion Detection
| Token Type | Trigger Mechanism | Best Placement | Detection Scenario |
|---|---|---|---|
| DNS Token | DNS resolution of FQDN | Config files, scripts, internal docs | Attacker reads configs during recon |
| HTTP Token | HTTP GET to unique URL | Internal wikis, bookmark files, HTML | Attacker browses internal resources |
| AWS API Key | AWS API call with fake creds | .aws/credentials, env files, repos |
Attacker tests found credentials |
| Cloned Site | Visit to cloned page | Internal portals, admin panels | Attacker accesses cloned services |
| SVN Token | SVN checkout | Repository configs | Attacker clones repositories |
| SQL Server | Database login attempt | Connection strings, config files | Attacker attempts DB access |
Alert Flow Architecture
[Attacker Action] --> [Token Triggered] --> [Canarytokens Server]
|
[Webhook POST]
|
+-------------------------+-------------------------+
| | |
[Slack Alert] [Email Alert] [SIEM Ingestion]
| | |
[SOC Analyst] [On-Call Page] [Correlation Rule]
Instructions
Step 1: Generate DNS Canary Tokens
DNS tokens are the most versatile -- they trigger on any DNS resolution, even from air-gapped networks with only DNS egress. The token is an FQDN that, when resolved, alerts the token owner.
import requests
# Create DNS canary token via Canarytokens.org
response = requests.post("https://canarytokens.org/generate", data={
"type": "dns",
"email": "soc@company.com",
"memo": "Production database server - /etc/app/db.conf",
"webhook_url": "https://hooks.slack.com/services/T.../B.../xxx"
}, timeout=15)
token_data = response.json()
dns_hostname = token_data["hostname"]
# Example: abc123def456.canarytokens.com
Plant DNS tokens in locations attackers commonly inspect:
/etc/hostsentries pointing to the canary FQDN- Application configuration files (
database_host,backup_server) - SSH config files (
~/.ssh/config) with canary hostnames - Internal DNS zone files as decoy A records
- CI/CD pipeline environment variables
Step 2: Deploy HTTP Canary Tokens
HTTP tokens generate a unique URL that triggers on any HTTP request. They reveal the source IP, User-Agent, and other HTTP headers of the requester.
# Create HTTP token
response = requests.post("https://canarytokens.org/generate", data={
"type": "http",
"email": "soc@company.com",
"memo": "Internal wiki - IT admin passwords page",
"webhook_url": "https://hooks.slack.com/services/T.../B.../xxx"
}, timeout=15)
http_url = response.json()["url"]
# Embed in internal HTML pages, documents, or bookmark files
Placement strategies for HTTP tokens:
- Hidden
<img>tags in internal wiki pages with sensitive titles - URL shortener redirects in shared bookmark collections
- Links in internal documentation labeled "admin credentials" or "VPN configs"
.urlor.weblocshortcut files in network shares- Browser bookmark exports in user profile backups
Step 3: Create AWS API Key Tokens
AWS key tokens are among the highest-fidelity canary tokens. They generate real-looking AWS access keys that trigger an alert whenever anyone attempts to use them against any AWS API endpoint.
# Create AWS API key canary token
response = requests.post("https://canarytokens.org/generate", data={
"type": "aws_keys",
"email": "soc@company.com",
"memo": "DevOps jump box - /home/deploy/.aws/credentials",
"webhook_url": "https://hooks.slack.com/services/T.../B.../xxx"
}, timeout=15)
aws_token = response.json()
access_key_id = aws_token["access_key_id"]
secret_access_key = aws_token["secret_access_key"]
Deploy the fake credentials:
# Place in ~/.aws/credentials on honeypot or jump servers
[default]
aws_access_key_id = AKIAIOSFODNN7EXAMPLE
aws_secret_access_key = wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
region = us-east-1
# Also plant in:
# - .env files in code repositories
# - Docker environment configurations
# - Terraform state files (decoy)
# - Jenkins/CI credential stores
Step 4: Configure Webhook Alert Integration
Set up real-time alerting to your SOC through multiple channels:
# Slack webhook integration
def send_slack_alert(webhook_url, alert_data):
"""Forward canary token alert to Slack channel."""
payload = {
"text": f":rotating_light: *Canary Token Triggered*",
"attachments": [{
"color": "#FF0000",
"fields": [
{"title": "Token Memo", "value": alert_data.get("memo", "Unknown"), "short": True},
{"title": "Source IP", "value": alert_data.get("src_ip", "Unknown"), "short": True},
{"title": "Token Type", "value": alert_data.get("channel", "Unknown"), "short": True},
{"title": "Triggered At", "value": alert_data.get("time", "Unknown"), "short": True},
],
"footer": "Canarytokens Alert System",
}]
}
requests.post(webhook_url, json=payload, timeout=10)
# Generic webhook receiver (Flask) for SIEM ingestion
from flask import Flask, request, jsonify
import json, logging
app = Flask(__name__)
logging.basicConfig(filename="/var/log/canary_alerts.json", level=logging.INFO)
@app.route("/canary-webhook", methods=["POST"])
def receive_alert():
alert = request.json or request.form.to_dict()
logging.info(json.dumps({
"event_type": "canarytoken_triggered",
"memo": alert.get("memo"),
"src_ip": alert.get("src_ip"),
"token_type": alert.get("channel"),
"time": alert.get("time"),
"manage_url": alert.get("manage_url"),
"additional_data": alert.get("additional_data", {}),
}))
return jsonify({"status": "received"}), 200
Step 5: Enterprise Deployment with Thinkst Canary API
For organizations using Thinkst Canary, leverage the API for mass deployment and centralized management:
import canarytools
# Connect to Thinkst Canary console
console = canarytools.Console(
domain="yourcompany",
api_key=YOUR_KEY
)
# Create tokens programmatically at scale
token_types = {
"dns": "DNS beacon in config files",
"aws-id": "AWS credentials on jump servers",
"http": "Web bug in internal documentation",
"doc-msword": "Word document in finance share",
"slack-api": "Fake Slack bot token in source code",
}
for kind, memo in token_types.items():
result = console.tokens.create(memo=memo, kind=kind)
print(f"[+] Created {kind} token: {result}")
# Monitor for triggered alerts
alerts = console.tokens.alerts()
for alert in alerts:
print(f"[ALERT] {alert.memo} triggered from {alert.src_ip}")
Step 6: Token Placement Strategy by Network Zone
DMZ / Public-Facing:
- HTTP tokens in admin panel login pages (hidden image tag)
- DNS tokens in web server configuration files
- AWS keys in
.envfiles on staging servers
Internal Network / Corporate:
- DNS tokens in Active Directory Group Policy scripts
- AWS keys in developer workstation backup directories
- HTTP tokens in internal SharePoint/Confluence pages titled "Emergency Credentials"
- Word document tokens in network shares (
\\fileserver\IT\passwords.docx)
Production / Data Center:
- DNS tokens in database configuration files
- AWS keys in CI/CD environment variables
- SQL Server tokens in connection strings on application servers
- SVN/Git tokens in repository configuration files
Cloud Infrastructure:
- AWS key tokens in S3 bucket policies (decoy)
- DNS tokens in CloudFormation/Terraform templates
- HTTP tokens in Lambda function environment variables
- Cloned-site tokens mimicking cloud admin consoles
Examples
Full Deployment Script
# Deploy a comprehensive canary token network
python scripts/agent.py --action full_deploy \
--email soc@company.com \
--webhook https://hooks.slack.com/services/T.../B.../xxx \
--output deployment_report.json
Monitor Triggered Tokens
# Check for triggered alerts
python scripts/agent.py --action monitor \
--console-domain yourcompany \
--api-key YOUR_AUTH_TOKEN
Generate Token Inventory
# Create inventory of all deployed tokens
python scripts/agent.py --action inventory \
--output token_inventory.json
Validation Checklist
- DNS tokens resolve correctly and generate alerts within 60 seconds
- HTTP tokens return a valid response and log source IP
- AWS key tokens trigger alerts when used with
aws sts get-caller-identity - Webhook alerts arrive in Slack/Teams/SIEM within acceptable latency
- Token memo fields contain sufficient context for SOC triage
- Deployment locations are documented in token inventory
- Alert escalation procedures are defined and tested
- Tokens do not interfere with legitimate operations
- Self-hosted Canarytokens instance (if used) is hardened and monitored
- Token rotation schedule is established (quarterly recommended)
References
- Canarytokens Documentation: https://docs.canarytokens.org/guide/
- Thinkst Canary Platform: https://canary.tools/
- Thinkst Canary API: https://docs.canary.tools/canarytokens/actions.html
- Canarytokens Open Source: https://github.com/thinkst/canarytokens
- Zeltser Honeytoken Setup Guide: https://zeltser.com/honeytokens-canarytokens-setup/
- Grafana Canary Token Case Study: https://grafana.com/blog/2025/08/25/canary-tokens-learn-all-about-the-unsung-heroes-of-security-at-grafana-labs/
- AWS Infrastructure Canarytoken: https://blog.thinkst.com/2025/09/introducing-the-aws-infrastructure-canarytoken.html
Other files in this skill
references/api-reference.md (verbatim)
1 placeholder credential shortened to pass the site's secret filter.
API Reference: Canary Tokens for Network Intrusion Detection
Canarytokens.org Public API
Create Token
POST https://canarytokens.org/generate
Content-Type: application/x-www-form-urlencoded
Parameters:
| Parameter | Required | Description |
|---|---|---|
type |
Yes | Token type: dns, http, aws_keys, web_image, cloned_web, svn, sql_server, qr_code, slack_api, doc_msword, doc_msexcel, pdf_acrobat_reader |
email |
Yes | Notification email address |
memo |
Yes | Human-readable label for SOC triage |
webhook_url |
No | Webhook URL for real-time POST alerts |
Example - DNS Token:
import requests
resp = requests.post("https://canarytokens.org/generate", data={
"type": "dns",
"email": "soc@company.com",
"memo": "Production DB server /etc/app/db.conf",
"webhook_url": "https://hooks.slack.com/services/T.../B.../xxx",
})
token = resp.json()
# {"hostname": "abc123.canarytokens.com", "url": "https://canarytokens.org/manage?..."}
Example - AWS Key Token:
resp = requests.post("https://canarytokens.org/generate", data={
"type": "aws_keys",
"email": "soc@company.com",
"memo": "DevOps jump box /home/deploy/.aws/credentials",
})
token = resp.json()
# {"access_key_id": "AKIA...", "secret_access_key": "...", "url": "..."}
Example - HTTP Token:
resp = requests.post("https://canarytokens.org/generate", data={
"type": "http",
"email": "soc@company.com",
"memo": "Internal wiki emergency passwords page",
})
token = resp.json()
# {"url": "http://canarytokens.com/..."}
Thinkst Canary Enterprise API
Authentication
All enterprise API calls require auth_token parameter.
Base URL: https://{console_domain}.canary.tools/api/v1/
Create Token
POST /api/v1/canarytoken/create
Parameters:
| Parameter | Required | Description |
|---|---|---|
auth_token |
Yes | API authentication token |
memo |
Yes | Description for the token |
kind |
Yes | Token kind (see below) |
flock_id |
No | Flock ID for grouping |
Supported Kinds: dns, http, aws-id, doc-msword, doc-msexcel, slack-api, svn, cloned-css, cloned-web, qr-code, sql-server
import requests
url = "https://yourcompany.canary.tools/api/v1/canarytoken/create"
resp = requests.post(url, data={
"auth_token": "YOUR_AUTH_TOKEN",
"memo": "Production honeytoken",
"kind": "dns",
})
List Tokens
GET /api/v1/canarytokens/fetch?auth_token=YOUR_AUTH_TOKEN
Get Triggered Alerts
GET /api/v1/canarytokens/alerts?auth_token=YOUR_AUTH_TOKEN
Using Python Client Library
import canarytools
console = canarytools.Console(domain="yourcompany", api_key=YOUR_KEY
# Create tokens
dns_token = console.tokens.create(memo="DNS beacon", kind=canarytools.CanaryTokenKinds.DNS)
aws_token = console.tokens.create(memo="AWS keys", kind=canarytools.CanaryTokenKinds.AWS_ID)
# List all tokens
tokens = console.tokens.all()
# Get alerts
alerts = console.tokens.alerts()
Webhook Alert Payload Format
When a canary token is triggered, the webhook receives a POST with this payload:
{
"manage_url": "https://canarytokens.org/manage?token=abc123&auth=xyz",
"memo": "Production DB server /etc/app/db.conf",
"additional_data": {
"src_ip": "203.0.113.50",
"useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)",
"referer": "",
"location": ""
},
"channel": "DNS",
"time": "2026-01-15 14:23:00 (UTC)",
"src_ip": "203.0.113.50"
}
Fields:
| Field | Description |
|---|---|
manage_url |
URL to manage/disable the token |
memo |
The description set during creation |
channel |
Token type that triggered (DNS, HTTP, AWS) |
src_ip |
Source IP of the triggering request |
time |
UTC timestamp of the trigger event |
additional_data |
Extra context (User-Agent, referer, etc.) |
Token Placement Matrix
| Token Type | Recommended Location | Trigger Action |
|---|---|---|
| DNS | Config files, /etc/hosts, SSH config |
DNS resolution |
| HTTP | Internal wikis, HTML pages, bookmarks | HTTP GET request |
| AWS Keys | ~/.aws/credentials, .env files, repos |
AWS API call |
| Web Image | HTML pages, email signatures | Image HTTP load |
| Cloned Web | Internal admin portals | Page visit |
| SVN | Repository configs | SVN checkout |
| SQL Server | Connection strings, config files | DB login attempt |
| Slack API | Source code, CI/CD configs | Slack API call |
| QR Code | Physical locations, printed docs | QR scan + URL visit |
MITRE ATT&CK Mapping
| Technique | ID | Canary Token Detection |
|---|---|---|
| Account Discovery | T1087 | AWS key tokens detect credential testing |
| File and Directory Discovery | T1083 | Document/config tokens detect file access |
| Network Service Discovery | T1046 | DNS tokens detect network scanning |
| Valid Accounts: Cloud | T1078.004 | AWS key tokens detect credential abuse |
| Unsecured Credentials: Files | T1552.001 | Credential file tokens detect harvesting |
| Data from Network Shared Drive | T1039 | Document tokens detect share browsing |
References
- Canarytokens Documentation: https://docs.canarytokens.org/guide/
- Canarytokens DNS Tokens: https://docs.canarytokens.org/guide/dns-token.html
- Canarytokens HTTP Tokens: https://docs.canarytokens.org/guide/http-token.html
- Canarytokens AWS Key Tokens: https://docs.canarytokens.org/guide/aws-keys-token.html
- Thinkst Canary API Docs: https://docs.canary.tools/canarytokens/actions.html
- Thinkst Python Client: https://github.com/thinkst/canarytools-python
- Canarytokens Open Source: https://github.com/thinkst/canarytokens
- Zeltser Honeytoken Guide: https://zeltser.com/honeytokens-canarytokens-setup/
Back to mukul975/Anthropic-Cybersecurity-Skills (817 security skills) or Agent skills.