Five Active Exploits, One New Attack Paradigm — Your Patch Queue and Threat Model Both Need Updating
The Drop-Everything Patches
HPE Aruba CX switches have an unauthenticated password reset vulnerability at near-maximum CVSS severity. Any attacker with network adjacency to your switch management plane can reset the admin password and take full control — zero credentials required. Compromised switches enable traffic interception, VLAN hopping, and lateral movement that's invisible to endpoint detection. If you can't patch within hours, ACL the management interfaces to known admin IPs as a stopgap. Do not wait for a maintenance window — this exploit is trivial to execute.
Separately, CISA added n8n to its Known Exploited Vulnerabilities catalog — 24,700 instances are exposed to RCE and credential theft right now. Think about what your n8n instance knows: Postgres connection strings, third-party API keys, cloud provider tokens, Slack webhooks. An attacker who pops n8n owns everything n8n can talk to. This is the same pattern that hit exposed Elasticsearch, unsecured Redis, and public Jenkins dashboards — workflow automation platforms are especially dangerous because they're designed to hold credentials and have broad system access.
Your internal tooling attack surface is probably larger than you think, and workflow automation platforms are the highest-value targets because they're credential stores with execution capability.
McKinsey's Lilli: 46.5M Messages via SQLi in 2026
An autonomous AI agent (CodeWall) found and exploited an unauthenticated SQL injection in McKinsey's internal AI platform, gaining full read/write access to the production database within two hours. The blast radius: 46.5 million chat messages, 728,000 sensitive files, and McKinsey's entire proprietary RAG knowledge base. This wasn't a zero-day — it was a parameterized query failure on an unauthenticated endpoint. The lesson isn't that McKinsey is uniquely incompetent; it's that AI platforms create a new class of attack surface that isn't getting traditional security scrutiny. RAG pipelines ingest from diverse sources, chat interfaces accept freeform input, and backends have broader database access than typical CRUD apps.
'Living Off the Cloud' Is Now a Named Threat Category
The evolution from LOTL (living off the land — abusing OS binaries like PowerShell) to LOTC (living off the cloud) is the most architecturally significant security development this week. CSO identified 12 distinct abuse patterns where attackers use your own S3 buckets for staging, your own Lambda functions for execution, your own IAM roles for lateral movement, and your own SaaS integrations for exfiltration. Every action looks like legitimate infrastructure usage. Your SIEM sees normal API calls from expected service principals.
This isn't a vulnerability to patch — it's a threat model shift. The fix: identity-centric security with behavioral baselines. You need to know what 'normal' looks like for every service principal and alert on deviations. CloudTrail + GuardDuty is the minimum on AWS; add custom detections for your specific service principal behavior patterns.
Also Active This Week
- Salesforce Experience Cloud: guest user misconfigurations being actively exploited to harvest data from public portals — audit guest permissions immediately
- SAP patching CVE-2019-17571 — a 7-year-old Log4j 1.x deserialization CVE — as critical in 2026, proving transitive dependency debt is real
- North Korean actors weaponizing GitLab repos to deliver malware payloads to developers and running fake IT worker infiltration campaigns
What to do
Patch HPE Aruba CX switches immediately or ACL management interfaces to known admin IPs as stopgap
Audit and patch all n8n instances; enumerate every credential and API key n8n can access and rotate any that were exposed
Pen-test your AI platform's input paths this week — including RAG ingestion, chat interfaces, and embedding generation endpoints
Run a 'living off the cloud' threat modeling exercise: map every service principal, IAM role, and cross-account trust relationship
Run SCA scan for transitive dependencies with CVEs older than 2 years, specifically targeting Log4j 1.x family