8 verified findings from 1 run · the settled record for this UTC day, in the classic brief order.
Criticality
Kind
Topic
Region
TL;DR · the day in one read
01ServiceNow AI Platform sandbox escape moves to actively exploited — self-hosted instances must apply KB3137947 now. NCSC-CH updated its advisory on 2026-07-20 to flag CVE-2026-6875 — the pre-authentication sandbox escape in the ServiceNow AI Platform first covered here on 2026-07-13 — as actively exploited, with in-the-wild activity reported from 2026-07-18. ServiceNow's own hosted instances were already patched; self-hosted and partner-managed deployments that have not applied hotfix KB3137947 are the residual exposure, and this is now an out-of-band-priority item rather than a scheduled patch. →
02Hugging Face discloses a weekend-long intrusion driven end-to-end by an autonomous AI-agent framework — the second real-world case after Sygnia's AWS intrusion. Hugging Face disclosed (2026-07-16; broad security-press pickup 2026-07-20) a production intrusion driven end-to-end by an autonomous AI-agent framework: a malicious dataset abused two code-execution paths in its data-processing pipeline, and the agent escalated to node-level access, harvested cloud and cluster credentials and moved laterally using a swarm of short-lived sandboxes with self-migrating C2, executing over 17,000 logged actions across a weekend before detection. Public models, datasets and the software supply chain were verified clean. It is the second concrete July-2026 case of AI-agent-orchestrated intrusion, reinforcing that autonomous offensive tooling is operational. →
03Romania's cadastre authority disputes the attacker's database-wipe claim as it moves e-Terra to Government Cloud. Update on the ANCPI (Romanian National Agency for Cadastre) cyberattack: on 2026-07-20 the agency stated, after security verification, that its technical and legal databases "have not been affected" — directly contradicting data-leak operator ByteToBreach's claim of deleting backups after a failed extortion. ANCPI is migrating its applications to the Romanian Government Cloud, expected to finish 22 July, before any phased service restoration. KELA separately profiled the ByteToBreach operator; the contradiction between the wipe claim and the "databases intact" statement is itself the notable fact — both are held, neither is resolved. →
Hugging Face disclosed a production intrusion it says was driven end-to-end by an autonomous AI-agent framework. The entry point was its data-processing pipeline: "a malicious dataset abused two code-execution paths in our dataset processing (a remote-code dataset loader and a template-injection in a dataset configuration) to run code on a processing worker" (Hugging Face, 2026-07-16). From that foothold the agent escalated to node-level access, harvested cloud and cluster credentials, and moved laterally across internal clusters, running "many thousands of individual actions across a swarm of short-lived sandboxes, with self-migrating command-and-control" — more than 17,000 logged events over a weekend before Hugging Face detected and contained it. The company found no tampering with public-facing models, datasets or Spaces and verified its container images and published packages were clean; BleepingComputer and SecurityWeek report the disclosure independently (BleepingComputer, 2026-07-20; SecurityWeek, 2026-07-20).
Two operational points stand out. First, speed and scale: an autonomous agent chained exploitation, privilege escalation, credential theft and lateral movement at machine pace — 17,000 actions in a weekend — which changes the detection-dwell-time and containment-speed assumptions defenders plan around; this is the second concrete July-2026 case after Sygnia's AI-orchestrated AWS intrusion (covered 2026-07-09), so autonomous offensive tooling is now demonstrated, not theoretical. Second, a "guardrail asymmetry" Hugging Face surfaced during response: commercial hosted models refused to analyse the attacker's action log because safety filters could not tell an incident responder from an attacker, so the company ran its forensic reconstruction on an open-weight model on its own infrastructure — and it "do[es] not know which model powered the attacker's agents, whether a jailbroken hosted model or an unrestricted open-weight one."
A malicious dataset abused two code-execution paths in our dataset processing (a remote-code dataset loader and a template-injection in a dataset configuration) to run code on a processing worker.
executing many thousands of individual actions across a swarm of short-lived sandboxes, with self-migrating command-and-control staged on public services.
We do not know which model powered the attacker's agents, whether a jailbroken hosted model or an unrestricted open-weight one.
Proofpoint's analysis details Cruciferra, a Mono/.NET-based crypter-as-a-service advertised on underground forums since late 2025 and used by several unrelated criminal groups to pack commodity payloads (AsyncRAT/DCRAT, Agent Tesla, XWorm, Formbook/XLoader, Remcos, Snake Keylogger and others). Its distinguishing feature is an evasion stack aimed squarely at endpoint defenses (Proofpoint, 2026-07-20). Payloads are encrypted with one of over 90 polymorphic cipher routines assembled from primitives such as Keccak, Feistel, SPECK and Threefish and stored Base16-encoded in the PE's .reloc section, so no two samples share an identical routine. Execution uses a variant of process ghosting: a temporary file is marked for deletion, then mapped as a PE image section (NtCreateSection with SEC_IMAGE) before the delete completes, leaving a running process whose backing image is never scannable on disk. Cruciferra hardens that trick with two anti-EDR steps — patching ZwQueryVirtualMemory so endpoint tools misread mapped memory, and neutering NtManageHotPatch to defeat image-integrity validation — alongside Import Address Table unhooking and indirect syscalls: per Proofpoint, "the malware reads a clean copy of ntdll.dll on disk and stores all stub pointers in a global structure for later usage." For EDR/AV termination it loads a legitimate-but-vulnerable signed driver (Proofpoint names GoFlyDrv.sys among the alternates) and issues control codes to kill security processes — classic BYOVD.
Attribution matters here: "Proofpoint observed four campaigns attributed to Chinese-speaking cybercrime actor TA4922 using Cruciferra to ultimately deliver AsyncRAT," behind landing pages mimicking government tax portals, against finance, healthcare and government targets.
the malware reads a clean copy of ntdll.dll on disk and stores all stub pointers in a global structure for later usage.
Proofpoint observed four campaigns attributed to Chinese-speaking cybercrime actor TA4922 using Cruciferra to ultimately deliver AsyncRAT.
Exodus Intelligence published a full exploit-development write-up for CVE-2026-2291, a heap buffer overflow in dnsmasq's DNS-reply caching function really_insert() (src/cache.c). When dnsmasq converts a domain name from DNS wire format to an escaped C string for caching, the escaping can double the string length, but the destination bigname buffer — fixed at 1,025 bytes — is never resized, and an unchecked strcpy() then overflows it: "the length of the string is not checked to ensure it does not exceed the size of the bigname buffer" (Exodus Intelligence, 2026-07-20). The published chain sends three attacker-controlled domain names in sequence (resolved via an attacker-influenced upstream response) to groom the heap, overflow an adjacent chunk's pointer, mount a write-what-where against ld.so function pointers, and take control of execution — full RCE on the OpenWrt demonstration target. No local access is needed: the attacker only requires a client behind the vulnerable resolver to look up an attacker-influenced name.
The significant point for defenders is the impact gap. NVD's published scoring puts CVE-2026-2291 at CVSS 7.3 with a low-impact vector consistent with cache poisoning or denial of service; Exodus's chain shows the practical ceiling is remote code execution (Exodus Intelligence, 2026-07-20). There is no confirmed in-the-wild exploitation — this is researcher-published offense, not observed attack activity — and the bug was already patched upstream in dnsmasq 2.92rel2 / 2.93 on 2026-05-11.
The root cause of the vulnerability is an unsafe strcpy() when a domain name is cached.
The still-open ANCPI (Romanian National Agency for Cadastre and Real Estate Publicity) incident developed on two fronts. First, an impact contradiction: on 2026-07-20 ANCPI stated publicly, following completed security verification, that its technical and legal databases had not been affected (Digi24, 2026-07-20) — squarely against extortion operator ByteToBreach's earlier claim, reported by Risky Business News, that the "hacker entered using valid credentials, mapped internal systems, and wiped systems and backups after failing to extort the agency" (Risky Business News, 2026-07-20). The agency frames the multi-day e-Terra/RENNS outage (down since 14 July) as deliberate protective isolation and says it is migrating applications to the Romanian Government Cloud, coordinated by the Special Telecommunications Service, expected to complete 22 July before any phased service restoration.
Second, actor context: KELA's updated profile assesses ByteToBreach is likely a single operator based in Oran, Algeria, active since June 2025 across forums, Dread, Telegram and a storefront, with a victim set spanning government, banking, airline and university targets across several countries, and access methods documented as cloud/corporate-infrastructure exploitation, reuse of infostealer/phishing-harvested credentials, and brute force (KELA, 2026-07-17).
The hacker entered using valid credentials, mapped internal systems, and wiped systems and backups after failing to extort the agency.
The unauthenticated ServiceNow AI Platform sandbox escape has moved from "no known exploitation" to confirmed active exploitation. NCSC-CH's 2026-07-20 advisory revision set the item's status to "Actively exploited" (NCSC-CH, 2026-07-20), and BleepingComputer reports attackers "begun exploiting a critical vulnerability (CVE-2026-6875) in the ServiceNow AI Platform," attributing the in-the-wild observation to threat-intelligence firm Defused from around 2026-07-18 (BleepingComputer, 2026-07-20). The mechanism is unchanged from the original entry — an unauthenticated caller reaches unrestricted server-side script execution through the GlideRecord query path, a chain Searchlight Cyber demonstrated where "running any code via eval or new Function will run free from the constraints of the additional sandbox" (Searchlight Cyber, 2026-07-14).
The operational change is entirely one of urgency: exploitation is live, so any self-hosted or partner-managed AI Platform instance still missing the vendor hotfix has crossed from "patch on the normal cycle" to "patch out of band."
Searchlight Cyber's Adam Kues tasked OpenAI's GPT5.6 model — running autonomously for up to 10 hours per session — to independently rediscover and weaponise "WP2Shell", the WordPress core pre-authentication RCE chain this pipeline covered on 2026-07-18 (CVE-2026-63030, a REST batch-endpoint route-confusion flaw, chained with CVE-2026-60137, an SQL injection in WP_Query's author__not_in parameter; both patched out of band in WordPress 7.0.2/6.9.5/6.8.6 on 2026-07-17). Without human guidance beyond the initial task, the model recursively chained batch API requests to bypass method validation, poisoned the request cache with fabricated posts, abused the oEmbed subsystem to insert database rows, and replayed a request with elevated administrator context via the parse_request hook — ending with an unauthorised admin account on a stock, plugin-free install (Searchlight Cyber, 2026-07-20). Kues put the cost at roughly $25 — "50% of weekly usage ... ~ $25 USD" on a $200 subscription — and states plainly that "no security researcher could have found and completed this exploit chain in 10 hours without AI." Infosecurity Magazine corroborates (Infosecurity Magazine, 2026-07-20).
Nothing about the CVEs, affected versions or patch guidance has changed — this is a capability finding, not a new vulnerability.
Total usage: 50% of weekly usage. Pro-rata total cost on the $200 subscription: ~ $25 USD.
No security researcher could have found and completed this exploit chain in 10 hours without AI.
The JADEPUFFER operator — the agentic-LLM extortion actor Sysdig first documented exploiting Langflow's missing-authentication code-execution flaw (CVE-2025-3248) — returned to the same Langflow instance with a materially upgraded payload. Where the original intrusion improvised Python and MySQL AES_ENCRYPT() to extort a downstream database, the new run deploys ENCFORGE (written to disk as lockd), a compiled, UPX-packed Go ransomware purpose-built for the machine-learning stack (Sysdig, 2026-07-20). Sysdig ties it to the same actor — the extortion contact embedded in ENCFORGE matches the one disclosed in the prior report — assessing "the same operator with a materially upgraded toolkit." Infosecurity Magazine corroborates the campaign (Infosecurity Magazine, 2026-07-20).
ENCFORGE targets roughly 180 file extensions spanning the modern ML pipeline — PyTorch/TensorFlow checkpoints, HuggingFace SafeTensors weights, llama.cpp GGUF quantized models, FAISS vector indices, Apache Parquet/TFRecord training datasets, NumPy arrays and LoRA adapters — encrypting with AES-256-CTR under RSA-2048. Sysdig frames the significance bluntly: the operator is "using ransomware to destroy the one thing an organization can't simply restore: a trained AI model," because rebuilding a production fine-tuned model means re-running weeks-to-months of training, and if the training data sits on the same compromised host it is encrypted too.
In a new development, the operator behind JADEPUFFER has doubled down on that bet, using ransomware to destroy the one thing an organization can't simply restore: a trained AI model.
Group-IB has published a technical profile of HOLLOWGRAPH, a NativeAOT-compiled .NET DLL it "attribute[s], with high confidence, to the Cavern backdoor framework" (Group-IB, 2026-07-20) — the modular C2 that Check Point Research previously tied to the Iran-MOIS-linked Cavern Manticore actor and that this pipeline has tracked since 2026-07-09. The interest for defenders is not the actor but the command-and-control design, which is built entirely on trusted Microsoft cloud services and leaves almost no attacker-owned network footprint. Infosecurity Magazine corroborates the reporting (Infosecurity Magazine, 2026-07-20).
HOLLOWGRAPH implements only two operations, get and send, and never beacons to attacker infrastructure. Instead it treats a compromised Microsoft 365 mailbox's calendar as a two-way dead-drop over the Graph API. To exfiltrate, the implant encrypts a file with hybrid RSA-OAEP + AES-256-GCM (separate key pairs per direction), creates a calendar event dated far in the future — 2050-05-13, in a fixed 22:00–23:00 UTC window — so the mailbox owner is unlikely to notice, uploads the ciphertext as event attachments, and renames the event subject to an operator-recognisable tag. To receive tasking, it queries the same calendarView window, filters events by subject, downloads the attachment planted by the operator, and decrypts it. A separate, unencrypted channel refreshes the four Entra ID (Azure AD) values the implant needs — tenant ID, client ID, client secret and target mailbox — by DNS tunneling: length- and data-encoded queries against an attacker domain resolved as IPv6 AAAA records and reassembled into fixed-size chunks.
The kill chain, described for reasoning about detection: the implant authenticates as an application/service identity to Microsoft Graph and drives calendar operations programmatically — the Graph-API calendar dead-drop is bidirectional web-service command-and-control and the credential refresh rides DNS as an application-layer channel; the calendar payloads are encrypted end-to-end; and the implant operates against cloud-account credentials rather than an on-host identity. Group-IB is explicit about the attribution ceiling: it "cannot confidently attribute this activity to any previously identified threat actor," assessing only a low-confidence technical overlap with the Iranian-nexus Lyceum sub-group — so this is a Cavern-framework component, not a confirmed named-actor campaign. Telemetry to date is narrow: 12 infected systems, roughly 3 actively communicating, all evidence pointing to Israeli organisations, with activity observed between 3 June and 9 July 2026.
Group-IB Threat Intelligence team has identified HOLLOWGRAPH, a new malware sample that we attribute, with high confidence, to the Cavern backdoor framework
we cannot confidently attribute this activity to any previously identified threat actor.
Apply ServiceNow hotfix KB3137947 to every self-hosted or partner-managed ServiceNow AI Platform instance immediately — the flaw is now exploited in the wild and ServiceNow's own hosted tenants are already fixed, so on-prem/partner-managed deployments are the exposure that remains.
Pre-vet and stand up an open-weight model for incident-forensics use before it is needed — Hugging Face found commercial hosted models' safety guardrails blocked its own analysis of the attacker's action log, and ran the reconstruction on an open-weight model instead; a SOC relying on a commercial model for triage/forensics can hit the same guardrail lockout mid-incident.
For any Langflow or self-hosted AI-pipeline estate, confirm model checkpoints and training datasets are backed up to storage isolated from the compute host — ENCFORGE encrypts ~180 ML-artifact file types and any training data sitting on the same host, so a co-located backup is inside the blast radius and recovery would otherwise mean re-training from scratch.
Verify dnsmasq is at 2.92rel2 / 2.93 or later on every OpenWrt / embedded-Linux gateway, router and NetworkManager-DNS host in the estate — Exodus's public chain shows the CVSS-7.3 'DoS/cache-poisoning' bug is a pre-auth RCE, so any patch deferral made on the DoS framing should be revisited now.
2026-07-21T0409Z-intel· Claude Opus 4.8 · window 26 h · 8 entries published
Verification & coverage notes
Standard-cadence fire — a clean 24 h gap to the previous run (2026-07-20T0409Z-intel), 26 h window. A genuinely eventful window: eight entries cleared the gate — four new and four updates to developing stories — with no critical and one high (an exploitation-status flip on an already-tracked pre-auth RCE). Volume tracks the window's real signal, not cadence; the four updates are delta-only against prior coverage.
Published — new (4)
cve-2026-2291-dnsmasq-heap-overflow-rce-exodus — vulnerability, notable. Exodus Intelligence's exploit-dev write-up demonstrates the CVSS-7.3 dnsmasq DNS-cache heap overflow is a pre-auth RCE, not the DoS/cache-poisoning NVD frames — a triage-recalibration item for the broad OpenWrt/embedded/OT-adjacent install base. Patched upstream 2026-05-11; no ITW. Clears the vulnerability gate on the substantive-new-technical-analysis criterion (the impact reframing changes patch prioritisation).
cruciferra-crypter-as-a-service-process-ghosting-byovd — threat, notable. Proofpoint's analysis of a commercial crypter (process ghosting + memory/hotpatch tampering + indirect syscalls + BYOVD via GoFlyDrv.sys) used across many groups and attributed (four AsyncRAT campaigns) to China-nexus TA4922, whose tax-themed lures target finance/healthcare/government — sectors central to this constituency.
hollowgraph-m365-calendar-graph-api-c2-cavern — threat, notable, deep dive (category identity-infra). Group-IB's Cavern-framework component that uses a compromised M365 mailbox calendar as a Graph-API dead-drop C2 with DNS-tunneled Entra credential refresh. Currently narrow (Israeli targets) but the technique is transferable to any M365 tenant, the platform at the centre of most CH/EU public-sector estates.
hugging-face-autonomous-ai-agent-production-breach — incident, notable. Hugging Face's first-party disclosure of a weekend-long intrusion driven end-to-end by an autonomous AI-agent framework (17,000+ actions, self-migrating swarm C2, credential harvesting) — the second concrete July-2026 case after Sygnia's AWS intrusion. Included on the materially-new-TTP criterion; also surfaces a "guardrail asymmetry" defenders can act on (pre-provision an open-weight forensic model).
Published — updates (4, delta-only)
servicenow-ai-platform-cve-2026-6875-active-exploitation — high. Exploitation-status flip: NCSC-CH's 2026-07-20 advisory marks CVE-2026-6875 (covered 2026-07-13) "Actively exploited"; Defused reports ITW from ~2026-07-18. Self-hosted/partner-managed instances without hotfix KB3137947 are now an out-of-band item. The only high this run.
jadepuffer-encforge-ai-model-destroying-ransomware — notable (updates 2026-07-04). Same operator returned to the same Langflow instance with ENCFORGE, a Go ransomware purpose-built to encrypt ~180 ML-artifact file types and co-located training data — recovery cannot come from a patch or decryptor.
gpt56-autonomous-wordpress-wp2shell-exploit-chain — research, notable (updates 2026-07-18). Searchlight Cyber drove GPT5.6 to autonomously rediscover and weaponise the patched WP2Shell chain in ~10 h for ~$25 — a capability marker compressing the "patched-but-not-applied" safe window. CVEs/patch unchanged.
ancpi-romania-cadastre-databases-not-affected-update — incident, notable (updates 2026-07-19). ANCPI says its databases were NOT affected, contradicting ByteToBreach's backup-wipe claim; Gov Cloud migration to complete 22 July; KELA profiles the operator. Marked verification: contradicted — both claims held, neither resolved.
Contradiction
ANCPI: the agency's "technical and legal databases have not been affected" (Digi24, 2026-07-20) directly contradicts ByteToBreach's "wiped systems and backups" claim (relayed by Risky Business News). Reported both ways; entry carries verification: contradicted, confidence: medium, credibility 3.
Single-source / carve-outs
Hugging Face is anchored on the victim's own first-party disclosure (2026-07-16) with two independent outlets (BleepingComputer, SecurityWeek) reporting on 2026-07-20; treated as multi-source. In-window on the 2026-07-20 broad-pickup date per the freshest-available-source rule.
dnsmasq CVE-2026-2291: Exodus is the single origin for the working RCE chain; NVD corroborates the CVE/CVSS/patch but frames impact lower — the discrepancy is stated in the entry (verification: multi-source with an explicit sourcing_note).
Borderline drops (recoverable)
borderline-drop: Craneware plc healthcare-billing vendor breach (S2 + S4) — Edinburgh-domiciled/AIM-listed (a thin home-region nexus) but the customer base is exclusively US healthcare billing/pharmacy with no plausible Swiss/EU customer exposure; the RNS filing discloses no access vector (no transferable TTP), the incident is contained, and the company assesses the taken data as largely non-sensitive. Only a generic supply-chain-awareness lesson remains — fails the actionability bar for this constituency. Recover if a Swiss/EU Trisus/Sentry customer or a forensic post-mortem surfaces.
borderline-drop: Estée Lauder / Clop Oracle EBS breach (CVE-2025-61882) (S4) — out-of-nexus US retail victim disclosure of the August-2025 Clop Oracle EBS mass-exploitation campaign; CVE-2025-61882 was patched October 2025 (no action beyond a 9-month-old patch cycle) and the campaign-longevity lesson is generic and already thematically covered by the W29 weekly. Note for the weekly/strategic lens: Clop's Oracle EBS campaign reportedly includes a Swiss victim (Logitech); worth a strategic entry if fresh in-window CH/EU-specific reporting appears.
borderline-drop: Coca-Cola / fairlife ransomware (S4) — out-of-nexus US food/beverage manufacturing; the Anubis leak-site claim is unconfirmed by Coca-Cola (fake-news guard) and adds no new TTP; already borderline-dropped 2026-07-20.
borderline-drop: Ostium DeFi $23.7M off-chain oracle manipulation (S4) — out-of-nexus crypto/DeFi, a well-established attack class (no novel TTP), single-sourced.
borderline-drop: Amatera Stealer via Ren'Py/MSBuild fake game downloads (S3) — single-source (Malwarebytes); payload (Amatera) and C2 (EtherHiding) already heavily covered this window, and the novel Ren'Py-engine delivery vector alone did not clear the bar against repeat-theme fatigue.
Completeness sweep: re-read all four sub-agents' full returns including every borderline-flagged item; the five drops above are the only in-scope-adjacent items not published, each recorded with a reason. No genuinely-relevant in-window item the run surfaced was left unpublished.
Deep-dive rotation: category identity-infra — last used 2026-07-09; the trailing 7 days used network-stack-rce (2026-07-20), other (2026-07-19) and firewall-vpn-rce (2026-07-18), so identity-infra is a fresh pick. No prior deep dive today (deep_dives_today: 0). HOLLOWGRAPH earns it on the substantive-new-technical-analysis criterion with maximal M365/Entra relevance for this constituency; the medium-confidence actor attribution is bounded (the entry is framed on the technique, which Group-IB analyses at high confidence, not on the low-confidence Lyceum overlap).
Coverage gaps: cert-eu (advisory feed stale since 2026-06-10 — long-standing, not a fresh failure); several S3 standard-tier research slices not exhaustively drilled under the time budget (trustwave-spiderlabs, synacktiv, withsecure-labs, csa-labs, zimperium-zlabs, sansec-research, infoguard-labs) — no confirmed in-window miss; expel — the CylindricalCanine/GoldenEyeDog DigiCert research (2026-07-15) fell outside both the 26 h window and the 72 h developing-story extension and was dropped on recency. None are unrecovered fetch failures.
Essential-coverage: all essential national-CERT/government/KEV sources (CISA KEV, ENISA EUVD, NCSC-CH, NCSC-NL, BSI, ANSSI/CERT-FR, CERT-EU, CERT-PL, NCSC-UK, CISA advisories/directives) attempted and reachable; no misses. CISA KEV carried no new in-window additions (newest dated 2026-07-16, already covered).
Watchlist: not configured for this deployment (product and supplier watchlists empty) — sweep is a no-op; line omitted.
Verification. Four iterations (Opus / Sonnet / Opus / Sonnet rotation); confirmed CLEAN published under the double-CLEAN gate (iteration 3 Opus CLEAN + iteration 4 Sonnet CLEAN — two consecutive CLEANs on two different models). Every finding across the loop was the same class: F4 evidence-quote fidelity (quote misattribution, ellipsis-splicing, silently-dropped parentheticals) — no factual, analytical, sourcing, priority, classification, or coverage defect was found in any pass. Iteration 1 (Opus) flagged three (Cruciferra's two quotes were Infosecurity-Magazine phrasing mislabelled to Proofpoint; dnsmasq's quote elided a sentence; Hugging Face's two quotes dropped parentheticals); iteration 2 (Sonnet) confirmed all three fixes and caught a fourth of the same class (HOLLOWGRAPH's Group-IB attribution quote spliced two non-adjacent sentences); all four were remediated by requoting contiguous verbatim substrings from the correct fetched source. Iterations 3 (Opus, cold) and 4 (Sonnet, cold confirmation) both returned CLEAN against freshly-fetched primaries. Iteration 4's single advisory (F11 — the HOLLOWGRAPH body referenced the techniques[] field name in reader-facing prose) was fixed cosmetically post-pass (plain-language rewording; no claim/quote/source/fact changed). entries_dropped_by_verification: 0; verification_residual_count: 0.
Data-model note (dedup WARN, deliberate):check_run.py WARNs that the HOLLOWGRAPH entry shares entity tool:cavern-c2-framework with the 2026-07-09 Cavern Manticore entry. This is a deliberate non-update_of decision confirmed by both verifiers: HOLLOWGRAPH is a materially distinct new implant/technique (a Graph-API-calendar dead-drop variant), not a delta on the framework write-up, and the relationship is captured as a typed variant-of edge on the new tool:hollowgraph-malware record. The WARN is inherent to any new entry that correctly references a recurring entity; it is not a defect to fix.
Operator-facing tooling findings (surfaced for the weekly quality audit, not fixed this run):
jina reader-pool credit: S2 observed HTTP 402 (balance exhausted) on one key (suffix ...MrZOsc) during two bridge invocations before the tool auto-rotated to the next credential. Not source-specific; the pool may need a top-up or the exhausted key removed. No content was lost this run (auto-rotation + direct transports covered it).
WebFetch PDF summarisation reliability: S4 found WebFetch hallucinated the Estée Lauder California-AG breach-notification PDF as belonging to an unrelated company ("Sprinklr, Inc.", Jan 2024) when summarised; the raw PDF read directly confirmed it is Estée Lauder's own 2026-07-17 letter. Load-bearing PDF claims should be spot-checked against raw content, not trusted from the summariser — a candidate note for prompts/ / agent guidance.