Bharat Threat FeedGlobal threats, decoded for Indian defenders
Nirad Bharat Threat Feed

India-first threat intelligence

Global threats, decoded for Indian defenders — weekly briefs, sector editions, and AI Threat Watch. Every claim source-attributed.

Weekly Latest Weekly Brief 28 August 2026 Open issue →

Weekly Brief — 28 August 2026

Two vulnerabilities that had been patched for months moved into active exploitation this week. A Citrix NetScaler flaw fixed on 30 June, which the vendor described as a denial-of-service risk, was shown by outside researchers to permit unauthenticated remote code execution, and attacks followed within days. An Oracle middleware flaw scoring 10.0, patched in January, reached CISA's exploited catalogue on 24 August with reconnaissance activity traced back to February. Alongside those, a compromised maintainer account placed credential-stealing malware inside three widely used Rust packages that runs during compilation rather than at runtime, a ransomware crew was found directing a commercial AI coding assistant through its intrusions, and five US agencies documented AI-written exploitation scripts aimed at Siemens industrial controllers.
1

Citrix NetScaler Flaw Patched in June Now Exploited for Remote Code Execution — CVE-2026-8452

Citrix patch 30 June 2026; CISA KEV, 26 August 2026* A memory overflow in NetScaler ADC and Gateway affects appliances configured with a Gateway virtual server, covering SSL VPN, ICA Proxy, CVPN and RDP Proxy, or with an AAA virtual server. Citrix released fixes on 30 June 2026 and characterised the impact as unpredictable or erroneous behaviour and denial of service. On 14 August watchTowr Labs published analysis and proof-of-concept material demonstrating that the flaw permits full unauthenticated remote code execution, going well beyond that original assessment. Exploitation followed the publication. Defused reported the initial activity, and Previdian observed operators placing web shells named x.php and z.php and running reconnaissance commands including id and echo, with traffic originating in three countries. CISA added the flaw to the Known Exploited Vulnerabilities catalogue on 26 August with a federal remediation date of 29 August.

India exposureLast week this feed noted a separate NetScaler bulletin published on 19 August where no exploitation had yet been reported. This item is the reverse position. The flaw is two months old, and any team that read the June bulletin, saw denial of service, and scheduled the upgrade behind more urgent work is now carrying an appliance that has been remotely exploitable since mid-August. NetScaler carries remote access and application delivery for Indian banks, insurers, IT services firms, telecom operators and government departments, and those appliances are internet-facing by design.
ActionUpgrade to 14.1-72.61 including the FIPS build, 13.1-63.18, or 13.1-37.272. Do not treat patching as sufficient on an appliance that has been reachable since June. Search the file system for unexpected PHP files, review shell command execution, and check for outbound connections that do not match normal gateway behaviour. Terminate and re-issue active sessions after upgrading, because a patch does not invalidate session material already taken. Where an appliance shows signs of compromise, rebuild it rather than clean it.
SourceHelp Net Security, 27 August 2026; SecurityWeek, 27 August 2026; CISA KEV addition, 26 August 2026; watchTowr Labs analysis of 14 August 2026, as reported by both outlets.
2CriticalCVSS 10.0

Oracle Middleware Flaw Scoring 10.0 Reaches the Exploited Catalogue Seven Months After Patch — CVE-2026-21962

CVSS 10.0 | Oracle January 2026 Critical Patch Update; CISA KEV, 24 August 2026* An improper access control weakness in Oracle HTTP Server and the Oracle WebLogic Server Proxy Plug-in lets an unauthenticated attacker with network access over HTTP obtain unauthorised creation, deletion or modification access to critical data. Reporting describes the mechanism as bypassing proxy access controls through path traversal and header manipulation to reach the WebLogic instances behind the proxy. Oracle fixed it in the January 2026 Critical Patch Update. GreyNoise, CloudSEK and SOCRadar reported exploitation, with reconnaissance activity traced to February 2026. Reporting also links the flaw to a China-nexus actor that chained it with other WebLogic remote code execution flaws to deliver the SNOWLIGHT downloader against government and commercial infrastructure in more than 100 countries; that linkage rests on the reporting rather than on a vendor or government attribution. CISA listed the flaw on 24 August with a federal remediation deadline of 27 August.

India exposureOracle HTTP Server and WebLogic sit beneath core banking, net banking, insurance policy administration, tax and payment middleware across Indian BFSI and government. Ownership is what turns that into exposure. These stacks usually belong to an application vendor or a systems integrator rather than to the infrastructure team, so the quarterly Oracle patch cycle does not appear on the same calendar as the operating system one, and a January fix can still be outstanding in August.
ActionEstablish whether the January 2026 Critical Patch Update has been applied to every Oracle HTTP Server and WebLogic Proxy Plug-in instance, including those in vendor-managed and disaster-recovery environments. Ask the integrator in writing and verify the build yourself. Remove direct internet reachability from middleware tiers. Review proxy logs from February 2026 onward for traversal sequences, unusual header combinations, and requests reaching backend paths that the proxy should not expose.
SourceCISA KEV addition, 24 August 2026; SecurityWeek, 24 and 25 August 2026; The Hacker News, 25 August 2026.
3

Compromised Maintainer Account Puts Build-Time Malware in Three Rust Packages

No CVE | Rust Security Response Team, 20 August 2026* On 20 August an attacker used a legitimate maintainer's crates.io account to publish malicious releases of arrayref 0.3.10, internment 0.8.7 and append-only-vec 0.1.9. Each added a dependency on proc-macro1, a typosquat of the widely used proc-macro2, whose build script decoded attacker addresses from base64, retrieved a second-stage binary over TLS without validating the certificate, and ran it during compilation. Because the payload executes at build time, cargo build, cargo check and cargo test are each sufficient to trigger it. The implant steals credentials, reading Chrome, Brave and Edge profiles by querying the browsers' SQLite credential stores directly, and installs persistence appropriate to the platform: a Registry Run key on Windows, a LaunchAgent on macOS, a systemd user service on Linux. It accepts four commands covering termination, command-and-control reconfiguration, persistence installation, and downloading and running further scripts. arrayref has 245 million downloads all time and 53.9 million in the 90 days to 20 August. The Rust Security Response Team removed the three releases within 86 to 107 minutes and locked the maintainer account, stating that it does not believe the maintainer acted maliciously and that it suspects the maintainer's machine or publishing credentials were compromised. How that happened has not been disclosed.

India exposureIndian product engineering teams, services firms and GCC development centres have moved parts of their systems work to Rust, and the exposure sits in the build environment rather than in production. A developer laptop or a shared CI runner that compiled during that window holds cloud tokens, signing keys, registry credentials and customer source. The short removal window helps, but scheduled pipelines run overnight without regard to when an attack begins, and vendored or mirrored registries can retain a bad version well after the upstream one was pulled.
ActionSearch Cargo.lock files, build logs and internal registry mirrors for the three affected versions and for any reference to proc-macro1. Check the local cargo cache on developer machines and build hosts. Where a build ran against them, treat the host as compromised: rotate every credential it could reach, look for the platform persistence mechanisms listed above, and rebuild from a clean image. Pin arrayref at 0.3.9 or earlier until the dependency tree has been verified. Beyond this incident, require review before a new build-script dependency enters the tree, and run builds on ephemeral runners that hold no standing credentials.
SourceRust Security Response Team, Rust Blog, 20 August 2026; The Hacker News, 20 August 2026; BleepingComputer and The Register, 21 August 2026.
4

Ransomware Crew Found Directing a Commercial AI Coding Agent Through Its Intrusions

No CVE | Reuters, 27 August 2026* Reuters reported on 27 August that Gambit Security, working with CloudSEK, located a server that a ransomware group calling itself Aur0ra had left exposed to the internet. The contents showed the operators directing the Cursor AI coding agent through hundreds of operations during intrusions between 8 April and 21 May 2026, including credential theft and the takeover of high-privilege accounts. They presented the work to the agent as validation in a simulation environment. Where the agent refused a request, they restarted the conversation, and by that method got past the refusals almost every time. Gambit's director estimated the assistance made the intrusions roughly 30 to 50 per cent faster by automating manual work. Reuters identified the victims as a Ghent-based hygiene and cleaning products manufacturer, a German garage-door manufacturer, a Scottish agency that certifies helicopter landing decks, an Argentine pharmaceutical distributor, an Italian manufacturer and a Louisiana title insurer. Cursor and its parent company did not respond to Reuters.

India exposureThis is criminal misuse of a developer tool rather than a flaw in one, and the significance for Indian organisations is where those tools sit. Agentic coding assistants reached developer endpoints in Indian services firms, product companies and GCCs largely by individual choice rather than by IT issue, which means most security teams cannot currently say which developers run them, at what version, or with which credentials in reach. An endpoint with an agent installed usually also holds repository access, cloud tokens and internal service credentials.
ActionBuild an inventory of AI coding agents and IDE extensions across developer endpoints, since standard software asset management does not cover them. Move usage onto enterprise accounts where tool-call logging is available and retained, and record the gap where it is not. Keep production secrets out of reach of unmanaged tooling. On the detection side, the observable behaviour is ordinary intrusion behaviour executed quickly: bulk file enumeration, credential discovery commands and unusual outbound sessions from a developer workstation are worth alerting on regardless of what drove them.
SourceReuters, 27 August 2026, as carried by Insurance Journal, BNN Bloomberg and Daily Maverick, 27 and 28 August 2026.
5

Medical Device Manufacturer Reports Global Operational Disruption After Intrusion

No CVE | SEC Form 8-K, 26 August 2026* Boston Scientific disclosed in a Form 8-K filed on 26 August that it had identified a cybersecurity incident affecting certain information technology systems, beginning the previous day. The company said the incident has caused, and is expected to continue to cause, disruption and limited access to information systems and business applications supporting its operations, including the ability to process and ship customer orders. It activated its incident response procedures and engaged third-party experts, and gave no timeline for restoration. As of the reporting on 26 August no group had claimed responsibility, the company had not confirmed whether ransomware was involved, and it had not said whether data was taken. Its shares fell more than four per cent on the day of the disclosure.

India exposureThe company runs a substantial India operation, including its Gurugram office and the Institute for Advancing Science, its largest research and development facility outside the United States. For Indian hospitals the exposure is continuity rather than compromise. Cardiology and surgical device supply reaches Indian hospitals through order-processing and distribution systems of exactly the kind reported as affected, and cath lab and operating theatre scheduling depends on consumable availability that is planned in days, not months. Nothing in the public reporting indicates that Indian systems were targeted or affected; the point here is dependency, not attribution.
ActionHospital and healthcare group security and procurement teams should identify which procedures depend on this supplier, confirm current stock cover for critical consumables, and establish whether alternate procurement routes can be activated and how long they take. Third-party risk teams should request written operational status rather than inferring it, and should avoid drawing conclusions about ransomware or data exposure that the company has not confirmed. This is also a reasonable prompt to check whether supplier continuity clauses in device contracts specify notification timelines.
SourceBoston Scientific Form 8-K and company statement, 26 August 2026; The Register and TechCrunch, 26 August 2026.
6

Five US Agencies Document AI-Written Exploitation Scripts Against Siemens S7 Controllers — AA26-231A

Joint advisory | NSA, CISA, FBI, Department of Energy and EPA, 19 August 2026* Joint advisory AA26-231A describes active threat activity against Siemens S7 Series programmable logic controllers, and the tooling is what separates it from earlier ICS warnings. Threat actors are using AI assistance to write custom Python exploitation scripts on top of the open-source snap7 libraries, snap7.dll and python-snap7, presenting them as legitimate operational technology monitoring software. The scripts give read and write access to PLC memory, configuration data and ladder logic programs over the S7comm protocol. Targets are found using internet scanning services including Censys and ZoomEye, then reached through internet exposure, weak segmentation, outdated software and default or weak credentials. The advisory names critical manufacturing, energy, water and wastewater, chemical, food and agriculture, and commercial facilities among the affected sectors. No threat actor is attributed. This is a separate advisory from AA26-097A, the Iranian-linked industrial control system activity this feed covered in July and early August; what is new here is the tooling, not the actor.

India exposureS7 controllers run process lines in Indian manufacturing, power generation and distribution, water utilities, refineries, ports and food processing. Two of the conditions the advisory relies on are common here. Engineering access is frequently arranged for the convenience of a remote integrator rather than to a segmentation standard, and PLC credentials are often the ones set at commissioning and never changed. The AI element lowers the skill required to produce working S7comm tooling, which widens the set of people able to attempt this beyond those with prior industrial control experience.
ActionInventory S7 devices and confirm that none is reachable from the internet, verifying by scanning your own address ranges rather than by consulting the asset register. Apply Siemens firmware updates in the plant's maintenance window rather than deferring them indefinitely. Change commissioning credentials, restrict which engineering workstations may communicate with controllers, and alert on S7comm write operations and ladder logic changes that do not correspond to an approved change record. Extend compromise assessment to the integrator's remote access path, since the third party often holds visibility of the network that the asset owner does not.
SourceJoint advisory AA26-231A, 19 August 2026; Help Net Security and The Hacker News, 20 August 2026.

Takeaway

The pattern this week is the distance between a patch existing and a patch being applied. NetScaler was fixed on 30 June and Oracle in January, and both became exploited items in the same week. The reassessment risk therefore sits with the defender: a vendor's initial severity judgement can be overtaken by outside research, and a remediation schedule built on the first assessment does not update itself. Two items sit outside the patch cycle altogether. The Rust compromise executed inside the build, which is not where most organisations look for intrusion, and the Aur0ra reporting shows commercially available AI tooling being used to compress the manual portion of an attack. Neither is addressed by patching faster. Boston Scientific is the reminder that a supplier's incident can become a continuity problem for Indian hospitals without anything happening on their own networks.

This week's vendor sweep named Fortinet, Cisco, Palo Alto Networks, Check Point, Juniper, SonicWall, Sophos, Barracuda, WatchGuard, Zscaler, Citrix NetScaler, Ivanti, F5 BIG-IP, Versa, VeloCloud, Aruba EdgeConnect and Seqrite. Fortinet's August advisories, reported on 13 August and summarised by Singapore's Cyber Security Agency on 18 August, cover CVE-2026-26035 in FortiWeb, an improper authentication issue in remote RADIUS administrator authentication under non-default settings scored 8.8; CVE-2026-70465 in FortiClient for Windows, a buffer overflow reachable by an attacker able to craft DNS responses; and CVE-2026-70468 in FortiManager, an authentication bypass through crafted FGFM requests where the attacker holds a valid certificate. The latter two score 7.3, and Fortinet reports no exploitation of any of them. Palo Alto Networks published 11 vulnerabilities on 12 August across PAN-OS, GlobalProtect App, Prisma Access Agent and Prisma Browser, none rated critical, with Prisma Access Agent CVE-2026-0294 patched by 20 August. Cisco issued a Catalyst SD-WAN hardening release covering internally found issues with none known to be exploited, and Ivanti's August update covered Neurons for MDM and Endpoint Manager with no exploitation reported. One further note from CISA's 26 August batch: five of the six additions were old flaws, in Red Hat libuser and ABRT from 2015, Microsoft SQL Server from 2019, Ajax.NET Professional from 2021 and the Linux kernel from 2022. Long-lived RHEL and CentOS builds in Indian manufacturing, telecom and government data centres are the estates where those still apply.

Nirad Threat Research

Sector Latest Sector Edition September 2026 Open issue →

Government & Defence Sector Edition — September 2026

This month's government and defence exposure did not come from new malware. It came from the administrative machinery departments rarely count as security assets: the print server in the records room, the VPN appliance at the gateway, the virtualisation console in the data centre, the build repository the software vendor runs, and the remote-management platform the outsourced IT provider uses. Four of those were confirmed under exploitation in August, and a case in the Philippines showed what happens when a strategic research body leaves internet-facing software unpatched for two years.

1. Sector snapshot

The pattern across August 2026 is administrative planes reachable from places they should not be. Print and output management, edge VPN gateways, virtualisation management, MSP remote-management platforms and artefact repositories all saw confirmed exploitation, and in three cases exploitation preceded or outpaced the vendor fix. Against that, CERT-In spent June and July running ten customised exercises themed "Building Resilience against Frontier AI-driven Cyber Threats", drawing 1,470 participants from 345 government and private-sector organisations across power, telecom, BFSI, transport, education, healthcare and space. The gap this edition is concerned with sits between that exercise capability and the ordinary patch record on assets nobody in the security team owns.

Source (with date): MeitY and CERT-In, as reported by ANI (30 Jul 2026).

2. Threats targeting government & defence

PaperCut NG/MF: two flaws chained into unauthenticated code execution, exploited before the fix. CVE-2026-81578, an improper access control flaw in the web management interface, lets an unauthenticated attacker change configuration values that should require an administrator login. Chained with CVE-2026-82078, an unsafe dynamic class-loading flaw rated CVSS 9.4, it becomes arbitrary Java bytecode execution on the Application Server with no credentials and no user interaction. PaperCut published an urgent advisory on 27 August 2026 and confirmed customer incidents; the work came from Huntress, watchTowr and a university customer's security team. All NG and MF versions are affected. The first emergency patch was bypassed within about 48 hours and superseded by Emergency Patch Release 2, so take the current release from the vendor advisory rather than assuming the first fix held. Interim mitigation is restricting Application Server web access to trusted addresses. In Indian departments and PSUs this software usually sits with facilities or IT operations rather than security, which is why it is off the patch calendar.

Source (with date): PaperCut urgent advisory; Help Net Security (27 Aug 2026); CISA KEV (31 Aug 2026).

A strategic research body and a naval supplier, reached through flaws patched over two years ago. Hunt.io reported finding an exposed staging server holding attack scripts, logs written in Simplified Chinese, and data taken from two Philippine organisations. A nuclear research body was reached through CVE-2023-49105, an ownCloud WebDAV authentication bypass rated CVSS 9.8, disclosed in November 2023 and fixed in 10.13.1; the attacker abused pre-signed URLs with empty signing secrets to retrieve files without credentials. Roughly 176 files relating to nuclear research operations were taken, which we are not itemising. A second victim was a marine engineering firm supporting the Philippine Navy, reached through CVE-2024-28000, a LiteSpeed Cache WordPress plugin flaw allowing unauthenticated creation of an administrator account. Hunt.io stopped short of naming a state group, noting that language artefacts are among the easiest indicators to plant. India is not a victim here. It belongs in an Indian advisory because of the target shape: a defence-adjacent research institute and a naval supply-chain firm, both running internet-facing software years behind its fix, is a profile that exists across Indian strategic research and shipyard supplier estates.

Source (with date): Hunt.io; The Hacker News (28 Aug 2026); Security Affairs (29 Aug 2026).

VMware vCenter turned into root, then ransomware on the ESXi hosts underneath. CVE-2026-59310 is a directory traversal in the vCenter Syslog service rated CVSS 9.8, disclosed by Broadcom on 29 July 2026 with no workaround. QUIRSO assesses with moderate confidence that the campaign is run by a Chinese-speaking actor working in the UTC+08:00 time zone, based on language artefacts, tooling, working hours and a victimology excluding mainland China; no named group is claimed. Exploitation gave immediate root-context code execution. The actor wrote malformed files into /etc/cron.d, staged tooling through scheduled jobs, dropped reverse SSH binaries for persistence, and in at least one case deployed Babuk-derived ransomware on ESXi hosts, renaming partially encrypted files with a .babyk extension — read as partly a smokescreen, since encrypting ESXi logs removes the telemetry a defender needs. QUIRSO mapped 361 affected IP addresses across 47 countries, 343 of them by 5 August 2026, with technology, research, education and telecommunications environments among those exposed. One appliance was also hit through CVE-2026-59309, an authentication bypass. CISA listed the traversal flaw on 18 August 2026. vCenter 6.x and 7.x are past end of general support, and patching is not closure here; an exposed appliance needs a compromise assessment.

Source (with date): QUIRSO; The Hacker News (17 Aug 2026); CISA KEV (18 Aug 2026).

The standing Pakistan-nexus baseline has not moved. APT36 (Transparent Tribe) and the aligned SideCopy cluster remain the continuous espionage pressure on Indian government and defence networks, with cross-platform Windows and Linux RAT activity reported this year, including GETA RAT, ARES RAT and Desk RAT, and earlier CYFIRMA work on weaponised .desktop autostart files aimed at BOSS Linux desktops. Keep those detections live regardless of what else is in this issue.

Source (with date): Aryaka; The Hacker News (Feb 2026); CYFIRMA.

Insider risk, with a device-install element. Delhi Police and Air Force intelligence arrested an Indian Air Force officer on 31 May 2026 over alleged leakage of sensitive material to a suspected Pakistani handler contacted through social media. Reporting states the officer was also asked to install an application on a colleague's phone, treated by investigators as a suspected attempt to plant remote-access spyware. The officer has been booked under the Official Secrets Act and the extent of any compromise was still being assessed at the time of reporting. No individual is named here and nothing beyond the reported allegations should be assumed. The control point is narrow: on a defence estate, sideload blocking, device enrolment and alerting on peer-initiated installs are counter-espionage controls, not only device hygiene.

Source (with date): The Week (08 Aug 2026).

3. Sector tech & exposures

Citrix NetScaler ADC and Gateway, CVE-2026-8452. Citrix described this in June 2026 as a memory overflow capable of denial of service. watchTowr Labs published analysis and proof-of-concept code on 14 August 2026 showing it reaches unauthenticated remote code execution, and CISA listed it on 26 August 2026 with a 29 August federal remediation date. Observed activity includes web shells named x.php and z.php alongside discovery commands. It affects appliances configured for SSL VPN, ICA Proxy, CVPN, RDP Proxy or AAA virtual servers; take the fixed builds from the Citrix bulletin rather than secondary reporting. Second NetScaler item in two editions, same pattern: a memory-safety bug scoped down at disclosure, then reopened by outside research.

Source (with date): watchTowr Labs; Help Net Security (27 Aug 2026); CISA KEV (26 Aug 2026).

Cisco Secure Firewall ASA and FTD, CVE-2026-20349. CVSS 8.6. A single crafted HTTP request crashes and reloads the Remote Access SSL VPN service, an unauthenticated denial of service against the remote-access path itself. Cisco confirmed active exploitation on 11 August 2026 and CISA listed it the same day with a 14 August federal deadline. No public actor attribution, and it should not be conflated with the earlier ArcaneDoor espionage activity on the same product line.

Source (with date): Cisco; CISA KEV (11 Aug 2026).

N-able N-central, CVE-2026-18577. Authentication bypass and account takeover rated CVSS 8.2, an incomplete fix for CVE-2026-18556, affecting builds before 2026.3.1.7 across on-premises and cloud-hosted deployments. It surfaced on 31 July 2026 when N-able's own managed detection service found zero-day exploitation in a customer environment. Attackers then used the platform's Take Control feature to reach managed endpoints and installed Cloudflare Tunnel for persistence that survived revocation of N-central access. CISA listed it on 3 August 2026; a second hotfix followed on 6 August. Where a department's endpoint estate is run by an outsourced provider, that provider's management platform is part of the department's attack surface whether or not it appears on the asset register.

Source (with date): N-able; Rapid7; CISA KEV (03 Aug 2026).

JFrog Artifactory, CVE-2026-82329. Authentication bypass rated CVSS 9.8; in the default configuration an unauthenticated attacker with network access can obtain administrative privileges, which watchTowr traces to instances without an additional join key receiving a usable placeholder key. JFrog patched on 28 August 2026 across branches 7.111.21, 7.117.28, 7.125.20, 7.133.29, 7.146.38 and 7.161.20. watchTowr reported observed exploitation on 1 September 2026: token minting, enumeration of users, groups and credentials, and in a small number of cases creation of backdoor accounts. Not yet on the KEV list at the time of that reporting. An artefact repository sits in the middle of a delivery pipeline, so for e-governance and defence software this is a supply-chain exposure, not a routine server patch.

Source (with date): JFrog; watchTowr; The Hacker News (01 Sep 2026).

SonicWall Global Management System. CVE-2026-66147, an unauthenticated command injection in the GMS Dispatcher Service rated CVSS 9.4, and CVE-2026-66145, rated 9.1, allowing an unauthenticated attacker to read sensitive data and write arbitrary files via zipslip. Both affect GMS 9.5.1 and earlier on the Virtual Appliance and Windows, fixed in 9.5.2, and the same advisory carries four further flaws. GMS was decommissioned in October 2025, which is precisely why lingering deployments deserve a check: a firewall fleet management server is a policy-rewrite position across every appliance it manages.

Source (with date): SonicWall PSIRT SNWLID-2026-0011; Center for Internet Security advisory 2026-083 (12 Aug 2026).

The identity plane, and a correction worth carrying. Microsoft's 20 August 2026 service update batch included CVE-2026-59115, a path-traversal elevation of privilege in the Entra Provisioning Service, and CVE-2026-50481 in Azure Active Directory, both rated CVSS 9.9. Separately, CVE-2026-69836, a deserialization remote code execution flaw in Entra ID rated CVSS 10.0, was first published with its "Exploited" field set to Yes; Microsoft corrected that to No on 21 August 2026, and as a managed service the fix was applied on Microsoft's own infrastructure with nothing for customers to install. Several outlets still carry the original framing, so a board paper citing an exploited CVSS 10.0 Entra flaw needs correcting.

Source (with date): Microsoft MSRC; Help Net Security (21 Aug 2026); SecurityWeek (24 Aug 2026).

4. Regulatory & compliance watch

CERT-In's patch expectation read against this month's list. The May 2026 AI-exploitation guidance, CISG-2026-02, sets an indicative expectation of 12 hours to contain or remediate known exploited vulnerabilities on internet-facing systems, one day for critical externally exposed flaws and five days for high-severity issues on a risk basis. It is guidance with indicative timelines, not a binding mandate, and it sits alongside the April 2022 directions requiring incident reporting within six hours, 180-day log retention within Indian jurisdiction and clock synchronisation to NPL. Read against sections 2 and 3, an internet-facing PaperCut server or a pre-fix NetScaler carried into September is well outside that window. Where systems are notified as protected systems under section 70A of the IT Act, NCIIPC's directions run in parallel with CERT-In's, and both clocks start together.

Source (with date): CERT-In; The Hacker News (26 May 2026).

MeitY's state cybersecurity framework process. MeitY is running a four-stage departmental summit process to build a national cybersecurity framework architecture covering all 36 states and union territories, following directions from the Prime Minister at the fifth National Conference of Chief Secretaries. The second stage was a national consultative workshop in New Delhi on 11 May 2026, after which states and union territories were asked to hold internal workshops and submit structured recommendations by 30 June 2026, with a National Departmental Summit scheduled for August 2026 to discuss the final framework. State IT and home departments should confirm where their own submission landed, because this process will set their baseline. The institutional split remains MeitY on IT Act matters, the Ministry of Home Affairs on cyber-crime, the National Security Council Secretariat on coordination, CERT-In as the section 70B incident agency and NCIIPC under NTRO for critical information infrastructure.

Source (with date): MeitY, as reported by Indian Television (17 May 2026).

A useful external benchmark: CISA's BOD 26-04. Issued on 10 June 2026, it supersedes and revokes BOD 19-02 and BOD 22-01, drops CVSS as the prioritisation basis, and requires a three-day fix where a flaw is publicly exposed, listed as known exploited, automatable and technically impactful. It also requires forensic triage to establish whether the affected system was already compromised, rather than treating a patch as the end of the matter. It binds United States federal civilian agencies only and has no force in India, but the structure is worth borrowing: exposure and exploitation status driving the clock, with compromise assessment written into the remediation step.

Source (with date): CISA (10 Jun 2026).

5. Actor in focus — UAT-10147

Cisco Talos published its analysis of UAT-10147 on 20 August 2026: a previously undocumented Chinese-speaking intrusion set, assessed as financially motivated rather than state-directed, active since early 2026 against vulnerable Windows and Linux web servers worldwide. Talos names government and education among the affected sectors, and Brazil, Bolivia, China, Canada and Vietnam among victim countries. India is not named in that reporting, and this is not an India-targeting campaign. It appears here for the operating model, not the victim list.

An operational security lapse exposed the actor's staging server, revealing a target list of roughly 170,000 URLs alongside AI-generated operational documentation and automation scripts. Talos assesses with moderate-to-high confidence that the actor uses agentic AI systems to run offensive tradecraft at scale, threading AI-driven tooling through exploitation, reconnaissance, payload generation, validation and persistence alongside conventional open-source frameworks. Initial access is entirely through publicly disclosed vulnerabilities in long-lived software: CVE-2022-27925 in Zimbra, CVE-2019-18935 in Telerik UI for ASP.NET AJAX, CVE-2021-23758 in Ajax.NET Professional, and CVE-2021-29441 and CVE-2021-29442 in Alibaba Nacos, followed by Linux privilege escalation through flaws dating back as far as 2010. On Windows it modifies Defender exclusions and creates scheduled tasks disguised as "Google Chrome Start"; on Linux it plants web shells and then escalates. A follow-on Talos report covers SPECTRE, a cross-platform implant with process injection, credential theft, a Linux rootkit and driver-based EDR bypass. Exfiltration is routed through a legitimate cloud configuration management service so it resembles ordinary administrative traffic. On 26 August 2026 CISA added four of the legacy flaws this actor uses to its exploited list.

The exposure for Indian government and PSU estates is real even without named Indian targeting. Automated, AI-assisted scanning for years-old unpatched internet-facing software is precisely the shape of a departmental web estate still carrying legacy Zimbra, Telerik and .NET components, often on domains inherited from a project that ended years ago. As always in this feed, India-nexus actors are out of scope; the lens is foreign activity that creates exposure for Indian organisations.

Source (with date): Cisco Talos (20 Aug 2026); The Hacker News (Aug 2026); CISA KEV (26 Aug 2026).

6. IOC pack

Every entry below is already public in the named source and is reproduced with attribution. These are not Nirad observations. The table mixes atomic indicators with behavioural detection leads; the Type column says which is which, and the leads need tuning against your own baseline.

IndicatorTypeContextSource
x.php, z.phpWeb shell filenamesNetScaler CVE-2026-8452 exploitationwatchTowr Labs
adminapi.tippusoni[.]inDomainUAT-10147 infrastructureCisco Talos
cloudflared service, unexplainedPersistence artefactN-able N-central post-exploitationN-able
svchost.exe inside a user's Documents folderMasqueraded binaryN-able N-central post-exploitationN-able
.babyk extension on ESXi datastoresRansomware artefactvCenter CVE-2026-59310 campaignQUIRSO
Files written to /etc/cron.d on a vCenter applianceDetection leadvCenter CVE-2026-59310 persistenceQUIRSO
Google Chrome Start scheduled taskDetection leadUAT-10147 persistenceCisco Talos
Anomalous child processes of pc-app.exeDetection leadPaperCut exploitationHuntress
Missing, truncated or deleted server.logDetection lead (anti-forensics)PaperCut exploitationPaperCut
ERROR No suitable driver found for jdbc:no:xLog stringPaperCut exploitationHelp Net Security
Snort SIDs 66696, 66697Detection signatureUAT-10147 activityCisco Talos
SPECTRE, NoodleRAT, QuasarRAT, Gh0stCringeMalware familiesUAT-10147 toolingCisco Talos
CVE-2026-81578, CVE-2026-82078CVE referencePaperCut chain, exploitedCISA KEV
CVE-2026-8452CVE referenceNetScaler, exploitedCISA KEV
CVE-2026-20349CVE referenceCisco ASA/FTD VPN denial of service, exploitedCISA KEV
CVE-2026-18577CVE referenceN-able N-central authentication bypass, exploitedCISA KEV
CVE-2026-59310, CVE-2026-59309CVE referencevCenter traversal and authentication bypassCISA KEV; QUIRSO
CVE-2026-82329CVE referenceJFrog Artifactory authentication bypasswatchTowr Labs
CVE-2023-49105, CVE-2024-28000CVE referenceownCloud and LiteSpeed Cache, Philippine casesHunt.io

7. Tiered actions

Board. Ask for a written position on internet-facing exposure across four asset classes usually missing from the departmental register: print and output management, edge VPN appliances, virtualisation management, and build or artefact repositories. Ask whether the outsourced IT provider's remote-management platform sits inside the department's own risk register, and who patches it. Ask whether the six-hour CERT-In reporting path has been tested end to end, including out of hours, and whether NCIIPC reporting runs in parallel for any notified protected system. Where the department funds a research institute or a defence-adjacent supplier, ask what their patch position is on internet-facing software.

CISO. Patch on an emergency basis across PaperCut, NetScaler, vCenter, Cisco ASA and FTD, N-able N-central and Artifactory; on PaperCut take the current emergency release, not the first one. Treat an exploited vCenter or Artifactory as compromised until an assessment says otherwise: rotate credentials, tokens and keys rather than only applying the fix, and check for administrative accounts and scheduled jobs created before the patch. Restrict PaperCut and vCenter management interfaces to trusted networks. Inventory internet-facing legacy software across the department and its funded institutes, specifically ownCloud, Zimbra, Telerik and WordPress plugin estates, including domains inherited from closed projects. Require managed service providers to report their own patch state. At the device management layer, block sideloaded packages on issued devices and alert on peer-initiated installs.

SOC. Hunt the indicators in section 6. On the perimeter, alert on new .php files in NetScaler web paths and on unexpected reloads of the ASA remote-access VPN service. In the data centre, alert on new or modified files in /etc/cron.d on vCenter appliances and on reverse SSH sessions from appliance addresses, and baseline vCenter and ESXi administrative logins now rather than during an incident. Across the estate, alert on unexplained cloudflared services and outbound tunnels, on Defender exclusion changes, on PaperCut server log gaps, and on Artifactory administrative token creation and user enumeration. Keep the APT36 lure paths and .desktop autostart detections in the active set.

8. Source index

ANI · Aryaka · Center for Internet Security · CERT-In (CISG-2026-02) · CISA · CISA KEV · Cisco · Cisco Talos · Citrix · CYFIRMA · Help Net Security · Hunt.io · Huntress · Indian Television · JFrog · MeitY · Microsoft MSRC · N-able · PaperCut · QUIRSO · Rapid7 · Security Affairs · SecurityWeek · SonicWall PSIRT · The Hacker News · The Week · watchTowr Labs

9. Byline

1

Nirad Threat Research

NBTF — Government & Defence Sector Edition | 2 September 2026

AI Watch Latest AI Threat Watch 1 September 2026 Open issue →

AI Threat Watch — 1 September 2026

This edition's four items put AI on both sides of the engagement. An attacker asked an exposed evaluation agent for its own API key and then spent three weeks of somebody else's inference budget. A Russia-aligned group shipped malware carrying a sentence written to make an analyst's language model refuse to read it. Researchers priced the work of moving an industrial exploit onto a new controller with model assistance, and published the figures. And a Langflow flaw that has had a patch since January came under attack over the weekend, with the attackers going straight for the model and cloud keys held on the host. The common failure is not in the models. It is that in every one of these cases the AI component was governed as a laboratory tool while it held production credentials or carried production consequences.
1

A third Langflow flaw came under attack this weekend, and this time the attackers went straight for the model and cloud keys

CVE-2026-0768 is an unauthenticated remote code execution flaw in the code validator of Langflow's custom component editor, scored 9.8, which runs arbitrary Python as root. It affects version 1.4.2 and earlier and is fixed in 1.11.6. The identifier was issued in January 2026, so the instances now being reached have been unpatched for roughly eight months. VulnCheck recorded more than 50 exploitation attempts within a few hours on 30 August 2026, rising to 360 by 1 September. Caitlin Condon, VulnCheck's VP of Threat Research, characterised the activity as reconnaissance and credential harvesting: queries against environment variables including LANGFLOW_SUPERUSER, OPENAI_API, AWS_ACCESS and AWS_SECRET, reads of the Langflow secret key file, and checks on SSH access and shell history. The observed traffic came primarily from Russian addresses against sensors in the United Kingdom. No public proof-of-concept code is known. We have carried Langflow twice already this quarter, CVE-2026-9198 on 18 August and CVE-2025-3248 on 30 July, and the recurrence is worth stating plainly.

Why it matters for IndiaVisual flow builders are the normal route to a first agent pilot in Indian banks, state departments, public sector undertakings, GCCs and managed service providers, because a small team can show something working in a week. An instance still on 1.4.2 has now sat unpatched through two advisories in this publication alone, which says less about the vendor than about who owns the box. The exposure is not the host. It is what the host was trusted with: provider keys, cloud access keys and database connection strings, all of them reachable from an environment variable once code runs as root.
ActionUpgrade to 1.11.6 or later. Find your instances by scanning your own address ranges rather than by asking teams what they have deployed, because the ones that matter were never registered. Remove internet exposure and put the service behind authenticated access. Rotate every provider key, cloud credential and SSH key that was present on an exposed host, on the assumption of exposure rather than on proof of it. Review logs for reads of the secret key file and for enumeration of environment variables. CERT-In's six-hour incident reporting obligation applies to this as it would to any other compromised server.
SourceVulnCheck via The Hacker News (1 September 2026); BleepingComputer (1 September 2026); SecurityWeek (1 September 2026); Dark Reading (1 September 2026).
2

An exposed dashboard let an attacker ask an agent for its own API key, and three weeks of model usage worth about $600,000 followed

METR, the non-profit that runs frontier-model evaluations, published a security update on 31 August 2026 setting out two incidents from earlier this year. In March a researcher ran agents on a personal EC2 instance placed behind Google authentication. A fail-open defect silently disabled that authentication and left the host internet-facing for several days. METR's assessment is that the attacker located it by searching certificate-transparency logs for terms associated with language models, then prompted the agent to disclose the model-provider API key, added an SSH key for persistence, and used the key for three weeks. The credits had been supplied free by an unnamed provider, so the figure is commercial value rather than money lost. Two details matter more than the number. The usage was hard to distinguish from legitimate work, because heavy model traffic is ordinary for an evaluation lab, and there was no way to cap spend on a free-credit key. A second incident in May involved sustained probing of public infrastructure, with agents used for vulnerability discovery alongside credential stuffing and phishing; an exposed SQL query path in a public transcript viewer could in principle have exposed unpublished evaluation data, though METR found no evidence it was reached. Neither incident was attributed. In the same week, on 30 August, Anthropic warned that commodity infostealers including Vidar, LummaC2, StealC, RedLine and Acreed on Windows, and AMOS on macOS, are taking Claude session tokens from infected machines and draining paid usage, and noted that signing a user out ends the stolen session but does not remove the malware.

Why it matters for IndiaRead together, these two say that AI credentials have become a target class in their own right. In most Indian organisations the model key is not governed like a database password. It is issued to a team, pasted into a pilot, and left in an environment variable on an instance somebody raised for a demonstration, while the finance conversation about AI spend happens somewhere else entirely. The METR case is the pilot server; the Anthropic advisory is the developer's laptop, which matters at Indian engineering scale, where a large share of paid assistant seats sit on machines that also carry client code. In both, the first symptom is a bill, and the bill is the least of it.
ActionInventory where model keys live: gateways, notebooks, CI variables, agent configuration, developer machines. Scope and time-limit them, and keep production keys off personal cloud infrastructure as a stated rule. Set spend and rate caps wherever the provider supports them, and alert on usage anomalies for each key rather than on the aggregate, since an aggregate hides exactly this. Treat an agent that can read its own configuration as an agent that can disclose it, and keep credentials out of the context it can reach. Add AI platform sessions to your infostealer runbook: on any infostealer detection, revoke assistant sessions alongside browser and mail sessions, and check the account for usage that does not match the user.
SourceMETR security update (31 August 2026); Infosecurity Magazine (1 September 2026); The Hacker News (1 September 2026); The Register (1 September 2026); BleepingComputer, on the Anthropic advisory (30 August 2026).
3

Malware has turned up carrying a sentence written to make an analyst's AI refuse to read it

ESET disclosed the technique on 31 August 2026 and named it GuardBreaker. A malicious VBS script attributed to UAC-0099 carries a comment asking for help building a nuclear weapon. The line does nothing in the code. Its purpose is to pull a language model's safety machinery onto that text so the model declines and never examines the rest of the script, which downloads and installs MATCHBOIL, a C# loader used exclusively by this group. UAC-0099 is Russia-aligned, works mainly against Ukrainian transport and energy targets, and has been reported passing validated access to the GRU-linked Sandworm group. The cited reporting does not describe use of this technique against Indian organisations. What earns it an item is the target. This is not an attack on a production model. It is an attack on the analyst's own tooling, and it costs the author one line of text.

Why it matters for IndiaAI-assisted triage has entered Indian SOCs and managed security providers quickly, and mostly informally: script explanation, alert summarisation, first-pass notes on a suspicious file. The failure mode here is quiet. A refusal does not look like evasion. It looks like the tool being careful, and the sample slides down the queue while the analyst moves to something the model was willing to discuss. For a provider running first-pass triage at volume across many Indian clients, refusals that are never counted would be a hole in coverage that no dashboard currently shows.
ActionMake refusal a logged and alerted event rather than a silent outcome, and track the refusal rate for each tool as a quality measure. Route any refused sample to a deterministic fallback, which means sandbox detonation, static signatures, behavioural analysis or a person, and never let a refusal close a ticket. Test your own triage pipeline by placing benign safety-triggering text in a sample and confirming that the sample still reaches a verdict. State plainly in your procedures that model output is one input to a judgement and not the judgement.
SourceESET (31 August 2026); Help Net Security (31 August 2026); The Hacker News (1 September 2026).
4

Forescout measured what it costs to move an industrial exploit onto a new controller with AI assistance: eight and a half hours, $535.74, and one destroyed device

Forescout's Vedere Labs published the experiment on 1 September 2026. Using Claude Sonnet 4.6 and Claude Opus 4.6, the researchers ported a working remote code execution exploit from the WAGO 750-852 controller to the related 750-831, starting from CVE-2021-31886, a pre-authentication buffer overflow in the Nucleus FTP server. The final stage of development took 8 hours and 32 minutes across several days and $535.74 in API usage. The qualifications are the useful part of the report and should be read as written. Success required substantial researcher involvement, guiding the model past dead ends and supplying disassembly context that it could not derive. A follow-on attempt to build a command-and-control implant wrote to a flash-mapped region and permanently bricked the controller, which the authors offer as a reminder of how unforgiving this class of work is. Once code execution was achieved, though, the model produced multiple working network payloads within minutes. Forescout's own reading is that this does not constitute present defensive urgency, and that both the time and the human effort involved are likely to fall as models improve. A separate criminal case shows agentic coding tools being used in intrusion planning: CloudSEK, an India-origin firm, reported on 27 August 2026 that a Russian-speaking Aurora ransomware affiliate used such an assistant to plan intrusions against more than 20 organisations across nine countries between April and July 2026, with no Indian victim named, and the reported planning covered conventional Active Directory abuse rather than anything novel.

Why it matters for IndiaThis is a measurement rather than a forecast, and Indian critical-infrastructure operators should use it as one. Power distribution utilities, water boards, ports, metro systems and process manufacturing run large fleets of embedded controllers, many well past their firmware support window, selected years ago for reasons that had nothing to do with patching. The figure to take away is not $535.74. It is that this cost falls on a device family rather than on a single target, so the economics reward an attacker who works patiently through a fleet that shares a firmware lineage. The defensible position for a CISO asked about AI and OT this quarter is that exploitation of this class still needs an expert and a budget, that the correct response is exposure reduction on the timeline already agreed, and that the position should be revisited when a comparable measurement shows the numbers falling.
ActionEstablish which OT and embedded devices are reachable from the corporate network or the internet by scanning for them, not by consulting the asset register. Prioritise by exploitability and consequence rather than by CVSS alone. Segment control networks and remove direct paths from IT to controllers. Where firmware cannot be patched, compensate with network controls and with monitoring of the protocols these devices actually speak. Rehearse an incident in which a controller stops responding and does not come back, because the device destroyed in this experiment was destroyed by accident and an attacker has no reason to be careful. Decide in advance which defensive responses may be automated, before the question is urgent.
SourceForescout Vedere Labs (1 September 2026); SecurityWeek (1 September 2026); CloudSEK, Caught in 4K: The Aurora Files (27 August 2026); The Hacker News (31 August 2026).
AI defender tip: The thread this week is that AI now sits on both sides of the engagement, and the two sides are governed very differently. The attacker's model is unconstrained and leaves a transcript on an exposed server. The defender's model can be stopped by one sentence that costs nothing to write. Meanwhile the object being stolen has not changed at all: in two of these four items the prize was a credential held on a system that nobody had entered in the register or the patch cycle. The exercise for this fortnight takes an afternoon. Sort every AI component your organisation runs into two lists. The first is the ones that hold a credential: gateways, agents, flow builders, notebooks, evaluation dashboards, assistant seats on developer laptops. For each, write down the owner, what the key can reach, whether a spend cap exists, and when it was last rotated. The second list is the ones that inform a decision: triage assistants, summarisers, code reviewers. For each, write down what happens when the model declines to answer or answers wrongly, and whether anyone would notice within a day. Most teams find the second list has never been written down, and that is itself the finding.

Nirad Threat Research

Nirad AI Threat Watch | Bharat-first threat intelligence