Producing Threat Intelligence
Intelligence is not a pile of indicators — it is analysis that reduces a
decision-maker's uncertainty. An IOC with no context, no confidence, and no
recommended action is data, not intelligence. Attribution is a claim you must
be able to defend from evidence, not a guess dressed in a threat-actor name.
The test of a finished product is simple: did someone decide something
differently because of it?
When to Use
- Pivoting from a domain, IP, hash, TLS certificate, or registrant to related
infrastructure
- Tracking a threat actor or campaign over time
- Enriching and contextualizing raw indicators into usable intelligence
- Producing a finished intelligence product for a defined consumer
- Assessing whether an external vendor or government report is relevant to
your organization
- Building and curating a threat model of the adversaries that actually
matter to you
When NOT to Use
- Searching your OWN telemetry for the activity — use
hunting-threats
- Reversing a specific sample — use
analyzing-malware
- Resolving an ATT&CK technique ID to a skill — use
mapping-attack-techniques
- An active, confirmed incident — use
responding-to-incidents
- Turning intel into deployed detection rules — use
engineering-detections
The Intelligence Lifecycle
Every product moves through the same loop. Naming the stages is not
bureaucracy — it is where you catch the two failures that make CTI worthless.
1. Direction — whose decision, which question (a PIR)
2. Collection — gather against the requirement, not everything reachable
3. Processing — normalize, deduplicate, translate, enrich
4. Analysis — assess, weigh hypotheses, assign confidence
5. Dissemination — deliver in a form the consumer can act on
6. Feedback — did it help; refine the next requirement
The two failures that account for most wasted CTI effort are at the ends of
the loop, not the middle:
- Skipping direction produces intelligence nobody asked for. Without a
Priority Intelligence Requirement (PIR) naming the consumer and the decision,
you collect what is easy and report what is interesting, and it lands on no
one's desk. Start from the question, not the feed.
- Skipping dissemination produces analysis that never reaches a decision.
A brilliant assessment sitting in a wiki nobody reads changed nothing. The
product is not done when it is written; it is done when it is in front of
the person who acts on it, in the form and at the time they need it.
Write the PIR before collecting. Examples: "Which ransomware crews target our
sector and what is their initial-access tradecraft?" "Is the actor in last
week's incident likely to return?" "Does this vendor report describe a threat
to us?" Each names a consumer and a decision.
Indicator Pivoting
Pivoting expands one observable into an infrastructure picture. The discipline
is to stay passive first — every pivot below reads third-party data or
historical records, none of it touches the adversary's live infrastructure.
| Start from |
Pivot via |
Finds |
| Domain / IP |
Passive DNS (PDNS) |
Historical resolutions, sibling domains on an IP, IPs a domain used |
| Domain |
WHOIS / registration history |
Registrant email, registrar, creation date, name-server reuse |
| Domain / IP |
Certificate transparency (crt.sh) |
Other hostnames on the same cert, SAN reuse, issuance timeline |
| IP / service |
TLS fingerprints — JARM (server), JA3/JA3S (client/server handshake) |
Hosts running the same C2 or framework default TLS stack |
| Web service |
Favicon hash (Shodan http.favicon.hash, Censys) |
Other servers serving the identical panel or login page |
| IP / host |
Shodan / Censys banners |
Open ports, product versions, response bodies, self-signed cert CNs |
A worked pivot chain: a phishing domain resolves (PDNS) to an IP; crt.sh shows
the cert's SANs cover four more lookalike domains; the IP's JARM matches a
known Cobalt Strike default; Shodan's favicon hash for the panel returns nine
more IPs serving the same interface. One indicator became a cluster of ten,
none of which required contacting the adversary.
# Certificate transparency — all certs/SANs seen for a domain
curl -s "https://crt.sh/?q=%25.example.com&output=json" | jq -r '.[].name_value' | sort -u
# Shodan: everything serving an identical favicon
shodan search "http.favicon.hash:-247388890"
# Censys: hosts presenting a given JARM fingerprint.
# Censys Platform (CenQL) prefixes every parsed field with its dataset:
censys search "host.services.jarm.fingerprint: <jarm_hash>"
# Legacy Search used the unprefixed form below. It is deprecated as of
# September 2026, so treat any older query you find as needing conversion:
# services.jarm.fingerprint: <jarm_hash>
Do not tip off the adversary. Do not curl the live C2, resolve its domain
from a network attributable to you, submit the still-active sample to a public
multi-scanner, or scan the infrastructure directly — each of those tells the
operator you are watching and invites rotation or a burn of your visibility.
Prefer passive datasets. If active interaction is genuinely required, route it
through infrastructure that is not attributable to you and make it a
deliberate, logged decision.
Frameworks for Prioritizing What to Track
Diamond Model
Every intrusion event has four connected features: adversary, capability
(malware, tooling, exploits), infrastructure (C2, staging, redirectors),
and victim. Any feature leads to another — a capability points to the
adversary who wields it; infrastructure points to other victims. Pivoting is
literally traversing the edges of the diamond. Record findings against these
four vertices so a partial picture composes with the next one.
Pyramid of Pain
Not all indicators cost the adversary the same to change. The higher you track,
the more it hurts them and the longer your intelligence survives.
TTPs ← hardest to change — track these
Tools
Network/Host artifacts
Domain names
IP addresses
Hash values ← trivial to change — useful now, dead tomorrow
Hashes and IPs are cheap for the adversary to rotate, so intelligence built on
them decays in days. Tooling and TTPs force real redevelopment. Prioritize
collection and tracking toward the top of the pyramid; treat the bottom as
perishable and time-stamp it accordingly.
Attribution Discipline
Attribution is the most abused word in CTI. Keep two operations strictly
separate:
- Clustering groups activity by shared observables (infrastructure
patterns, tooling, TTPs, tradecraft, timing). It is defensible from evidence
and it is what you should do most of the time.
- Naming asserts that a cluster IS a known actor. It inherits that actor's
history, motivation, and geopolitical baggage — and it is frequently wrong.
Use temporary, non-committal labels for clusters you have not confirmed:
UNC-style uncategorized designators, or your own internal CLUSTER-####. Only
promote a cluster to a named actor when the evidence supports it, and state
what evidence. "Same TTPs" is weak grounds: shared tooling, shared exploit
kits, and public tradecraft mean two operators can look identical.
Analytic confidence is a separate axis from the claim. State it explicitly:
- High — consistent, corroborated evidence from multiple independent
sources; few plausible alternatives.
- Moderate — credible evidence, but gaps or single-source dependence
leave room for alternatives.
- Low — fragmentary or uncorroborated; the assessment is a working
hypothesis.
Confidence is not the same as how strongly you feel it. It is a function of
the evidence and the number of surviving alternative explanations.
Analysis of Competing Hypotheses (ACH): when attribution or intent is
contested, enumerate the plausible hypotheses first, then list the evidence,
and score each item by how well it is consistent with each hypothesis. The
goal is to find evidence that disconfirms — the hypothesis left standing
after you try to break it is stronger than the one you set out to prove.
Cognitive-bias traps to name and resist:
- Mirror-imaging — assuming the adversary reasons, prioritizes, and
operates the way you would.
- Confirmation bias — collecting and weighting evidence that supports the
answer you already reached, discounting what contradicts it.
- Anchoring — locking onto the first attribution offered (often a vendor's)
and adjusting insufficiently as new evidence arrives.
Structured Storage and Standards
Free-text notes do not compose, correlate, or feed automation. Store
intelligence in a structured model from the start.
- STIX 2.1 — the interchange grammar. Objects (SDOs) include
indicator, malware, threat-actor, campaign, intrusion-set,
infrastructure, identity, and attack-pattern; relationships (SROs)
like uses, targets, indicates, attributed-to connect them. A STIX
indicator carries a pattern, valid-from/until, and confidence — context
the bare IOC lacks.
- MISP — event-centric sharing platform. Events hold attributes
(the indicators) with types, categories, and per-attribute IDS flags;
galaxies attach actor, tooling, and ATT&CK context; correlation across
events surfaces overlap between your data and partners'.
- OpenCTI — a knowledge graph that ingests STIX, links objects across
reports, and lets you query relationships (which campaigns use this malware,
which infrastructure this actor reuses) rather than re-deriving them.
- TLP — the sharing classifier. Tag every product: TLP:RED (named
recipients only), TLP:AMBER / TLP:AMBER+STRICT (their org, or their
org only), TLP:GREEN (community), TLP:CLEAR (no restriction). The
tag travels with the data; downgrading it is the sharer's call, never the
recipient's.
Enrichment Sources
Enrichment converts a bare observable into something with context and
confidence. Match the source to the question.
| Source |
Answers |
| VirusTotal |
Detections, relationships (contacted domains, dropped files, siblings), first/last seen, community context |
| Passive DNS (Farsight/DNSDB, SecurityTrails, Circl) |
Resolution history, co-hosted domains, infrastructure reuse over time |
| Shodan / Censys |
Exposed services, banners, certs, JARM, favicon hashes — the internet-facing view without touching the target directly |
| GreyNoise |
Whether an IP is mass-scanning the whole internet (background noise) versus activity aimed at you |
| URLScan |
What a URL actually serves — page content, redirects, resources, screenshot — without you browsing it |
GreyNoise earns its place by subtraction. Most flagged IPs are internet
background radiation — opportunistic scanners hitting everyone. GreyNoise tells
you whether an indicator is that noise or something targeted, so you stop
burning analyst hours enriching a Shodan crawler and focus on what is aimed at
your organization.
Producing the Finished Product
The report is the product; everything upstream is inventory. Structure it for
a decision-maker, not for an analyst admiring the work.
- BLUF (bottom line up front) — the assessment and its "so what" in the
first two sentences. If the reader stops after the first paragraph, they
should still have the answer.
- Confidence and sourcing — state analytic confidence on each key
judgment, and separate what you observed from what you assess. Attribute
claims to their evidence; distinguish single-source from corroborated.
- So what / recommended action — tie the analysis to the consumer's
decision. What should they do, block, hunt for, or prioritize, and why now?
An assessment with no recommended action leaves the reader to reinvent the
implication, and most will not.
Write to the audience: an executive needs the risk and the decision; a SOC
lead needs the detections and the pivots. The same underlying intelligence
becomes two different products.
CTI in the Defensive Loop
Threat intelligence is not a terminal deliverable — it is the fuel for the
rest of the defensive program, and it consumes their output in return.
- It feeds detection: TTPs and tooling become deployed rules via
engineering-detections. Hand over behaviors and tiered indicators, not a
raw feed.
- It feeds hunting: an intel report's described behavior (not its dead
IOCs) becomes a hypothesis in
hunting-threats run against your telemetry.
- It consumes ATT&CK mappings: resolve techniques through
mapping-attack-techniques so your products speak the same taxonomy as
detection and hunting, and coverage gaps become visible.
Intelligence that does not flow into detection, hunting, or a decision is a
research hobby, not a capability.
Rationalizations to Reject
- "More indicators is better intelligence." No. Unprioritized IOCs are
noise that buries the few that matter. Volume is not value; a ranked handful
with context beats a feed of ten thousand.
- "It's the same actor — the TTPs match." TTP overlap is shared tooling as
often as shared operator. Public kits and leaked frameworks make unrelated
crews look identical. Cluster on the evidence; do not name.
- "The vendor report attributes it, so it's confirmed." A vendor's
attribution is one source with its own biases and incentives. Read their
evidence, weigh it, and assign your own confidence — do not inherit theirs.
- "We should scan the C2 to learn more." You just told the operator you are
watching, and they rotate. Passive datasets first; active interaction only
from non-attributable infrastructure as a deliberate decision.
- "High confidence — it feels right." Confidence must be defensible from
evidence and the count of surviving alternatives, not from conviction.
If you cannot show the evidence, it is not high confidence.
- "We produced the report, the job's done." Undisseminated intelligence
changed no decision. The lifecycle does not end at analysis; it ends when
the consumer has acted — or told you why they did not.
- "This report is about someone else's sector, so it's irrelevant." Relevance
is a judgment you make against your own threat model, not an assumption.
The TTPs may transfer even when the target does not.
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
hunting-threats — running intel-derived hypotheses against your own
telemetry
analyzing-malware — sample-derived config, capability, and IOCs that feed
intel
engineering-detections — converting tracked TTPs into deployed rules
mapping-attack-techniques — resolving and standardizing ATT&CK references
responding-to-incidents — the consumer and source during an active event
reporting-security-findings — structure and language for the finished
written product
- MISP, OpenCTI — structured storage, correlation, and sharing platforms
- STIX 2.1 — the object and relationship model for interchange
- crt.sh — certificate transparency search for infrastructure pivoting
- Shodan, Censys — internet-wide service, banner, JARM, and favicon search
- GreyNoise — separating internet background noise from targeted activity
- VirusTotal — detection, relationship, and enrichment context
1---2name: producing-threat-intelligence3description: Produce cyber threat intelligence by pivoting on indicators to find related infrastructure, tracking actors and campaigns, enriching and contextualizing IOCs, applying attribution discipline and analytic confidence, and packaging finished intel products tied to a consumer's decision. Covers the intelligence lifecycle, the Diamond Model and Pyramid of Pain, STIX/MISP/OpenCTI storage, TLP sharing, and passive enrichment via passive DNS, crt.sh, Shodan, Censys, GreyNoise, and VirusTotal. Use when pivoting from a domain, IP, hash, or certificate to related infrastructure, tracking a threat actor or campaign, enriching raw indicators, writing a finished intel report, assessing an external report's relevance to your org, or building a threat model of adversaries that matter to you.4---56# Producing Threat Intelligence78Intelligence is not a pile of indicators — it is analysis that reduces a9decision-maker's uncertainty. An IOC with no context, no confidence, and no10recommended action is data, not intelligence. Attribution is a claim you must11be able to defend from evidence, not a guess dressed in a threat-actor name.12The test of a finished product is simple: did someone decide something13differently because of it?1415## When to Use1617- Pivoting from a domain, IP, hash, TLS certificate, or registrant to related18 infrastructure19- Tracking a threat actor or campaign over time20- Enriching and contextualizing raw indicators into usable intelligence21- Producing a finished intelligence product for a defined consumer22- Assessing whether an external vendor or government report is relevant to23 your organization24- Building and curating a threat model of the adversaries that actually25 matter to you2627## When NOT to Use2829- **Searching your OWN telemetry for the activity** — use `hunting-threats`30- **Reversing a specific sample** — use `analyzing-malware`31- **Resolving an ATT&CK technique ID to a skill** — use32 `mapping-attack-techniques`33- **An active, confirmed incident** — use `responding-to-incidents`34- **Turning intel into deployed detection rules** — use35 `engineering-detections`3637## The Intelligence Lifecycle3839Every product moves through the same loop. Naming the stages is not40bureaucracy — it is where you catch the two failures that make CTI worthless.4142```431. Direction — whose decision, which question (a PIR)442. Collection — gather against the requirement, not everything reachable453. Processing — normalize, deduplicate, translate, enrich464. Analysis — assess, weigh hypotheses, assign confidence475. Dissemination — deliver in a form the consumer can act on486. Feedback — did it help; refine the next requirement49```5051The two failures that account for most wasted CTI effort are at the ends of52the loop, not the middle:5354- **Skipping direction** produces intelligence nobody asked for. Without a55 Priority Intelligence Requirement (PIR) naming the consumer and the decision,56 you collect what is easy and report what is interesting, and it lands on no57 one's desk. Start from the question, not the feed.58- **Skipping dissemination** produces analysis that never reaches a decision.59 A brilliant assessment sitting in a wiki nobody reads changed nothing. The60 product is not done when it is written; it is done when it is in front of61 the person who acts on it, in the form and at the time they need it.6263Write the PIR before collecting. Examples: "Which ransomware crews target our64sector and what is their initial-access tradecraft?" "Is the actor in last65week's incident likely to return?" "Does this vendor report describe a threat66to us?" Each names a consumer and a decision.6768## Indicator Pivoting6970Pivoting expands one observable into an infrastructure picture. The discipline71is to stay **passive first** — every pivot below reads third-party data or72historical records, none of it touches the adversary's live infrastructure.7374| Start from | Pivot via | Finds |75| --- | --- | --- |76| Domain / IP | Passive DNS (PDNS) | Historical resolutions, sibling domains on an IP, IPs a domain used |77| Domain | WHOIS / registration history | Registrant email, registrar, creation date, name-server reuse |78| Domain / IP | Certificate transparency (crt.sh) | Other hostnames on the same cert, SAN reuse, issuance timeline |79| IP / service | TLS fingerprints — JARM (server), JA3/JA3S (client/server handshake) | Hosts running the same C2 or framework default TLS stack |80| Web service | Favicon hash (Shodan `http.favicon.hash`, Censys) | Other servers serving the identical panel or login page |81| IP / host | Shodan / Censys banners | Open ports, product versions, response bodies, self-signed cert CNs |8283A worked pivot chain: a phishing domain resolves (PDNS) to an IP; crt.sh shows84the cert's SANs cover four more lookalike domains; the IP's JARM matches a85known Cobalt Strike default; Shodan's favicon hash for the panel returns nine86more IPs serving the same interface. One indicator became a cluster of ten,87none of which required contacting the adversary.8889```90# Certificate transparency — all certs/SANs seen for a domain91curl -s "https://crt.sh/?q=%25.example.com&output=json" | jq -r '.[].name_value' | sort -u9293# Shodan: everything serving an identical favicon94shodan search "http.favicon.hash:-247388890"9596# Censys: hosts presenting a given JARM fingerprint.97# Censys Platform (CenQL) prefixes every parsed field with its dataset:98censys search "host.services.jarm.fingerprint: <jarm_hash>"99# Legacy Search used the unprefixed form below. It is deprecated as of100# September 2026, so treat any older query you find as needing conversion:101# services.jarm.fingerprint: <jarm_hash>102```103104**Do not tip off the adversary.** Do not curl the live C2, resolve its domain105from a network attributable to you, submit the still-active sample to a public106multi-scanner, or scan the infrastructure directly — each of those tells the107operator you are watching and invites rotation or a burn of your visibility.108Prefer passive datasets. If active interaction is genuinely required, route it109through infrastructure that is not attributable to you and make it a110deliberate, logged decision.111112## Frameworks for Prioritizing What to Track113114### Diamond Model115116Every intrusion event has four connected features: **adversary**, **capability**117(malware, tooling, exploits), **infrastructure** (C2, staging, redirectors),118and **victim**. Any feature leads to another — a capability points to the119adversary who wields it; infrastructure points to other victims. Pivoting is120literally traversing the edges of the diamond. Record findings against these121four vertices so a partial picture composes with the next one.122123### Pyramid of Pain124125Not all indicators cost the adversary the same to change. The higher you track,126the more it hurts them and the longer your intelligence survives.127128```129TTPs ← hardest to change — track these130Tools131Network/Host artifacts132Domain names133IP addresses134Hash values ← trivial to change — useful now, dead tomorrow135```136137Hashes and IPs are cheap for the adversary to rotate, so intelligence built on138them decays in days. Tooling and TTPs force real redevelopment. Prioritize139collection and tracking toward the top of the pyramid; treat the bottom as140perishable and time-stamp it accordingly.141142## Attribution Discipline143144Attribution is the most abused word in CTI. Keep two operations strictly145separate:146147- **Clustering** groups activity by shared observables (infrastructure148 patterns, tooling, TTPs, tradecraft, timing). It is defensible from evidence149 and it is what you should do most of the time.150- **Naming** asserts that a cluster IS a known actor. It inherits that actor's151 history, motivation, and geopolitical baggage — and it is frequently wrong.152153Use temporary, non-committal labels for clusters you have not confirmed:154UNC-style uncategorized designators, or your own internal `CLUSTER-####`. Only155promote a cluster to a named actor when the evidence supports it, and state156what evidence. "Same TTPs" is weak grounds: shared tooling, shared exploit157kits, and public tradecraft mean two operators can look identical.158159**Analytic confidence** is a separate axis from the claim. State it explicitly:160161- **High** — consistent, corroborated evidence from multiple independent162 sources; few plausible alternatives.163- **Moderate** — credible evidence, but gaps or single-source dependence164 leave room for alternatives.165- **Low** — fragmentary or uncorroborated; the assessment is a working166 hypothesis.167168Confidence is not the same as how strongly you feel it. It is a function of169the evidence and the number of surviving alternative explanations.170171**Analysis of Competing Hypotheses (ACH):** when attribution or intent is172contested, enumerate the plausible hypotheses first, then list the evidence,173and score each item by how well it is *consistent* with each hypothesis. The174goal is to find evidence that *disconfirms* — the hypothesis left standing175after you try to break it is stronger than the one you set out to prove.176177**Cognitive-bias traps** to name and resist:178179- **Mirror-imaging** — assuming the adversary reasons, prioritizes, and180 operates the way you would.181- **Confirmation bias** — collecting and weighting evidence that supports the182 answer you already reached, discounting what contradicts it.183- **Anchoring** — locking onto the first attribution offered (often a vendor's)184 and adjusting insufficiently as new evidence arrives.185186## Structured Storage and Standards187188Free-text notes do not compose, correlate, or feed automation. Store189intelligence in a structured model from the start.190191- **STIX 2.1** — the interchange grammar. Objects (SDOs) include192 `indicator`, `malware`, `threat-actor`, `campaign`, `intrusion-set`,193 `infrastructure`, `identity`, and `attack-pattern`; relationships (SROs)194 like `uses`, `targets`, `indicates`, `attributed-to` connect them. A STIX195 `indicator` carries a pattern, valid-from/until, and confidence — context196 the bare IOC lacks.197- **MISP** — event-centric sharing platform. **Events** hold **attributes**198 (the indicators) with types, categories, and per-attribute IDS flags;199 **galaxies** attach actor, tooling, and ATT&CK context; correlation across200 events surfaces overlap between your data and partners'.201- **OpenCTI** — a knowledge graph that ingests STIX, links objects across202 reports, and lets you query relationships (which campaigns use this malware,203 which infrastructure this actor reuses) rather than re-deriving them.204- **TLP** — the sharing classifier. Tag every product: **TLP:RED** (named205 recipients only), **TLP:AMBER** / **TLP:AMBER+STRICT** (their org, or their206 org only), **TLP:GREEN** (community), **TLP:CLEAR** (no restriction). The207 tag travels with the data; downgrading it is the sharer's call, never the208 recipient's.209210## Enrichment Sources211212Enrichment converts a bare observable into something with context and213confidence. Match the source to the question.214215| Source | Answers |216| --- | --- |217| VirusTotal | Detections, relationships (contacted domains, dropped files, siblings), first/last seen, community context |218| Passive DNS (Farsight/DNSDB, SecurityTrails, Circl) | Resolution history, co-hosted domains, infrastructure reuse over time |219| Shodan / Censys | Exposed services, banners, certs, JARM, favicon hashes — the internet-facing view without touching the target directly |220| GreyNoise | Whether an IP is mass-scanning the whole internet (background noise) versus activity aimed at you |221| URLScan | What a URL actually serves — page content, redirects, resources, screenshot — without you browsing it |222223**GreyNoise earns its place by subtraction.** Most flagged IPs are internet224background radiation — opportunistic scanners hitting everyone. GreyNoise tells225you whether an indicator is that noise or something targeted, so you stop226burning analyst hours enriching a Shodan crawler and focus on what is aimed at227your organization.228229## Producing the Finished Product230231The report is the product; everything upstream is inventory. Structure it for232a decision-maker, not for an analyst admiring the work.233234- **BLUF (bottom line up front)** — the assessment and its "so what" in the235 first two sentences. If the reader stops after the first paragraph, they236 should still have the answer.237- **Confidence and sourcing** — state analytic confidence on each key238 judgment, and separate what you observed from what you assess. Attribute239 claims to their evidence; distinguish single-source from corroborated.240- **So what / recommended action** — tie the analysis to the consumer's241 decision. What should they do, block, hunt for, or prioritize, and why now?242 An assessment with no recommended action leaves the reader to reinvent the243 implication, and most will not.244245Write to the audience: an executive needs the risk and the decision; a SOC246lead needs the detections and the pivots. The same underlying intelligence247becomes two different products.248249## CTI in the Defensive Loop250251Threat intelligence is not a terminal deliverable — it is the fuel for the252rest of the defensive program, and it consumes their output in return.253254- It **feeds detection**: TTPs and tooling become deployed rules via255 `engineering-detections`. Hand over behaviors and tiered indicators, not a256 raw feed.257- It **feeds hunting**: an intel report's described behavior (not its dead258 IOCs) becomes a hypothesis in `hunting-threats` run against your telemetry.259- It **consumes ATT&CK mappings**: resolve techniques through260 `mapping-attack-techniques` so your products speak the same taxonomy as261 detection and hunting, and coverage gaps become visible.262263Intelligence that does not flow into detection, hunting, or a decision is a264research hobby, not a capability.265266## Rationalizations to Reject267268- *"More indicators is better intelligence."* No. Unprioritized IOCs are269 noise that buries the few that matter. Volume is not value; a ranked handful270 with context beats a feed of ten thousand.271- *"It's the same actor — the TTPs match."* TTP overlap is shared tooling as272 often as shared operator. Public kits and leaked frameworks make unrelated273 crews look identical. Cluster on the evidence; do not name.274- *"The vendor report attributes it, so it's confirmed."* A vendor's275 attribution is one source with its own biases and incentives. Read their276 evidence, weigh it, and assign your own confidence — do not inherit theirs.277- *"We should scan the C2 to learn more."* You just told the operator you are278 watching, and they rotate. Passive datasets first; active interaction only279 from non-attributable infrastructure as a deliberate decision.280- *"High confidence — it feels right."* Confidence must be defensible from281 evidence and the count of surviving alternatives, not from conviction.282 If you cannot show the evidence, it is not high confidence.283- *"We produced the report, the job's done."* Undisseminated intelligence284 changed no decision. The lifecycle does not end at analysis; it ends when285 the consumer has acted — or told you why they did not.286- *"This report is about someone else's sector, so it's irrelevant."* Relevance287 is a judgment you make against your own threat model, not an assumption.288 The TTPs may transfer even when the target does not.289290## Reading External Sources291292Fetch public advisories, specifications, and vendor reports as Markdown:293294```bash295curl -sL "https://defuddle.md/<url>" # scheme in the path is optional296```297298This strips page boilerplate — roughly 78% fewer tokens on a prose page — and299returns the full text rather than a summary, so you can grep it and trust a300negative result.301302Three things it is not for. Fetch JSON and API responses raw, because303readability extraction mangles structured data. Fetch authenticated or304JavaScript-rendered pages directly, because it retrieves them anonymously. And305never route **adversary infrastructure** (phishing links, C2, malware hosting),306**client-owned hosts**, or **engagement URLs** through it — the request leaves307your machine to a third party, and for live adversary infrastructure it also308tips off the operator.309310Some sites block the extractor and return an error blob rather than the page —311`{"error":"Failed to fetch: 418 I'm a teapot"}` from freedesktop.org, for312instance. That is the fetch being refused, **not** the source saying the thing313does not exist. Re-fetch the URL directly before drawing any conclusion from314it.315316## References317318- `hunting-threats` — running intel-derived hypotheses against your own319 telemetry320- `analyzing-malware` — sample-derived config, capability, and IOCs that feed321 intel322- `engineering-detections` — converting tracked TTPs into deployed rules323- `mapping-attack-techniques` — resolving and standardizing ATT&CK references324- `responding-to-incidents` — the consumer and source during an active event325- `reporting-security-findings` — structure and language for the finished326 written product327- MISP, OpenCTI — structured storage, correlation, and sharing platforms328- STIX 2.1 — the object and relationship model for interchange329- crt.sh — certificate transparency search for infrastructure pivoting330- Shodan, Censys — internet-wide service, banner, JARM, and favicon search331- GreyNoise — separating internet background noise from targeted activity332- VirusTotal — detection, relationship, and enrichment context