CISA’s warning regarding actively exploited vulnerabilities in IBM Langflow, N-able N-central and Apache Tomcat demonstrates how attackers continue to focus on platforms that provide extensive control over applications, endpoints and infrastructure.
The vulnerabilities affect very different technologies, but each product occupies a highly trusted position within an organization. Langflow can execute artificial-intelligence workflows and connect to cloud services, N-central can remotely administer large numbers of endpoints, and Apache Tomcat hosts business applications and manages sensitive application sessions.
Compromise of any of these systems can therefore provide attackers with access extending far beyond the initially vulnerable service.
CISA added all three vulnerabilities to its Known Exploited Vulnerabilities Catalog after confirming that threat actors were using them in real-world attacks. This changes the security priority substantially. Organizations are no longer dealing with flaws that might eventually be weaponised. Attackers have already demonstrated that exploitation is practical.
Security teams should apply the available updates immediately, but patching should not be considered the complete response. Any affected system that remained exposed before remediation should also be investigated for evidence of compromise.
Critical Langflow flaw allows unauthenticated code execution
The most severe of the three vulnerabilities is CVE-2026-9198, which affects IBM Langflow, an open-source visual platform used to build artificial-intelligence agents and workflows.
The vulnerability carries a critical severity score of 9.8 and allows an unauthenticated attacker to execute arbitrary code on default Langflow deployments.
The attack involves chaining two API endpoints. One endpoint can provide a superuser authentication token through the platform’s automatic-login functionality, while another allows supplied Python code to be validated and executed.
By combining these behaviours, an attacker can move from having no account to obtaining administrative access and running commands on the underlying server.
This is particularly dangerous because exploitation does not require stolen credentials, social engineering or prior access to the environment. A vulnerable Langflow instance exposed to the internet may be compromised through specially crafted requests.
Multiple working proof-of-concept exploits were publicly available before CISA added the vulnerability to the KEV Catalog. Public exploit instructions substantially reduce the technical effort required for attackers to identify and compromise exposed systems.
Langflow servers may hold valuable secrets
Langflow is designed to connect artificial-intelligence models, databases, APIs, vector stores and external applications into executable workflows.
To perform these functions, deployments may store or access model-provider API keys, cloud credentials, database passwords, OAuth tokens, internal service secrets and environment variables.
An attacker obtaining remote code execution may therefore gain considerably more than control of one AI development application.
The compromised server could reveal credentials for AWS, Microsoft Azure, Google Cloud, OpenAI, Anthropic, databases, source-code repositories or internal applications.
Attackers may also inspect existing workflows to understand how the organization processes information and which systems are connected to the platform.
AI orchestration tools are attractive targets because they combine executable code, sensitive data and extensive external connectivity. A compromised Langflow server can become an access point into several otherwise separate services.
Organizations should upgrade to the corrected Langflow release and ensure that administrative and code-execution interfaces are not directly exposed to the public internet.
Access should be restricted through an authenticated gateway, VPN or protected management network. Langflow should also run with minimal operating-system privileges and within an isolated container or workload environment where practical.
Updating Langflow does not invalidate stolen credentials
Installing the corrected version prevents further exploitation through the known vulnerability, but it does not remove credentials or data that an attacker may already have obtained.
Organizations should review the environment variables, configuration files and secret stores accessible to the Langflow service.
Cloud keys, model-provider tokens, database passwords and application secrets should be rotated when successful exploitation cannot be ruled out.
Security teams should examine historical web logs for suspicious access to the automatic-login and code-validation endpoints. Unusual Python execution, newly created files, outbound connections and changes to workflows should also be investigated.
Unknown users, tokens, flows and components should be removed. Active sessions should be revoked, and access logs for connected cloud and database services should be reviewed for activity originating from unfamiliar locations.
Where attackers may have executed operating-system commands, rebuilding the server from a trusted image may be safer than relying solely on an in-place software update.
N-central flaw threatens remote-management infrastructure
The second vulnerability, CVE-2026-18576, affects N-able N-central, a remote monitoring and management platform commonly used by managed service providers and internal IT teams.
The flaw allows an unauthenticated attacker to hijack administrative accounts through an authentication weakness.
N-central is capable of remotely managing endpoints, executing commands, deploying software, modifying services and accessing customer systems. These capabilities make it an efficient administration platform, but they also make compromise particularly damaging.
An attacker controlling N-central does not need to breach every managed device separately. The attacker may be able to use the platform’s existing trusted relationships to distribute commands or tools across multiple endpoints.
This creates significant supply-chain exposure for managed service providers. One compromised N-central deployment may provide access to several customer environments.
Customers may see activity originating from a legitimate N-central agent and assume it was performed by their authorized service provider. Attackers benefit from the trust already placed in the management platform.
Incomplete fixes create continuing risk
The N-central vulnerability followed an earlier attempted correction that did not eliminate every exploitable path.
According to the available information, attackers identified an alternative method for reaching the vulnerable functionality after the original fix was deployed.
This illustrates an important weakness in vulnerability response. Installing a patch does not always mean that the underlying security boundary has been fully restored.
An initial correction may block one request path while leaving another route available. Attackers routinely compare patched and unpatched versions to identify incomplete validation or alternate endpoints.
N-able released an emergency hotfix and advised customers that all N-central versions before 2026.3 were affected.
Administrators should verify that the exact emergency correction recommended by N-able has been installed. A server running a relatively recent release may still remain vulnerable if it does not contain the required hotfix.
Patch status should be confirmed through the installed build number and vendor guidance rather than inferred from the major version alone.
N-central systems require post-compromise investigation
Because the vulnerability is actively exploited, organizations should assume that exposed N-central servers may have been targeted before the update was applied.
Administrators should review all N-central users, administrator roles, API tokens, sessions and authentication settings.
Unexpected administrative accounts, password changes, authentication-method modifications or newly issued tokens should be investigated immediately.
Remote-control sessions and automation activity should be correlated with approved support requests. Any session that cannot be linked to a known technician or maintenance task may represent attacker activity.
The investigation must also include managed endpoints. An attacker may have used N-central to install remote-access software, tunnelling tools, scheduled tasks, scripts or new local administrator accounts.
Patching the N-central server does not remove persistence that was placed on customer or employee devices before remediation.
Managed service providers should determine which customer systems were accessed during the suspected compromise period and notify affected customers where appropriate.
Customers should maintain their own monitoring of RMM activity rather than relying entirely on the provider’s logs. Trusted management software can still perform malicious actions when the management platform itself has been compromised.
Apache Tomcat flaw exposes cluster communications
The third actively exploited vulnerability, CVE-2026-34486, affects Apache Tomcat and carries a high-severity score of 7.5.
The flaw stems from an incomplete fix for CVE-2026-29146 and affects the EncryptInterceptor used to protect communication between Tomcat cluster members.
In clustered Tomcat environments, application sessions and state information may be replicated between servers to support load balancing and high availability.
The EncryptInterceptor is intended to protect this replication traffic. The vulnerability allows attackers to bypass the encryption under affected conditions, potentially exposing sensitive information transmitted between cluster nodes.
Researchers reported that a Chinese-speaking threat actor attempted to exploit the flaw manually against nine Apache Tomcat servers and tried to plant reverse shells.
A reverse shell provides an attacker with an interactive command channel from the compromised server back to attacker-controlled infrastructure.
This observed activity confirms that attackers are not treating the flaw merely as an opportunity to inspect network traffic. They are attempting to use it as part of a broader server-compromise chain.
Tomcat session information may be sensitive
Application-session data can include user identifiers, authorization state, account details, workflow information and session tokens.
If attackers can observe or manipulate unprotected cluster communication, they may be able to hijack authenticated sessions, impersonate users or learn how the hosted application manages access.
The practical impact depends on the application and the information replicated between nodes.
A public website storing minimal session information may present a different risk from an internal administrative portal that replicates privileged authentication state across several servers.
Security teams should therefore examine what data their applications place into Tomcat sessions rather than evaluating the vulnerability only through its numerical severity.
Cluster communication should remain confined to a dedicated, restricted network. Only authorized Tomcat nodes should be able to reach the ports used for replication.
Public-facing servers, ordinary user networks and unrelated workloads should not have access to cluster traffic.
Tomcat administrators must use the corrected branch
Affected administrators should upgrade to the corrected version provided for their Tomcat release branch.
The relevant security update must be confirmed against the exact Tomcat build in use, including instances embedded within commercial products or internal Java applications.
Tomcat is frequently bundled inside other software and may not appear as a separately installed application. Organizations should search application packages, containers and software inventories for embedded deployments.
High-availability clusters must be updated consistently. Leaving one node on a vulnerable build preserves the attack path and may expose information exchanged with patched nodes.
Container images, virtual-machine templates and disaster-recovery systems must also be corrected. Otherwise, vulnerable instances may return during scaling, restoration or failover.
Organizations should verify that cluster encryption is functioning after the update. Testing in a controlled environment can confirm that sensitive replication data is no longer transmitted in readable form.
CISA’s short deadline reflects immediate risk
CISA gave federal agencies only three days to mitigate the vulnerabilities, requiring action by Friday, August 7, 2026.
The accelerated deadline reflects the combination of confirmed exploitation, available fixes and the privileged nature of the affected systems.
Although the directive applies directly to US federal civilian agencies, private organizations should treat the same deadline as a useful indication of urgency.
Attackers do not distinguish between government and commercial systems when scanning for exposed Langflow servers, N-central consoles or Tomcat applications.
Organizations should maintain an emergency remediation process for actively exploited vulnerabilities. The process should allow rapid asset discovery, risk assessment, change approval and deployment outside the ordinary monthly patch cycle.
Systems that cannot be updated immediately should be isolated, removed from public access or disabled until effective mitigation can be applied.
An emergency process that takes longer than the attacker’s scanning campaign is mostly an administrative ceremony.
Asset visibility remains a central challenge
The three vulnerabilities also expose common gaps in asset management.
Langflow may have been deployed by AI or data-science teams without being recorded in the central application inventory.
N-central may be operated by an external managed service provider rather than directly by the organization.
Apache Tomcat may be embedded inside a third-party application and invisible as a separate software package.
Security teams should therefore search beyond ordinary vulnerability scanners.
Cloud inventories, container registries, software bills of materials, network telemetry, procurement records and managed-service agreements may all be required to identify affected deployments.
Organizations should also scan their external attack surface for exposed management interfaces and application services.
A system omitted from the asset database remains vulnerable regardless of how complete the vulnerability-management dashboard appears.
Patching must be followed by verification
After remediation, administrators should verify the actual software version running on every affected system.
A successful update command does not prove that the corrected build is active. Services may have failed to restart, containers may still use an old image, or another cluster node may have been missed.
N-central servers should be checked for the specific emergency hotfix. Langflow instances should be confirmed against the corrected release, and every Tomcat node should be verified individually.
Vulnerability scanners should be run again after deployment, supplemented by manual checks where product identification is unreliable.
Systems that were offline during the patch window should remain tracked until they reconnect and receive the update.
Old virtual-machine snapshots and deployment templates should also be corrected or removed to prevent vulnerable systems from being recreated later.
Active exploitation requires threat hunting
The most important lesson from CISA’s warning is that remediation should include investigation, not merely patch installation.
Langflow systems should be reviewed for suspicious API requests, command execution, credential access and modified workflows.
N-central environments should be examined for unauthorized administrators, remote sessions, scripts and changes made to managed endpoints.
Tomcat servers should be checked for unfamiliar cluster members, abnormal replication traffic, reverse shells, new files and unexpected outbound connections.
Logs should be retained centrally because records stored only on the compromised system may have been altered or deleted.
The investigation should begin before the date of public disclosure. Attackers may have exploited the vulnerabilities earlier as zero-days or shortly after technical details became available.
Potentially exposed credentials must be rotated after containment, and active sessions should be revoked.
Where system integrity cannot be established confidently, rebuilding from a trusted image provides greater assurance than attempting selective cleanup.
The broader cybersecurity lesson
CISA’s warning demonstrates that attackers seek systems capable of multiplying their access.
Langflow connects AI workflows to valuable data and cloud services. N-central provides remote authority over entire fleets of endpoints. Apache Tomcat hosts applications and distributes trusted state between cluster members.
The security value of these platforms comes from their connectivity and control. Those same characteristics amplify the consequences when attackers compromise them.
Organizations should patch all three vulnerabilities immediately, remove unnecessary internet exposure and investigate affected systems for evidence of prior exploitation.
They should also rotate credentials, review administrative activity and examine connected systems for persistence.
The warning further demonstrates why vulnerability management must prioritize evidence of exploitation rather than relying only on CVSS scores.
The Tomcat flaw has a lower numerical severity than the Langflow vulnerability, but attackers have already attempted to use it to establish reverse shells.
A vulnerability being actively exploited against real systems is more urgent than a theoretically severe issue with no known attacker interest.
CISA’s KEV Catalog should therefore function as an operational trigger. When a vulnerability affecting an organization’s assets is added, security teams should immediately begin asset identification, containment, remediation and threat hunting.
The objective is not simply to remove vulnerable software versions. It is to determine whether attackers used those vulnerabilities before the updates arrived and whether they established another route that remains active afterward.
Closing the original doorway is necessary. Confirming that nobody entered through it first is what turns patching into security.
The U.S. Cybersecurity and Infrastructure Security Agency is giving federal agencies three days to mitigate vulnerabilities in IBM Langflow, N-central, and Apache Tomcat, all actively exploited. [...]
Source: CISA warns of hackers exploiting Langflow, N-central, Apache Tomcat flaws via Bleeping Computer — published 05 Aug 2026.
Was this article helpful?
Your feedback helps us improve the knowledge base.