Three Unauthenticated Critical RCEs: Triage Order and Detection Playbook
Simultaneous Critical Vulnerabilities Across Disparate Attack Surfaces
Today's intelligence cycle delivered an unusually dense cluster of critical-severity vulnerabilities that share one dangerous trait: all are exploitable without authentication in default configurations. The convergence across physical security, enterprise identity, and AI-powered development toolchains means most organizations are exposed on at least one vector.
| Vulnerability | CVSS / Severity | Auth Required | Blast Radius | Exploit Maturity |
|---|---|---|---|---|
| CVE-2026-1670 (Honeywell CCTV) | 9.8 Critical | None | Full camera takeover; physical security compromise | CISA advisory issued; weaponization imminent |
| OpenText OTDS Deserialization | Critical (no CVE yet) | None | All integrated OpenText apps (Content Server, Documentum, InfoArchive) | Technical writeup public via Assetnote |
| Cline AI Bot Prompt Injection | High (supply chain) | None (public issue title) | npm, VS Code Marketplace, OpenVSX ecosystems | PoC demonstrated |
Honeywell CCTV: CVE-2026-1670
CISA issued an advisory for a missing authentication flaw in Honeywell I-HIB2PI-UL and NDAA-compliant PTZ cameras. An unauthenticated attacker can remotely change the password recovery email, achieving full account takeover and unauthorized video feed access. The ATT&CK chain is clean: T1190 → T1098 → T1125. For organizations under NERC CIP, HIPAA physical security, or PCI DSS Requirement 9, this is compliance-impacting.
OpenText OTDS: Unauthenticated Java Deserialization
Assetnote disclosed an RCE in OpenText Directory Services exploitable via a broken HMAC signature verification where attacker-controlled length fields truncate the signed message to begin at an injected payload. The exploit required building a custom Deflate compressor with tailored Huffman codes — sophisticated engineering, but the attack surface is simple: unauthenticated, default config, network-reachable. Since OTDS is the authentication backbone for OpenText's entire ecosystem, compromise cascades to every integrated application.
Cline AI Bot: Prompt Injection → Supply Chain Compromise
A prompt-injected GitHub issue title can drive Cline's Claude-based triage bot to execute arbitrary commands, poison GitHub Actions caches, and steal publishing tokens for VS Code Marketplace, OpenVSX, and npm. This is the threat model most security teams haven't built: AI agents with CI/CD write access are supply chain attack surfaces. The attacker doesn't need credentials — they need a string an LLM interprets as an instruction.
Detection Opportunities
- Honeywell: Alert on unauthenticated API calls to camera account management endpoints; monitor for password recovery email change requests
- OpenText OTDS: Deploy network-level detection for serialized Java objects in HTTP traffic to OTDS endpoints; monitor logs for deserialization exceptions
- CI/CD: Monitor GitHub Actions cache writes for unexpected entries; alert on publishing token usage from non-standard IPs; require human approval for workflow changes
Three unauthenticated critical vulnerabilities in one cycle — across cameras, identity systems, and AI bots — means your attack surface is wider than your asset inventory suggests.
What to do
Identify and patch or network-isolate all Honeywell I-HIB2PI-UL and NDAA-compliant PTZ cameras by end of day Monday
Audit OpenText OTDS endpoint exposure by Wednesday; block serialized Java object payloads via WAF rules if no vendor patch is available
Inventory all AI bots with CI/CD pipeline access (Cline, Copilot agents, custom LLM bots) and restrict to read-only permissions by end of week
Deploy detection rules for all three vectors within 48 hours using the IOC patterns described above