SharePoint deser RCE, OpenShift HAProxy injection, and a WordPress SQLi from 2018
CVE-2026-47294 lets any authenticated SharePoint user run code on your server (CVSS 8.0). CVE-2026-1784 turns OpenShift Route objects into HAProxy config injection (CVSS 8.8). Plus an ancient unauthenticated SQLi in WP AutoSuggest finally gets a CVE.
Nothing's on fire, but two of today's five deserve your attention before lunch. A SharePoint deserialization bug (CVE-2026-47294, CVSS 8.0) lets any authenticated user run code on your server, and an OpenShift Route validation failure (CVE-2026-1784, CVSS 8.8) lets attackers inject arbitrary HAProxy config into your ingress router. Neither is exploited in the wild yet, so you've got a window to patch cleanly.
Today's CVEs
Sorted by urgencyCVE-2026-47294
NVDAn authenticated attacker can exploit a deserialization bug in SharePoint to run arbitrary code over the network. The attacker needs valid credentials, but once authenticated, no special privileges or user interaction are required. If you host on-prem SharePoint, this is a serious remote code execution risk from any authorized user.
- Affected estate
- SharePoint on-prem admins running any currently supported version of Microsoft Office SharePoint
- How to check
- Run Get-SPFarm | Select BuildVersion in the SharePoint Management Shell and compare against the patched build number in the advisory.
- Included because
- authenticated RCE; network-accessible; common enterprise product; CVSS 8.0
- Action
- Download and install the security update CU for your SharePoint version, then run the SharePoint Products Configuration Wizard on each server in the farm.
- Why it matters
- Any authenticated user could run arbitrary code on your SharePoint server, which typically has access to sensitive documents and internal data.
- Source
- Microsoft Security Advisory
Evidence trail
- NVD: View source
CVE-2018-25434
NVDWP AutoSuggest 0.24 has an unauthenticated SQL injection bug in its autosuggest.php file. An attacker can send a crafted GET request with a malicious wpas_keys parameter and pull data straight out of your WordPress database, including posts, user tables, and anything else stored there. No login required.
- Affected estate
- WordPress site owners or developers running the WP AutoSuggest plugin version 0.24
- How to check
- Check wp-content/plugins/wp-autosuggest/ for the plugin directory, or run: wp plugin list --status=active | grep autosuggest in WP-CLI.
- Included because
- unauthenticated; internet-facing; SQL injection; no patch available from maintainer
- Action
- Deactivate and delete the plugin. Review database logs and wp_users table for unauthorized access or new admin accounts.
- Why it matters
- Unauthenticated SQL injection against an internet-facing endpoint means anyone can dump your entire WordPress database, including credentials and private content.
Evidence trail
- NVD: View source
CVE-2026-37227
NVDFlexRIC v2.0.0's near-RT RIC process crashes when it receives certain valid but unimplemented E2AP message types. The message passes the whitelist check, but the handler calls assert(0) unconditionally, killing the process with SIGABRT. A remote unauthenticated attacker can take down the RIC by sending a single crafted E2AP PDU to port 36421.
- Affected estate
- Telecom engineers and researchers running FlexRIC v2.0.0 near-RT RIC in lab or production O-RAN environments
- How to check
- Confirm the FlexRIC version from source or package metadata, and verify whether port 36421 is exposed to untrusted networks using netstat or ss.
- Included because
- unauthenticated; remote crash; denial of service; CVSS 7.5
- Action
- Apply firewall rules to restrict port 36421 to known E2 node IPs. Upgrade FlexRIC when a patched release is published.
- Why it matters
- A single unauthenticated packet can crash your RIC process, disrupting near-real-time radio resource management.
Evidence trail
- NVD: View source
CVE-2026-37222
NVDFlexRIC v2.0.0 crashes when it receives an E2AP message with more Information Elements than it expects. The code uses hardcoded assertions on exact IE counts instead of checking valid ranges, so a legitimate-looking PDU with extra optional fields triggers SIGABRT. This affects both the near-RT RIC (port 36421) and iApp (port 36422), and requires no authentication.
- Affected estate
- Telecom engineers and researchers running FlexRIC v2.0.0 near-RT RIC or iApp components in O-RAN deployments
- How to check
- Verify FlexRIC version and check whether ports 36421 and 36422 accept connections from untrusted sources.
- Included because
- unauthenticated; remote crash; denial of service; two affected components; CVSS 7.5
- Action
- Firewall ports 36421 and 36422 to permit only known, trusted peers. Monitor for unexpected SIGABRT crashes in RIC and iApp logs.
- Why it matters
- Unauthenticated remote crash of both the RIC and iApp processes can disrupt real-time radio network control functions.
Evidence trail
- NVD: View source
CVE-2026-1784
NVDOpenShift's Route resource doesn't properly validate the spec.path field, letting an attacker inject arbitrary HAProxy configuration. If someone can create or modify Route objects in your cluster, they can tamper with the router's behavior, potentially intercepting or redirecting traffic for other routes. This is a high-impact bug because HAProxy config injection can affect all traffic flowing through the ingress router.
- Affected estate
- OpenShift cluster admins running affected versions of OpenShift Container Platform with HAProxy-based ingress routers
- How to check
- Run: oc get routes --all-namespaces -o json | jq '.items[].spec.path' to look for unusual or suspicious path values. Check your OCP version with: oc version.
- Included because
- config injection; affects shared ingress infrastructure; CVSS 8.8; common enterprise platform
- Action
- Update OpenShift Container Platform to the latest patched release. Audit Route RBAC to ensure only trusted users can create or modify Route resources.
- Why it matters
- HAProxy config injection on the ingress router could let an attacker intercept, redirect, or disrupt traffic across your entire cluster.
- Source
- Red Hat Security Advisory
Evidence trail
- NVD: View source
One email, every Wednesday morning.
SubscribeFrom the field notes
From this beat
Read the rest of the field notes โ