secskills
secskills / defense / producing-threat-intelligence

producing-threat-intelligence

defense verified 2026-07-27

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.

$ /plugin install secskills-defense $ /plugin install secskills-core

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

infrastructure

your organization

matter to you

When NOT to Use

mapping-attack-techniques

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:

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.

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 fromPivot viaFinds
Domain / IPPassive DNS (PDNS)Historical resolutions, sibling domains on an IP, IPs a domain used
DomainWHOIS / registration historyRegistrant email, registrar, creation date, name-server reuse
Domain / IPCertificate transparency (crt.sh)Other hostnames on the same cert, SAN reuse, issuance timeline
IP / serviceTLS fingerprints — JARM (server), JA3/JA3S (client/server handshake)Hosts running the same C2 or framework default TLS stack
Web serviceFavicon hash (Shodan http.favicon.hash, Censys)Other servers serving the identical panel or login page
IP / hostShodan / Censys bannersOpen 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:

patterns, tooling, TTPs, tradecraft, timing). It is defensible from evidence and it is what you should do most of the time.

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:

sources; few plausible alternatives.

leave room for alternatives.

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:

operates the way you would.

answer you already reached, discounting what contradicts it.

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.

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.

(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'.

reports, and lets you query relationships (which campaigns use this malware, which infrastructure this actor reuses) rather than re-deriving them.

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.

SourceAnswers
VirusTotalDetections, 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 / CensysExposed services, banners, certs, JARM, favicon hashes — the internet-facing view without touching the target directly
GreyNoiseWhether an IP is mass-scanning the whole internet (background noise) versus activity aimed at you
URLScanWhat 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.

first two sentences. If the reader stops after the first paragraph, they should still have the answer.

judgment, and separate what you observed from what you assess. Attribute claims to their evidence; distinguish single-source from corroborated.

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.

engineering-detections. Hand over behaviors and tiered indicators, not a raw feed.

IOCs) becomes a hypothesis in hunting-threats run against your telemetry.

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

noise that buries the few that matter. Volume is not value; a ranked handful with context beats a feed of ten thousand.

often as shared operator. Public kits and leaked frameworks make unrelated crews look identical. Cluster on the evidence; do not name.

attribution is one source with its own biases and incentives. Read their evidence, weigh it, and assign your own confidence — do not inherit theirs.

watching, and they rotate. Passive datasets first; active interaction only from non-attributable infrastructure as a deliberate decision.

evidence and the count of surviving alternatives, not from conviction. If you cannot show the evidence, it is not high confidence.

changed no decision. The lifecycle does not end at analysis; it ends when the consumer has acted — or told you why they did not.

is a judgment you make against your own threat model, not an assumption. The TTPs may transfer even when the target does not.

References

telemetry

intel

written product