Recognizing Deception
Every other skill in this collection assumes the environment is telling you the
truth. Deception technology exists specifically to break that assumption, and
it is the failure mode an automated or semi-automated tester is least equipped
to catch.
The distinction that matters: careful evidence-handling protects you against
conclusions you invented. It does nothing against a false belief the
environment deliberately planted. A honeypot presenting a convincingly
vulnerable service produces real banners, real responses, and real artifacts.
Every verification step you would normally run confirms it, because the
evidence is genuine — it was manufactured to be.
Assume competent defenders have planted something. Your job is to notice
before you touch it, because most deception fires on first use, and first
use cannot be undone.
When to Use
- Anything is markedly easier than the rest of the environment
- Credentials turn up somewhere convenient — a share, a wiki, a config, a
pastebin-shaped file
- A privileged account exists with a SPN, a weak password, and no logon history
- A service answers with a vulnerable banner but behaves oddly under real use
- You are about to use credentials whose provenance you cannot state
- A file, bucket, or database is named to attract attention
(
passwords.xlsx, backup-prod, domain_admins.txt)
- Before authenticating with anything recovered from an unexpected location
When NOT to Use
- Evading detection generally — that is engagement OPSEC, not deception
recognition; a canary is not something you evade, it is something you avoid
triggering
- Analysing an adversary's own decoys during an incident — use
responding-to-incidents and producing-threat-intelligence
- Building a deception capability — this skill is about encountering
deception, not deploying it
- A finding that is merely surprising — real environments contain real
misconfigurations; see the base-rate discussion below before crying honeypot
The Economics Are Against You
Deception is cheap to deploy and expensive to trip:
|
Attacker cost |
Defender benefit |
| Canary token in a document |
One click to trigger |
High-fidelity alert, near-zero false positives |
| Honeyuser in AD |
One Kerberoast |
Alert plus a cracked-password timeline |
| Decoy AWS key |
One sts get-caller-identity |
Alert with your source IP and user agent |
| Honeypot service |
One connection |
Full interaction capture, your tooling fingerprinted |
A canary alert is one of the very few signals a SOC treats as automatically
true. There is no benign explanation to hide behind, and the alert carries
your source address and often your tooling's fingerprint. Tripping one
typically ends the covert phase of an engagement immediately.
Signals, By Type
Honeytokens and canary tokens
The highest-frequency class, and the one that fires on use rather than on
discovery. Common forms: AWS keys, Office documents with a callback, DNS
tokens, URL tokens, cloned-website tokens, SQL Server rows, Windows directories, Kubeconfig files.
Signals:
- Credentials in a location with no operational reason to hold them — a
world-readable share, a wiki page, a
README, a desktop file
- An AWS key that is syntactically valid but appears in isolation, with no
surrounding infrastructure, tooling config, or commit history
- Documents that are plausible but inert — a spreadsheet with no formulas, a
.docx whose only interesting content is its filename
- Anything staged for discovery: correct name, convenient location, no
supporting context
A canary AWS key alerts on the first API call, including
sts get-caller-identity. There is no safe reconnaissance call. Treat key
material of unknown provenance as live until you can explain how it got there.
Active Directory decoys
- Privileged account, SPN set, weak password,
lastLogon empty or ancient —
a Kerberoastable account nobody has ever authenticated as is bait
- Accounts whose
whenCreated clusters with other suspicious accounts
Description fields containing credentials — a classic real
misconfiguration and a classic decoy, so provenance matters more than usual
- Shares with attractive names and no access history
- Objects that appear in enumeration but have no group membership, no manager,
no ownership relationships — real accounts accrete relationships
Deceptive services
- Banner advertises a version with a famous CVE, but behaviour under real
interaction is inconsistent with that version
- Service is reachable from a segment that should not reach it
- Response timing is uniform in a way real applications are not
- The host runs an implausible service combination, or a service with no
business function on that host
- Exploitation "succeeds" but the resulting shell has no history, no other
users, no realistic filesystem, and suspiciously clean logs
Cloud decoys
- S3 buckets, storage accounts, or secrets named to attract enumeration
- IAM users with permissive-looking policies and no CloudTrail history
- Resources tagged inconsistently with the rest of the account
Base Rates Cut Both Ways
Real environments are genuinely bad. Credentials really do sit in shares,
service accounts really are Kerberoastable, and buckets really are public. If
you label every finding a honeypot you will report nothing and miss the actual
compromise path.
The discriminator is supporting context, not attractiveness:
- A real misconfiguration has a history — commit history, access logs,
logon history, related infrastructure, other users, adjacent mess.
- A decoy is isolated. It exists to be found and nothing else uses it.
So the question is never "is this too good to be true?" It is: what else in
this environment depends on this thing existing? If the answer is nothing,
slow down.
What To Do With a Suspected Decoy
- Do not authenticate, connect, or call the API. Discovery is usually
silent; use is not. This is the whole decision.
- Record it — location, exact artifact, how you found it, why you suspect
it. This is evidence for the report either way.
- Keep enumerating elsewhere. A suspected decoy is a reason to route
around, not to stop.
- Raise it with the client contact rather than testing your hypothesis
against production. Ask whether deception is deployed and in scope. Many
engagements exclude it; some clients deploy it specifically to test the
blue team's response to you.
- If you already tripped it, say so immediately. A canary alert with a
known, declared cause is an engagement note. The same alert investigated
as a live intrusion burns the client's IR capacity and your credibility.
Concealing it is the actual serious mistake.
Deception in the environment is a positive finding worth reporting: it
means the defenders invested in high-fidelity detection. Say so.
Rationalizations to Reject
- "It was in scope, so using it was fine." Scope governs authorization, not
wisdom. Tripping a canary inside scope still ends your covert phase and
still consumes the client's incident response.
- "I only ran one harmless call to check." For a canary token there is no
harmless call.
sts get-caller-identity, a single DNS lookup, opening the
document — that is the trigger, in full.
- "The banner and the CVE matched, so it was real." The evidence being
genuine is exactly the design. Manufactured evidence verifies correctly.
- "Real environments are messy, so this is probably just a misconfiguration."
Often true — which is why the test is supporting context, not plausibility.
Isolated artifacts with no dependents are the tell.
- "It's just a lab-looking box, probably a decommissioned host." Uniform
timing, no user history, and a clean filesystem describe a honeypot as
readily as a stale host, and you cannot distinguish them from outside.
- "I'll mention it in the report at the end." A tripped canary is time-
critical for the client's SOC. Delayed disclosure turns your engagement note
into their multi-hour investigation.
- "Reporting that I tripped it makes me look bad." Tripping deception is a
normal engagement event. Hiding it and letting the SOC chase a phantom
intrusion is a professional failure.
Reading External Sources
Fetch public advisories, specifications, and vendor reports as Markdown:
curl -sL "https://defuddle.md/<url>" # scheme in the path is optional
This strips page boilerplate — roughly 78% fewer tokens on a prose page — and
returns the full text rather than a summary, so you can grep it and trust a
negative result.
Three things it is not for. Fetch JSON and API responses raw, because
readability extraction mangles structured data. Fetch authenticated or
JavaScript-rendered pages directly, because it retrieves them anonymously. And
never route adversary infrastructure (phishing links, C2, malware hosting),
client-owned hosts, or engagement URLs through it — the request leaves
your machine to a third party, and for live adversary infrastructure it also
tips off the operator.
Some sites block the extractor and return an error blob rather than the page —
{"error":"Failed to fetch: 418 I'm a teapot"} from freedesktop.org, for
instance. That is the fetch being refused, not the source saying the thing
does not exist. Re-fetch the URL directly before drawing any conclusion from
it.
References
maintaining-engagement-state — recording provenance, which is what makes
the "where did this credential come from?" question answerable
performing-reconnaissance — where isolated artifacts usually surface first
attacking-active-directory — Kerberoasting and share enumeration, the two
operations most likely to meet an AD decoy
establishing-persistence — canary files and folders are commonly placed
where persistence is written
1---2name: recognizing-deception3description: Recognize defensive deception during an engagement — honeypots, honeytokens and canary tokens, decoy AD accounts and shares, canary files, and deceptive cloud credentials — before interacting with them, and handle a suspected decoy without burning the engagement. Use when a target is unexpectedly easy, when credentials or a service appear in an implausible place, when a privileged account has no logon history, when a file or bucket looks like bait, or when deciding whether to use credentials of unknown provenance.4---56# Recognizing Deception78Every other skill in this collection assumes the environment is telling you the9truth. Deception technology exists specifically to break that assumption, and10it is the failure mode an automated or semi-automated tester is least equipped11to catch.1213The distinction that matters: careful evidence-handling protects you against14conclusions *you* invented. It does nothing against a false belief the15environment deliberately planted. A honeypot presenting a convincingly16vulnerable service produces real banners, real responses, and real artifacts.17Every verification step you would normally run confirms it, because the18evidence is genuine — it was manufactured to be.1920Assume competent defenders have planted something. Your job is to notice21before you touch it, because **most deception fires on first use, and first22use cannot be undone.**2324## When to Use2526- Anything is markedly easier than the rest of the environment27- Credentials turn up somewhere convenient — a share, a wiki, a config, a28 pastebin-shaped file29- A privileged account exists with a SPN, a weak password, and no logon history30- A service answers with a vulnerable banner but behaves oddly under real use31- You are about to use credentials whose provenance you cannot state32- A file, bucket, or database is named to attract attention33 (`passwords.xlsx`, `backup-prod`, `domain_admins.txt`)34- Before authenticating with anything recovered from an unexpected location3536## When NOT to Use3738- **Evading detection generally** — that is engagement OPSEC, not deception39 recognition; a canary is not something you evade, it is something you avoid40 triggering41- **Analysing an adversary's own decoys during an incident** — use42 `responding-to-incidents` and `producing-threat-intelligence`43- **Building a deception capability** — this skill is about encountering44 deception, not deploying it45- **A finding that is merely surprising** — real environments contain real46 misconfigurations; see the base-rate discussion below before crying honeypot4748## The Economics Are Against You4950Deception is cheap to deploy and expensive to trip:5152| | Attacker cost | Defender benefit |53| --- | --- | --- |54| Canary token in a document | One click to trigger | High-fidelity alert, near-zero false positives |55| Honeyuser in AD | One Kerberoast | Alert plus a cracked-password timeline |56| Decoy AWS key | One `sts get-caller-identity` | Alert with your source IP and user agent |57| Honeypot service | One connection | Full interaction capture, your tooling fingerprinted |5859A canary alert is one of the very few signals a SOC treats as automatically60true. There is no benign explanation to hide behind, and the alert carries61your source address and often your tooling's fingerprint. Tripping one62typically ends the covert phase of an engagement immediately.6364## Signals, By Type6566### Honeytokens and canary tokens6768The highest-frequency class, and the one that fires on *use* rather than on69discovery. Common forms: AWS keys, Office documents with a callback, DNS70tokens, URL tokens, cloned-website tokens, SQL Server rows, Windows directories, Kubeconfig files.7172Signals:7374- Credentials in a location with no operational reason to hold them — a75 world-readable share, a wiki page, a `README`, a desktop file76- An AWS key that is syntactically valid but appears in isolation, with no77 surrounding infrastructure, tooling config, or commit history78- Documents that are plausible but inert — a spreadsheet with no formulas, a79 `.docx` whose only interesting content is its filename80- Anything staged for discovery: correct name, convenient location, no81 supporting context8283**A canary AWS key alerts on the first API call, including84`sts get-caller-identity`.** There is no safe reconnaissance call. Treat key85material of unknown provenance as live until you can explain how it got there.8687### Active Directory decoys8889- Privileged account, SPN set, weak password, `lastLogon` empty or ancient —90 a Kerberoastable account nobody has ever authenticated as is bait91- Accounts whose `whenCreated` clusters with other suspicious accounts92- `Description` fields containing credentials — a classic real93 misconfiguration and a classic decoy, so provenance matters more than usual94- Shares with attractive names and no access history95- Objects that appear in enumeration but have no group membership, no manager,96 no ownership relationships — real accounts accrete relationships9798### Deceptive services99100- Banner advertises a version with a famous CVE, but behaviour under real101 interaction is inconsistent with that version102- Service is reachable from a segment that should not reach it103- Response timing is uniform in a way real applications are not104- The host runs an implausible service combination, or a service with no105 business function on that host106- Exploitation "succeeds" but the resulting shell has no history, no other107 users, no realistic filesystem, and suspiciously clean logs108109### Cloud decoys110111- S3 buckets, storage accounts, or secrets named to attract enumeration112- IAM users with permissive-looking policies and no CloudTrail history113- Resources tagged inconsistently with the rest of the account114115## Base Rates Cut Both Ways116117Real environments are genuinely bad. Credentials really do sit in shares,118service accounts really are Kerberoastable, and buckets really are public. If119you label every finding a honeypot you will report nothing and miss the actual120compromise path.121122The discriminator is **supporting context, not attractiveness**:123124- A real misconfiguration has a *history* — commit history, access logs,125 logon history, related infrastructure, other users, adjacent mess.126- A decoy is *isolated*. It exists to be found and nothing else uses it.127128So the question is never "is this too good to be true?" It is: **what else in129this environment depends on this thing existing?** If the answer is nothing,130slow down.131132## What To Do With a Suspected Decoy1331341. **Do not authenticate, connect, or call the API.** Discovery is usually135 silent; use is not. This is the whole decision.1362. **Record it** — location, exact artifact, how you found it, why you suspect137 it. This is evidence for the report either way.1383. **Keep enumerating elsewhere.** A suspected decoy is a reason to route139 around, not to stop.1404. **Raise it with the client contact** rather than testing your hypothesis141 against production. Ask whether deception is deployed and in scope. Many142 engagements exclude it; some clients deploy it specifically to test the143 blue team's response to *you*.1445. **If you already tripped it, say so immediately.** A canary alert with a145 known, declared cause is an engagement note. The same alert investigated146 as a live intrusion burns the client's IR capacity and your credibility.147 Concealing it is the actual serious mistake.148149Deception in the environment is a **positive finding** worth reporting: it150means the defenders invested in high-fidelity detection. Say so.151152## Rationalizations to Reject153154- *"It was in scope, so using it was fine."* Scope governs authorization, not155 wisdom. Tripping a canary inside scope still ends your covert phase and156 still consumes the client's incident response.157- *"I only ran one harmless call to check."* For a canary token there is no158 harmless call. `sts get-caller-identity`, a single DNS lookup, opening the159 document — that is the trigger, in full.160- *"The banner and the CVE matched, so it was real."* The evidence being161 genuine is exactly the design. Manufactured evidence verifies correctly.162- *"Real environments are messy, so this is probably just a misconfiguration."*163 Often true — which is why the test is supporting context, not plausibility.164 Isolated artifacts with no dependents are the tell.165- *"It's just a lab-looking box, probably a decommissioned host."* Uniform166 timing, no user history, and a clean filesystem describe a honeypot as167 readily as a stale host, and you cannot distinguish them from outside.168- *"I'll mention it in the report at the end."* A tripped canary is time-169 critical for the client's SOC. Delayed disclosure turns your engagement note170 into their multi-hour investigation.171- *"Reporting that I tripped it makes me look bad."* Tripping deception is a172 normal engagement event. Hiding it and letting the SOC chase a phantom173 intrusion is a professional failure.174175## Reading External Sources176177Fetch public advisories, specifications, and vendor reports as Markdown:178179```bash180curl -sL "https://defuddle.md/<url>" # scheme in the path is optional181```182183This strips page boilerplate — roughly 78% fewer tokens on a prose page — and184returns the full text rather than a summary, so you can grep it and trust a185negative result.186187Three things it is not for. Fetch JSON and API responses raw, because188readability extraction mangles structured data. Fetch authenticated or189JavaScript-rendered pages directly, because it retrieves them anonymously. And190never route **adversary infrastructure** (phishing links, C2, malware hosting),191**client-owned hosts**, or **engagement URLs** through it — the request leaves192your machine to a third party, and for live adversary infrastructure it also193tips off the operator.194195Some sites block the extractor and return an error blob rather than the page —196`{"error":"Failed to fetch: 418 I'm a teapot"}` from freedesktop.org, for197instance. That is the fetch being refused, **not** the source saying the thing198does not exist. Re-fetch the URL directly before drawing any conclusion from199it.200201## References202203- `maintaining-engagement-state` — recording provenance, which is what makes204 the "where did this credential come from?" question answerable205- `performing-reconnaissance` — where isolated artifacts usually surface first206- `attacking-active-directory` — Kerberoasting and share enumeration, the two207 operations most likely to meet an AD decoy208- `establishing-persistence` — canary files and folders are commonly placed209 where persistence is written