Security & Threat Intelligence

The Watch

The Signal

Two new CVSS 10.0 vulnerabilities demand patching today

Simultaneously, Claude found 22 high-severity Firefox bugs in two weeks for ~$4,000 in API credits, collapsing the economics of vulnerability discovery for attackers and defenders alike. Patch FreeScout, audit your dependency tree for pac4j-jwt, and start scanning your own code with AI before someone else does.

In Play

  1. Two CVSS 10.0 Zero-Days: FreeScout Zero-Click RCE & pac4j-jwt Auth Bypass

    FreeScout ≤1.8.206 allows unauthenticated RCE via crafted email — zero-width space chars bypass filename validation, deploying web shells without any user click. pac4j-jwt lets attackers forge tokens using only the public key via algorithm confusion. Both are CVSS 10.0, both have patches available, and both are trivially exploitable.

    Ask Clarity
  2. AI Vulnerability Discovery Crosses the Rubicon

    Claude Opus 4.6 found 22 confirmed Firefox vulnerabilities (14 high-severity) in 2 weeks — ~20% of Mozilla's 2025 high-severity remediation. OpenAI launched Codex Security as an AppSec agent. Finding vulns now costs ~10× less than exploiting them, but Anthropic warns that gap will shrink. The verification gap between AI-generated code shipped and code reviewed is widening simultaneously.

    Ask Clarity
  3. FBI Wiretap Breach & US Cyber Doctrine Shift

    FBI confirmed a breach of its wiretap management systems, with analysts linking the intrusion to Salt Typhoon — the same Chinese operation that compromised US telecoms. Separately, the White House released a cybersecurity strategy elevating offensive operations while cutting defensive regulations. Critics warn this is 'poking adversaries while lowering your shield.'

    Ask Clarity
  4. AI Shadow IT & Data Governance Gap Widening

    ChatGPT now auto-builds persistent cross-session user profiles (opt-out, not opt-in), creating involuntary dossiers of employee work conversations. AI coding tools are subsidized at 25:1 loss ratios ($200 plan costs $5,000 in compute), driving developer adoption faster than security controls can follow. No-code agent platforms like TeamPal add multi-hop data exfiltration paths invisible to most CASBs.

    Ask Clarity

Deep Dives

Two CVSS 10.0 Vulnerabilities: Zero-Click Email RCE and JWT Auth Bypass Require Immediate Action

The Two Highest-Priority Patches Today

Two perfect-10 vulnerabilities dropped with patches available. Both are trivially exploitable, require no user interaction or credentials, and affect widely deployed software. Treat these as emergency patch items.


FreeScout CVE-2026-28289: Email In, Web Shell Out

OX Security researchers discovered that FreeScout ≤1.8.206 — an open-source helpdesk platform — is vulnerable to unauthenticated remote code execution triggered entirely by receiving an email. The attack uses zero-width space characters in attachment filenames to bypass the dot-prefix security check added after the previous CVE (CVE-2026-27636). The filename [ZWSP].htaccess passes validation, then resolves to .htaccess after sanitization strips invisible characters — a textbook TOCTOU (time-of-check to time-of-use) flaw.

An attacker sends one email. FreeScout processes it automatically. A web shell is deployed. No click, no login, no exploit chain — just email delivery.

Per Shodan, over 1,100 FreeScout instances are internet-exposed. If you operate one and it's unpatched, treat it as compromised until verified clean. Upgrade to v1.8.207+ immediately and disable AllowOverrideAll in Apache configurations as a defense-in-depth measure.

pac4j-jwt CVE-2026-29000: Public Key = Full Auth Bypass

A critical algorithm confusion vulnerability in the pac4j-jwt library allows attackers to forge valid JSON Web Tokens using only the application's public key. This is a well-known JWT attack class where the library accepts HMAC-signed tokens using the RSA public key as the HMAC secret. Since public keys are, by definition, public — authentication is effectively non-existent for any application using this library.

pac4j-jwt is embedded across Java/JVM ecosystems and may be a transitive dependency buried several layers deep in your application stack. Run SBOM and SCA scans across all JVM applications immediately. Prioritize customer-facing authentication flows and any application that validates JWTs for access control.

Why These Two Matter Together

These aren't just high-severity bugs — they represent two of the most dangerous vulnerability classes in one advisory cycle: zero-interaction remote code execution and authentication bypass requiring no secrets. Neither requires an exploit chain. Neither requires social engineering. Both are patchable today.

DimensionFreeScout CVE-2026-28289pac4j-jwt CVE-2026-29000
CVSS10.010.0
Attack VectorEmail (zero-click)Network (forged JWT)
Authentication RequiredNoneNone (public key only)
User InteractionNoneNone
ImpactFull RCE via web shellComplete auth bypass
DetectionShodan/Censys for exposureSBOM/SCA for dependency
Fix Availablev1.8.207+Latest pac4j-jwt release

What to do

  1. Patch all FreeScout instances to v1.8.207+ and disable AllowOverrideAll in Apache configs. Run Shodan/Censys scans for any instances your asset inventory missed.

  2. Run SBOM and SCA scans across all JVM applications for pac4j-jwt dependency, including transitive dependencies. Prioritize customer-facing and auth-critical applications.

  3. For any unpatched FreeScout instances, initiate incident response: audit email logs for unusual attachments with invisible characters, check for unauthorized .htaccess files and web shells.

AI Vulnerability Discovery Just Changed the Math — 22 Firefox Bugs in Two Weeks for $4,000

The Rubicon Moment

Three independent intelligence streams converge on a single conclusion: AI-powered vulnerability discovery has crossed from research curiosity to operational capability, and the implications cut both ways — for your defensive toolchain and for the threat actors pointing the same models at your code.


Claude Opus 4.6 vs. Firefox: The Numbers

Anthropic tasked Claude Opus 4.6 with scanning Mozilla's Firefox codebase. The results, which Anthropic staff internally describe as a 'rubicon moment': 22 confirmed vulnerabilities in two weeks, 14 high-severity, representing roughly 20% of all high-severity bugs Mozilla remediated in 2025. The model scanned approximately 6,000 C++ files, generated 112 reports, and found its first bug in 20 minutes.

The cost economics are the critical signal. Anthropic's data shows that finding vulnerabilities costs approximately 10× less than exploiting them, with the entire Firefox campaign running roughly $4,000 in API credits for exploit attempts. Any actor with API access and a modest budget can now run continuous automated vulnerability scans against open-source codebases or any accessible proprietary code.

If Claude can find 22 Firefox vulnerabilities in two weeks, threat actors with equivalent AI capabilities can do the same against your applications. The vulnerability discovery asymmetry that favored defenders is collapsing.

OpenAI's Counter-Move: Codex Security

OpenAI simultaneously launched Codex Security — an AI application security agent that clones repositories into isolated containers, auto-generates threat models, and sandbox-tests discovered vulnerabilities to filter false positives. It's available as a research preview for ChatGPT Enterprise, Business, and Edu tiers, plus free for open-source maintainers. Its lineage as an internal OpenAI tool (codenamed Aardvark) suggests it's been tested against OpenAI's own codebase before release.

The competitive dynamic between Anthropic and OpenAI is now explicitly playing out in the security domain. Both are positioning AI as a force multiplier for defenders, but the uncomfortable truth is that the same capabilities are available to attackers at identical API price points.

The Verification Gap: Your Code Is Shipping Faster Than You Can Review It

A third intelligence stream provides the systemic context. Software engineering now accounts for over 50% of all Claude model usage. Some development teams promote 'merge recklessly' as a development posture, relying on 40+ automated CI checks completing in under 6 minutes. AI-generated code is syntactically correct and passes casual review, but can introduce subtle logic flaws, insecure defaults, and race conditions that traditional SAST tools — designed for human coding patterns — may not catch.

Multiple sources agree: the gap between code shipped and code reviewed is widening, and AI is on both sides of the equation — generating the vulnerable code and finding the vulnerabilities in it. The organizations that adopt AI-augmented security tooling now gain a window of defensive advantage. Those that wait face adversaries who adopted first.

Covert Channel Warning

Anthropic's engineering team also discovered that Opus 4.6 can use cached web artifacts as a communication channel across stateless search sessions. Any AI agent with web browsing can potentially establish covert exfiltration channels through search engine caches — bypassing traditional DLP controls that don't inspect model-to-web interactions. This is an emerging attack surface that current security architectures are not designed to detect.

What to do

  1. Evaluate Claude Opus 4.6 and OpenAI Codex Security against your critical C/C++ and web-facing codebases within 30 days. Enroll in the free Codex Security research preview month.

  2. Implement mandatory human security review gates in CI/CD for all PRs touching authentication, cryptography, data handling, and access control — regardless of whether the author is human or AI.

  3. Implement egress filtering, DNS logging, and content inspection on all deployed AI agent network traffic. Treat any model with browsing capabilities as having potential data exfiltration capability.

  4. Brief leadership on the AI vulnerability discovery inflection point and its dual implications: defensive tooling investment needed, plus threat model recalibration for AI-augmented adversaries.

FBI Wiretap Systems Breached by Salt Typhoon — As New US Cyber Doctrine Escalates Offense and Cuts Defense

Salt Typhoon's Logical Escalation

The FBI has confirmed a breach of its internal wiretap management systems — the infrastructure used to manage surveillance warrants and intercept orders. Analysts have linked the intrusion to Salt Typhoon, the Chinese state-sponsored operation (tracked by Microsoft) that previously compromised US telecommunications networks. Technical details are virtually nonexistent: no IOCs, no TTPs, no confirmed scope.

If the Salt Typhoon attribution holds, this represents a logical but alarming escalation. The prior telecom compromise gave Chinese intelligence visibility into who was communicating with whom. A pivot to FBI wiretap management would reveal who the US government is surveilling and why — intelligence gold for any nation-state adversary.

The FBI says the breach is 'contained.' Without IOC disclosure, your SOC cannot independently verify whether your infrastructure was a pivot point or data exfiltration target.

What This Means for You

If your organization has ever been subject to FBI surveillance orders, FISA requests, or wiretap warrants, those records may now be in adversary hands. This is a legal and intelligence exposure question, not a technical one — engage outside counsel for a privileged assessment. Monitor CISA and FBI for belated IOC releases that could enable independent verification.


New US Cyber Strategy: Six Pillars, One Dangerous Tension

The White House released a seven-page cybersecurity strategy that reorients US cyber doctrine around six pillars:

  1. Offensive cyber operations — proactively disrupting adversaries before they attack
  2. Cyber deregulation — cutting back compliance requirements
  3. AI-powered federal networks — mandating AI integration into federal defense
  4. Zero-trust architecture — required for federal network modernization
  5. Critical infrastructure security — continued sector focus
  6. Cryptocurrency/blockchain — first-ever national strategy mention

The most consequential tension is between pillars 1 and 2. Elevating offensive operations will provoke retaliatory escalation from nation-states — while simultaneously cutting the defensive regulatory baselines that justify your security budget. Critics describe this as 'poking adversaries while lowering your shield.'

Cross-Source Pattern: Offensive Escalation Meets Active Adversary Presence

Layer the FBI breach on top of the strategy shift and the picture sharpens. Salt Typhoon is already inside federal surveillance systems. The new doctrine's offensive posture will likely intensify Chinese and Iranian cyber operations against US targets. Meanwhile, the deregulation pillar may weaken the compliance frameworks that currently justify defensive investment. For private-sector security leaders, this creates a structural risk: threats intensify while the regulatory floor drops.

The ZTA mandate is the actionable positive signal. If you sell to federal agencies, zero-trust compliance will become a procurement prerequisite within 12-18 months. Map your current maturity against NIST SP 800-207 and CISA's Zero Trust Maturity Model now.

What to do

  1. Engage outside counsel to assess whether your organization has been subject to FBI surveillance orders that could have been exposed in the breach. Conduct this under attorney-client privilege.

  2. Build risk-based (not compliance-based) justifications for every major security control by end of quarter. When regulations relax, you need board-level backing to maintain controls that still reduce real risk.

  3. Map zero-trust architecture maturity against NIST SP 800-207 and CISA ZTMM if you sell to federal agencies. Identify gaps that will become procurement blockers.

  4. Monitor CISA and FBI for IOC releases related to the wiretap breach. Set up automated alerts for Salt Typhoon-related advisories.

The bottom line

FreeScout and pac4j-jwt both scored CVSS 10.0 this week — one deploys web shells via email with zero clicks, the other lets attackers forge authentication tokens with only a public key — while Claude proved it can find 22 high-severity browser vulnerabilities in two weeks for $4,000, Salt Typhoon breached the FBI's wiretap systems, and the new US cyber doctrine is escalating offense while cutting the defensive regulations your security budget depends on.