Connect with us
DAPA Banner
DAPA Coin
DAPA
COIN PAYMENT ASSET
PRIVACY · BLOCKDAG · HOMOMORPHIC ENCRYPTION · RUST
ElGamal Encrypted MINE DAPA
🚫 GENESIS SOLD OUT
DAPAPAY COMING

Tech

Microsoft launches MXC, an OS-level sandbox for AI agents, with OpenAI and Nvidia already on board

Published

on

For the past two years, the technology industry has raced to make AI agents more capable — teaching them to write code, navigate software interfaces, manage files, and orchestrate multi-step workflows with increasing autonomy. What the industry has not done, at least not with any consistency, is answer the question that keeps chief information security officers awake at night: what happens when an agent goes wrong?

On Tuesday at its annual Build developer conference, Microsoft offered what may become the definitive answer. The company introduced Microsoft Execution Containers, or MXC — a policy-driven execution layer, built into the Windows operating system itself, that lets developers and IT administrators declare exactly what an AI agent can and cannot access, with those boundaries enforced at runtime by the OS kernel.

The announcement, buried within a sweeping set of developer-focused updates, is arguably the most consequential platform move Microsoft made at Build this year, and it has the potential to reshape how every enterprise on Earth thinks about deploying autonomous AI software.

MXC is not a product you buy. It is an SDK and a policy model — a foundational primitive embedded in Windows and the Windows Subsystem for Linux — that provides what Microsoft calls a “composable sandbox spectrum.” That spectrum ranges from lightweight process isolation, already adopted by GitHub Copilot’s command-line interface, all the way up to micro-virtual machines, Linux containers, and full cloud instances running on Windows 365.

Advertisement

The system separates an agent’s execution from the user’s desktop, clipboard, user interface, and input devices. Critically, it binds every agent to a strong identity — either a local ID or a cloud-provisioned identity backed by Microsoft Entra — so that every action the agent takes can be attributed, audited, and governed.

The implications are enormous. Until now, the enterprise deployment of AI agents has been stuck in a paradox: the more autonomous and useful an agent becomes, the more dangerous it is to let it operate on a corporate network without guardrails. MXC is Microsoft’s attempt to break that paradox — not by making agents less capable, but by making the environment they operate in fundamentally more controlled.

Why every autonomous AI agent is a security incident waiting to happen

To understand why MXC matters, consider what an AI agent actually does when it runs on your computer. Unlike a traditional application, which operates within well-understood boundaries — a word processor reads and writes documents, a browser fetches web pages — an AI agent is, by design, unpredictable. It receives a goal in natural language, reasons about how to achieve it, and then takes actions: opening files, executing code, calling APIs, browsing the web, interacting with other software. Each of those interactions creates what security professionals call “attack surface.”

Microsoft’s own blog post framed the challenge in stark terms. The company wrote that “as agents become more capable and autonomous, they’re delivering material productivity gains. But they’re also introducing new risk, and the issue isn’t just the agent. It’s the entire system the agent operates across.” Every interaction between agents and humans, tools, applications, models, and other agents “exposes new attack surface and introduces different failure modes.” Microsoft characterized this as “a multi-layer systems problem.”

Advertisement

This is not a theoretical concern. In the months leading up to Build, security researchers demonstrated numerous ways that AI agents could be manipulated — through prompt injection, through malicious tool calls, through data exfiltration disguised as normal workflow. For enterprises that handle sensitive data, proprietary models, and regulated information, the absence of a trusted execution environment has been the single biggest barrier to moving agents from demo to deployment.

Microsoft’s answer is a sandbox that scales from a single process to a full virtual machine

MXC operates on a deceptively simple principle: declare what the agent can do before it runs, and let the operating system enforce those declarations at runtime. A developer or an IT administrator writes a policy that specifies which files, directories, and network resources an agent is allowed to access. MXC then creates a contained execution environment — a sandbox — that enforces those boundaries regardless of what the agent attempts to do.

What makes MXC unusual, and potentially very powerful, is the breadth of its isolation options. Microsoft designed the system so that a single SDK and policy model can map to the appropriate isolation construct for any given workload. For a lightweight coding assistant that just needs to read the current project directory, fast process isolation may be sufficient. For an autonomous agent that executes arbitrary code downloaded from the internet, a full micro-VM may be required. The system is designed to be “dynamically composable based on intent and risk,” meaning that the level of isolation can be adjusted based on what the agent is actually doing, not just what category it falls into.

Session isolation is a particularly important feature. MXC separates the agent’s execution from the user’s desktop, clipboard, UI, and input devices. This directly mitigates several classes of attacks that security researchers have identified as particularly dangerous for AI agents: UI spoofing, where an agent manipulates what the user sees to trick them into approving a malicious action; input injection, where an agent sends keystrokes or mouse clicks to other applications; and cross-session data leakage, where information from one user’s session bleeds into another.

Advertisement

A live demo showed an AI agent trying to delete files — and failing, because the OS wouldn’t let it

During a pre-briefing with VentureBeat the night before the announcement, a Microsoft developer offered a vivid demonstration of the technology in action. He had set up the open-source agent framework OpenClaw running inside MXC’s sandbox on his personal development machine. He then instructed the agent to delete all the files on his desktop. The agent attempted to comply — but the sandbox prevented it. “If you look at my desktop here, you see how clean my desktop is,” the developer said during the demo. “That’s a lie.” The files, he explained, were completely safe because “the container won’t allow it.”

The demonstration went further, showcasing the granularity of MXC’s controls. Users can mark specific files as read-only for the agent, restrict access to the browser and screen capture, control whether the agent can see location data, and have all of those permissions managed centrally by an enterprise IT department through Intune policies. The agent operates inside what is effectively a one-way mirror: it can do the work it has been asked to do, but it cannot see or touch anything outside the boundaries that its policy defines.

Pavan Davuluri, Microsoft’s Executive Vice President for Windows and Devices, underscored during the pre-briefing that the primitives MXC introduces — security, containment, isolation, and user control — are essential to making AI agents commercially viable.

He emphasized that these capabilities are “not unique to OpenClaw” and that “this pattern repeats itself over and over” for any agent running on a Windows device. The primitives that exist in the operating system now “for the file around security, containment, isolating them, having users in control,” he said, are what will make agents safe enough for ordinary consumers and corporate deployments alike.

Advertisement

Defender, Entra, Intune, and Purview integration arriving in July turns MXC into an enterprise control plane

For corporate IT departments, the most significant element of the MXC announcement is not the SDK itself but its integration with Microsoft’s existing enterprise security stack through what the company calls Agent 365. Arriving in preview in July, Agent 365 layers Microsoft’s Entra identity service and Intune device management platform on top of MXC, so that IT administrators can govern agent containment centrally while developers choose the level of isolation their workload demands.

The integration goes further: Microsoft Defender will provide runtime threat protection, Entra will handle identity and access management, Intune will enforce device-level policies, and Microsoft Purview will extend its data governance and compliance capabilities to agent activity. This means that an enterprise could, in theory, allow employees to run AI agents on their corporate machines — even powerful, autonomous agents that execute code and manage files — while maintaining the same kind of centralized visibility and control that IT departments currently have over traditional applications.

Microsoft described the identity layer in its official blog: “Windows assigns agents a local ID or a cloud provisioned identity backed by Entra and attributes all activity from the container to that identity, so you can clearly differentiate human from agent.” For regulated industries — financial services, healthcare, government — the ability to produce an audit trail that distinguishes between human actions and agent actions on the same machine could prove to be a regulatory requirement, not merely a nice-to-have feature. Every agent action attributable to a specific identity, every containment boundary enforceable through the same policy infrastructure that already governs hundreds of millions of Windows devices — this is the architecture that could finally move AI agents from pilot programs to production.

OpenAI, Nvidia, Manus, and Nous Research are already building on MXC — and that changes the calculus

Platform announcements at developer conferences are often aspirational. What distinguishes the MXC launch is the breadth and specificity of the partners already building on it. Microsoft named five: OpenAI, Nvidia, Manus, Nous Research (maker of the Hermes agent), and the OpenClaw open-source project. Each is integrating MXC in a distinct way that illuminates a different use case for the technology.

Advertisement

OpenAI’s involvement is particularly striking. David Wiesen, a member of OpenAI’s technical staff, said that “working with Microsoft on the Microsoft Execution Containers (MXC) allows us to explore new patterns for AI agents to safely and efficiently generate and execute code.” He added that by combining Codex’s capabilities with MXC’s execution environment, the goal is “to help developers move from intent to reliable execution faster, while maintaining the security and control enterprises need.” The reference to Codex — OpenAI’s code-generation agent — suggests that MXC could become the default execution environment for one of the most widely anticipated agent products in the industry.

Nvidia is bringing its OpenShell framework to Windows built on MXC, providing what Microsoft described as “an easy-to-deploy package for autonomous, always-on agents safely.” Manus, the Chinese-born AI agent startup that gained viral attention earlier this year, is also integrating. Tao Zhang, Manus’s Chief Product Officer, said that MXC “gives developers a policy-driven way to define what an agent can access and enforce those boundaries at runtime, so more autonomous agents can operate safely in enterprise environments.” And Dillon Rolnick, the CEO of Nous Research, offered what may be the most concise articulation of why MXC matters: “Continuously-running local agents, like Hermes Agent, require intentional isolation. Developers need control over what an agent can access and trust that those controls will hold.”

How an open-source agent framework became Microsoft’s proving ground for AI safety on Windows

One of the more revealing stories behind the MXC announcement involves OpenClaw. During the press pre-briefing, a Microsoft developer described how the partnership came together organically — Peter Steinberger, OpenClaw’s creator, sent him a direct message in January expressing interest in collaborating. What began as a casual conversation evolved into a full-fledged platform partnership, with Microsoft developers contributing to the OpenClaw Windows companion app, built as a native WinUI application rather than a wrapped web app.

The OpenClaw integration serves as what Scott called “the ultimate test app for all the stuff that [the Windows platform team] is making.” If OpenClaw — which by its nature gives agents broad autonomy to execute tasks on a user’s machine — can run securely within MXC’s containment boundaries, then the containment system is robust enough for any agent. Scott explained the philosophy driving the work: “Think of OpenClaw Windows as the ultimate test app… If OpenClaw can succeed on Windows, that means that the Linux support is there, the container support is there, the containment is there.”

Advertisement

The companion app demonstrates the full spectrum of MXC’s enterprise controls — file permissions, network access, screen capture restrictions, location data — all manageable centrally through Intune policies. Microsoft donated the project to OpenClaw and plans to continue contributing to it as open source. As one member of the Windows leadership team put it during the briefing: “All agents, all comers, everyone is welcome on Windows… It’s going to run great on Windows, because the primitives are there. The base of the pyramid is solid.”

Building containment into the OS gives Microsoft a strategic edge over Apple’s walled garden and Google’s cloud-first model

MXC arrives at a moment when the technology industry is grappling with a fundamental tension. AI agents represent what may be the most significant new category of software since mobile applications, and every major technology company is racing to build them. But the security and governance infrastructure required to deploy these agents responsibly in enterprise environments barely exists. Microsoft’s approach is distinctive because it locates the trust layer at the operating system level rather than in the agent framework, the model provider, or a third-party security product.

This is a deliberate architectural choice. By building containment into Windows itself, Microsoft ensures that the security guarantees hold regardless of which agent, which model, or which framework a developer chooses.

It also means that the hundreds of millions of Windows devices already managed through Intune and secured through Defender can, in principle, become agent-ready through a software update rather than a rip-and-replace deployment.

Advertisement

Apple’s approach to AI agents leans heavily on its walled-garden ecosystem, offering security through restriction — limiting which agents can run and what they can do. Google’s approach, centered on its cloud infrastructure, offers security through centralization. Microsoft’s approach offers security through declaration and enforcement — allowing any agent to run, but containing its impact through OS-level policy.

For enterprises that operate in heterogeneous environments with diverse toolchains and multiple AI providers, the Microsoft model may prove the most practical. The competitive dynamics are already shifting: with OpenAI’s Codex, Nvidia’s OpenShell, and independent agent frameworks like Manus and Hermes all building on MXC, Microsoft is positioning Windows not just as the platform where agents run, but as the platform where agents can be trusted to run.

The hardest part isn’t building the sandbox — it’s writing the policies that go inside it

MXC is available now in early preview, meaning developers can begin building against the SDK and testing containment policies. The Agent 365 integration with Defender, Entra, Intune, and Purview is scheduled for preview in July — a timeline aggressive enough to suggest that much of the engineering work is already done, but far enough out to allow for refinement based on developer feedback.

The real test, however, will come when enterprises begin deploying agents at scale on production networks. Containment is only as good as the policies that govern it, and writing effective agent policies for complex enterprise environments will be an entirely new discipline — one that IT departments have not yet developed and that no vendor has yet figured out how to teach. The technology is promising, but an empty sandbox is just an empty box. Filling it with the right rules, for the right agents, in the right contexts, will require a level of organizational sophistication that most companies are only beginning to contemplate.

Advertisement

Still, the significance of what Microsoft announced on Tuesday is difficult to overstate. For the first time, a major operating system vendor has proposed a comprehensive, kernel-level answer to the question of how autonomous AI software should be contained, identified, and governed on the devices where most of the world’s work actually gets done. The industry spent two years teaching agents to act. Microsoft is now betting that the bigger business — and the harder engineering problem — is teaching the operating system to watch.

Source link

Continue Reading
Click to comment

You must be logged in to post a comment Login

Leave a Reply

Tech

How banks can build a risk-intelligent approach to core modernization

Published

on

Banks aren’t short on AI ambition. Across the industry, there are almost weekly announcements about new deployments, new partnerships, and new capabilities.

But amidst the lofty pronouncements, not enough attention is given to building the underlying architecture that makes any of it sustainable.

Source link

Advertisement
Continue Reading

Tech

Our readers love the Beats Studio Pro, and they are now even more affordable

Published

on

Whenever we write about deals for these headphones, you guys love them – so here’s another one…

The Beats Studio Pro currently have £47.95 knocked off, to bring them down from £199 to £151.05, which is a further reduction on the £349 RRP.

Deals Beats Studio ProDeals Beats Studio Pro

A reader favourite, the Beats Studio Pro, is currently close to a quarter off

A reader favourite, the Beats Studio Pro, has dropped to just shy of 25% off, making them an even stronger pick.

Advertisement

View Deal

The fully adaptive Active Noise Cancelling monitors ambient noise continuously and updates its filter at 48,000 times per second, which in practice means the ANC adjusts to what is actually happening around you rather than applying a fixed profile and hoping for the best.

Advertisement

Transparency mode sits at the other end of that, letting environmental sound mix into the listening experience when awareness matters more than isolation, and switching between the two takes a single button press on the ear cup.

Plug in via USB-C and the built-in DAC delivers lossless audio alongside three distinct sound profiles, covering the Beats Signature profile for music, an Entertainment profile tuned for films and games, and a Conversation profile optimised for calls and podcasts.

Advertisement

The Whatsapp LogoThe Whatsapp Logo

Get Updates Straight to Your WhatsApp

Advertisement

Join Now

The 40-hour battery life means a full working week of commuting without needing to charge, and the Fast Fuel feature provides four hours of playback from a 10-minute top-up when that figure runs low.

Advertisement

Comfort over long sessions is handled by UltraPlush over-ear cushions in engineered leather, and both Apple and Android users get native compatibility features, including one-touch pairing and Find My support on the Apple side.

For anyone who wants a serious over-ear headphone with ANC, lossless audio, and a 40-hour battery at a price that has just dropped by nearly a quarter, the Beats Studio Pro makes a compelling case, and our best headphones, best wireless headphones, and best noise-cancelling headphones guides are there for anyone still mapping the wider field.

The Beats Studio Pro harness clear, neutral sound quality, strong noise-cancellation, and an excellent wireless performance into their slightly tweaked design. While they impress with good performance across the board, it’s not quite at the level to supplant the likes of Sony.

Advertisement
  • Strong noise-cancelling

  • Neutral, clear presentation

  • Excellent wireless performance

  • Physical controls

  • USB-C audio

  • ANC suffers with wind noise

  • No room for higher quality Bluetooth codecs

  • Design better suited for smaller ears

SQUIRREL_PLAYLIST_10148964

Advertisement

Advertisement

Source link

Continue Reading

Tech

China wants its green power wired straight into the data centre

Published

on

In the desert outside Zhongwei, in the northwestern region of Ningxia, four dedicated power lines now run from a field of solar panels to a cluster of computers.

They do not pass through the public grid. That detail, dull as it sounds, is the whole point.

China is encouraging its sprawling data centre industry to plug directly into wind and solar generation, rather than draw power off a grid still heavily fed by coal. The push is part policy, part demonstration.

Beijing’s 2026 government work report named tighter integration between computing infrastructure and electricity supply as a priority, and a national green-data-centre plan now requires new projects in the country’s designated computing hubs to source most of their power from clean sources.

Advertisement

The 💜 of EU tech

The latest rumblings from the EU tech scene, a story from our wise ol’ founder Boris, and some questionable AI art. It’s free, every week, in your inbox. Sign up now!

The Zhongwei plant is the project everyone points to. China Datang Corp commissioned a 500-megawatt solar farm there, describing it as the country’s first large-scale green-power project built to supply a data centre cluster directly.

It entered formal operation in early May, after green-power direct supply began in February, according to Chinese state media.

Advertisement

What makes it unusual is the delivery. The site uses what Datang calls a dual-track structure: four dedicated 110-kilovolt lines carry electricity straight to the computing facilities, with additional demand covered through bilateral market trades.

Solar output is prioritised during the day, wind is expected to cover the evenings, and storage smooths the gaps.

The solar plant alone should generate around 970 gigawatt-hours a year, roughly half the cloud base’s projected demand.

The numbers grow once the wind component arrives. The 500MW solar array is the first slice of a 2-gigawatt first phase that pairs it with a 1.5GW wind farm and storage, at a planned cost of about 8.7 billion yuan, or some $1.27bn.

Advertisement

The wind build is still under construction, scheduled for full grid connection in September.

Once phase one is complete, annual generation is expected to reach 4.3 terawatt-hours, more than the cloud base’s forecast consumption of 2.29 terawatt-hours. A second phase would push the total to 4.6GW.

The logic sits inside China’s “east data, west computing” strategy, which steers energy-hungry processing toward western regions where wind and solar are plentiful and land is cheap. Demand is the pressure behind all of it.

AI has driven an explosion in computing capacity, and with it electricity use, at exactly the moment Beijing is trying to hit peak carbon emissions by 2030.

Advertisement

The ambition is steep. Authorities want renewables to supply roughly four-fifths of the AI data-centre sector’s power by 2030, up from around a tenth in 2023.

The gap between a single working project in the desert and that national target is the part the policy has not yet closed.

Curtailment, grid bottlenecks, and the intermittency of wind and solar remain real, and China’s green-power goals for AI have already run into the grid before.

For now, Zhongwei is the test case. If desert wind and sun can be matched to digital load without leaning on the conventional grid, the model travels. If they cannot, it stays a handsome demonstration in Ningxia.

Advertisement

The wind turbines are due in September, that is when the figures stop being projections.

Source link

Advertisement
Continue Reading

Tech

New Study Shows That Tall Vehicle Hoods Cause Hundreds More Deaths Per Year

Published

on

joshuark shares a report from Car and Driver: A new study conducted by the New York Times shows that the increase in vehicle hood height seen over the last two and a half decades, mainly due to the rise in popularity of large SUVs and trucks, has resulted in several thousand deaths that otherwise may not have happened. The study shows that while automakers and regulators have focused on occupant safety, they have turned a blind eye to pedestrian safety, which has fallen since around 2009. Researchers looked at four main datasets in their investigation: crash test data from the National Highway Traffic Safety Administration’s (NHTSA) Crash Report Sampling System (CRSS) from 2016 to 2024; NHTSA’s Fatality Analysis Reporting System (FARS); vehicle measurement data from Expert AutoStats; and vehicle registration data from S&P Global from 2002 to 2024. The researchers concluded that the increased danger to pedestrians is caused by two main culprits.

First, large SUVs and trucks have taller hoods, raising the point of impact above most people’s center of gravity and pushing them to the ground, typically hard asphalt, rather than up and onto the hood, which is designed to absorb impacts. Second, with larger A-pillars designed to protect occupants in rollover crashes, modern cars tend to have larger blind spots than cars sold at the turn of the century (presuming the 21st century). The shift toward vehicles with taller hoods led to roughly 3000 deaths between 2016 and 2024. This number is conservative because it does not include crashes that take place in parking lots, driveways, or private roads, which aren’t part of the federal database.

The data also showed an estimated 2.8 percent increase in the odds of a pedestrian fatality for every one-inch increase in vehicle hood height. Between two different scenarios, one decreasing the hood height of every vehicle in the dataset by 3 inches, and the second using a random sampling of hood heights from 2002 across 10,000 simulated crashes, between 2624 (for scenario two) and 3077 (for scenario one) lives could have been saved from 2016 to 2024.

Source link

Advertisement
Continue Reading

Tech

European Commission lines up Amazon and Microsoft for cloud gatekeeper status

Published

on

LEGAL

Preliminary position calls for designation under the Digital Markets Act

The European Commission has reached the preliminary position that Azure and AWS should be designated as gatekeepers under the Digital Markets Act (DMA).

The gatekeeper designation would mean requirements imposed on the cloud giants, with fines of up to 10 percent of worldwide turnover if those requirements are not met.

Advertisement

According to the Commission, AWS and Azure, “the largest and second largest cloud computing services in the EU respectively,” are a gateway between businesses and their customers in the bloc.

“They both have vast and entrenched user bases and appear to benefit from lock-in effects and high switching costs, in addition to a large ecosystem.”

Although the cloud giants did not meet the DMA’s quantitative thresholds for designation (such as user numbers), their market positions have attracted scrutiny. Should the gatekeeper designations stick, obligations regarding interoperability, access to data, and competition would apply.

The view is preliminary at this stage, and Amazon and Microsoft have the opportunity to respond before anything becomes final.

Advertisement

A Microsoft spokesperson told The Register: “We continue to engage constructively with the Commission. The cloud sector in Europe is innovative, highly competitive and an accelerator for growth across the economy.”

The spokesperson added: “We remain concerned that ignoring the growing power of Google Cloud and Gemini will tilt the market in a harmful way.”

AWS also disagreed with the Commission’s preliminary position. A spokesperson told The Register: “The Commission’s preliminary findings disregard the breadth of cloud services available to European customers and risk deterring European investment and innovation. AWS faces healthy competition and customers across Europe have more choice, lower prices, and greater flexibility than ever before.

“The EU already has comprehensive cloud regulation through the Data Act, and adding another heavy layer of overlapping regulation under the DMA undermines European competitiveness and access to cutting-edge information technology. We will continue to engage with the Commission to reach the right outcome for customers and Europe’s digital future.”

Advertisement

Other parties responded more positively. A spokesperson for the Open Cloud Coalition told The Register: “Our members welcome the Commission’s preliminary finding naming Microsoft and AWS as cloud gatekeepers. We particularly note the finding that existing customer lock-in may fuel enterprise AI, a development that mirrors long-standing market concerns over Microsoft’s licensing and ecosystem practices.

“Moving quickly to deliver remedies is now a priority to ensure choice and growth for European cloud customers.”

In 2024, Microsoft described the Open Cloud Coalition as a lobbying group for Google.

Henna Virkkunen, executive vice-president for tech sovereignty, security and democracy, stated: “Cloud services have become a cornerstone of Europe’s economy – and a prerequisite for AI – with over half of EU businesses now relying on them, combined with record investment in public cloud infrastructure.

Advertisement

“Given their central role in Europe’s digital future, these services must operate in fair, open and competitive markets that foster trust and secure Europe’s tech sovereignty.”

Should the preliminary findings be confirmed and Microsoft and Amazon be designated as gatekeepers for their cloud services (they already have gatekeeper status for other services), the pair will have six months to ensure compliance with the DMA’s obligations. ®

Source link

Advertisement
Continue Reading

Tech

Why account takeovers remain one of the hardest threats to stop

Published

on

Account login

Organizations continue to invest in phishing defenses, identity protection, and multi-factor authentication, yet account takeover attacks remain one of the most disruptive security incidents facing enterprises today.

On July 8, 2026, BleepingComputer will host a live webinar titled “Stop chasing alerts: Automating email security with behavioral AI” presented by Dan Nickolaisen, Solutions Architect Manager at Abnormal AI, and Eric Danneker, Director of Cyber Vigilance and Defense at Novant Health.

The webinar will examine how attackers gain access to legitimate accounts, why traditional security controls often struggle to detect account compromise quickly, and how behavioral AI can help security teams accelerate investigations and response.

Modern account takeover attacks frequently rely on trusted identities, legitimate cloud services, and compromised business accounts rather than obviously malicious activity. As a result, attackers can blend into normal business operations while maintaining access to email, collaboration platforms, and corporate resources.

Advertisement

Security teams are often left investigating suspicious messages, unusual login activity, and user reports long after attackers have established a foothold.

Abnormal AI helps organizations identify abnormal account behavior and automate investigation workflows, enabling analysts to detect compromised accounts faster and respond more efficiently.

Attendees will learn practical approaches for identifying account compromise earlier, reducing manual investigation work, and limiting the impact of account takeover attacks.

Abnormal webinar

Compromised accounts are difficult to distinguish from legitimate users

Unlike traditional malware attacks, account takeover incidents often involve legitimate credentials, trusted devices, and normal business communications.

Advertisement

This makes compromised accounts significantly harder to identify using traditional security controls alone.

This webinar will explore how behavioral AI can help security teams identify unusual behavior patterns, investigate suspicious activity automatically, and accelerate remediation before attackers can expand their access.

The upcoming webinar will cover:

  • How phishing, BEC, and account takeover attacks lead to compromised business accounts
  • Why attackers increasingly rely on legitimate identities and trusted services
  • The challenges security teams face when investigating potential account compromise
  • How behavioral AI can automate detection, investigation, and remediation workflows
  • Practical techniques for reducing response times and limiting the impact of account takeovers

Join us to learn how organizations can detect compromised accounts faster and improve their ability to respond before small incidents become major security events.

➡ Register now to secure your spot!

Source link

Advertisement
Continue Reading

Tech

Canadian workers have few defences against workplace surveillance

Published

on

TD’s plan to monitor some staff has exposed a legal gap: in much of Canada, an employer can watch you work and owes you little more than a notice.

Then Toronto-Dominion Bank told some of its staff that software would soon be watching how they worked, the employees did what most people do when handed that news.

They asked what exactly it would track, whether it could be used against them, and whether they had any say. The more uncomfortable answer, in much of Canada, is that the law gives them very little leverage to refuse.

The bank’s move, reported by Reuters in an exclusive earlier this month, applied to employees in its financial-crimes and risk-management functions.

Advertisement

The 💜 of EU tech

The latest rumblings from the EU tech scene, a story from our wise ol’ founder Boris, and some questionable AI art. It’s free, every week, in your inbox. Sign up now!

They were told TD would deploy a tool called WorkiQ to track how they spent their time across web browsers, internal messaging, meeting apps, and other work software.

On the call, staff raised the obvious questions about privacy, about what the tool would capture, and about whether the data could feed into performance reviews.

Advertisement

TD described the deployment as “standard practice across the industry,” and said it uses automated tools in various parts of the business to improve insights and allocate resources.

There was a second, more striking element. According to an internal memo seen by Reuters, TD had initially planned to collect employees’ mouse movements, keystrokes, and other actions to use as training data for artificial intelligence, then scaled that back after weeks of pushback from staff.

The detail rhymes with what has been happening at Meta, which deployed a programme to capture keystrokes and mouse clicks on employee machines, also for AI training, and which paused the tool in June after a data-security scare.

The new frontier of workplace monitoring is not just measuring productivity. It is harvesting the way people work as raw material for models.

Advertisement

What makes the Canadian case distinct is the legal vacuum around it. The country’s federal privacy law, PIPEDA, does not apply to provincially regulated employers in provinces that lack their own substantially similar legislation, which includes Ontario, where much of the financial sector sits.

In those provinces, employee protection is assembled from a patchwork of employment-standards rules, common-law privacy torts, contracts, workplace policies, and, where they exist, collective agreements.

There is no single statute a worker can point to and say the surveillance crosses a line.

Ontario went furthest of any province, and even that is modest. Since October 2022, employers with 25 or more staff must have a written policy stating whether and how they electronically monitor employees.

Advertisement

The catch is in the wording. The law requires disclosure, not restraint. It compels an employer to tell workers what it is doing, but it does not give workers a new right to object, to limit the monitoring, or to keep the data out of a performance file. Telling someone they are being watched is not the same as protecting them.

The contrast with Europe is sharp. Under the EU’s data-protection regime, monitoring of the kind TD described runs into the principle of purpose limitation, the rule that data gathered for one reason cannot be quietly repurposed for another.

Repurposing employees’ everyday digital activity into AI training data is precisely the move that European rules are built to challenge. A Canadian worker in Ontario has no comparable instrument to reach for.

None of this makes TD an outlier. Employee monitoring spread quickly through the remote-work years, and banks, with their compliance obligations, have more reason than most to watch what staff do.

Advertisement

The tools have advanced faster than the rules meant to govern them, and in much of Canada the rules were never strong to begin with.

For the employees on that TD call, the answer to how much of their workday belongs to their employer is, for now, mostly up to the employer.

Source link

Advertisement
Continue Reading

Tech

The Reasons Why There Have Been So Many Recalls On Cars, Trucks And SUVs Lately

Published

on





It feels like a different vehicle is getting recalled every other day — and it’s not even that much of an exaggeration. From 2017 to 2022, the United States averaged more than 1,000 recalls every year, based on data from the National Highway Traffic Safety Administration (NHTSA). The number of recalls has continued to climb, but it’s not because vehicles have become more dangerous or unreliable. According to ABC News, the rapid increase in car recalls is due to the complexity of modern vehicles.

There are more electronic components, features, and software in modern cars — and this means a higher chance of things going wrong. “Vehicles have advanced to a degree we’ve never seen before,” said Edmunds Auto Analyst Ivan Drury to ABC News. “It’s such a wide swathe of issues that recalls cover that you’re going to see this more and more.” 

In other words, there are more failure points — not just because there are more components, but even the components themselves are more complex, taking more parts. Some recent examples include Ford recalling over 548,000 Expeditions over the center console’s chrome plating, Subaru recalling the new Forester due to its sunroof glass, and Mercedes-Benz recalling over 144,000 vehicles after customers noticed the digital instrument cluster glitching.

Advertisement

More recalls isn’t necessarily a bad thing

There are so many recalls, it’s pretty difficult to keep track of it all — but not every recall is meant to alarm you. In fact, most are pretty minor. For example, Ford has gotten quite the reputation for its seemingly endless recalls — according to the NHTSA, it has the most recalled models out of every automaker, with 152 recalls in 2025 alone. Some would say Ford’s launches have quality issues, Ford itself has noted it’s just a way to improve quality. Despite its multiple recalls in 2026, Subaru is still considered one of the most reliable automakers. 

Most recalls are considered minor rather than true safety concerns that require you to stop driving your car — although Ford’s Maverick and Bronco Sport have had those recently as well. Instead, automakers are just attempting to avoid issues by remaining within the NHTSA’s safety standards and regulations — which only benefits consumers. 

Advertisement

“Recalls can be inconvenient, but they’re actually a good thing,” said Consumer Reports’ Jennifer Stockburger. “While they can vary in terms of severity, a recall means that a manufacturer will fix or take corrective action to address a safety issue, which is why they should be taken seriously.”



Advertisement

Source link

Continue Reading

Tech

OPPO’s June ColorOS 16 Update Adds Dual Bluetooth Audio Sharing

Published

on

OPPO has started rolling out its June 2026 ColorOS 16 update, bringing a handful of new features to make everyday smartphone use a little more convenient. The update introduces a new Sports Widget for football fans, Bluetooth audio sharing, improved security alerts, and several quality-of-life additions across the system. The rollout is scheduled between June 1 and June 30 for eligible OPPO smartphones, such as the Find X9.

Live Sports Updates and Shared Audio

Sports Widget OPPO June ColorOS 16

One of the biggest additions in this release is the new Sports Widget. Football fans can now follow live scores, match schedules, and tournament updates directly from their home screen without opening a dedicated app. ColorOS 16 also uses AI Suggestions to surface upcoming matches on the Home Screen and Shelf, making it easier to keep tabs on your favorite teams throughout the day.

Another useful addition is Audio Sharing, which allows a single OPPO phone to stream audio to two pairs of Bluetooth earphones simultaneously. Whether you’re watching a movie with a friend or listening to music together, both users can enjoy the same audio without relying on a speaker or wired splitter.

Security and Everyday Features Get Some Attention Too

New Security Alerts OPPO June ColorOS 16

The June update also introduces Accessibility Security Alerts. If an app from an unknown source receives Accessibility Service permissions, a permission commonly abused by malicious apps, ColorOS will immediately notify the user. This makes it easier to review or revoke suspicious permissions before they become a security risk.

OPPO has also refreshed the Weather app with Moon Rise and Moon Set timings, along with live Moon Phase information. While these additions may not appeal to everyone, they can be useful for outdoor enthusiasts, photographers, and anyone planning activities around natural lighting conditions.

Outdoor Mode has also received a small but practical upgrade. Users can now pin up to four frequently used apps for quicker access, while navigation and location awareness have also been improved for people who spend a lot of time outdoors.

Advertisement

Gaming and Personalization Improvements

Outdoor Mode enhancements

Beyond the headline features, OPPO has added a few smaller quality-of-life improvements across the system. Users can now record gameplay more easily, while a new App Suggestions feature in the app drawer recommends frequently used apps based on usage patterns. The idea is to reduce the time spent searching for apps and make everyday navigation feel a little more intuitive.

OPPO says the June ColorOS 16 update will continue rolling out to eligible devices throughout the month.

Source link

Continue Reading

Tech

Amazon beats Currys on Asus Zenbook A14 for Prime Day

Published

on

I’ve been scouting for Prime Day deals, but this one stopped me in my tracks. Currys is running an excellent summer sale on back-to-school and business laptops, but Amazon has absolutely crushed them on the price of the Asus Zenbook A14 for £500 (was £600) for Prime Day.

Shop Amazon’s Prime Day deals

This 14-inch OLED laptop features a Snapdragon X X1-26-100 processor that’s engineered for day-to-day work and study tasks, alongside 16GB LPDDR5X memory, and a well-sized 1TB SSD. For general office and school tasks, that’s pitch-perfect for the price.

Over at Currys, however, the exact same model is priced at £599 (was £999) for the Snapdragon-powered machine with 16GB RAM and – wait for it – 512GB SSD. So, you’re getting twice as much SSD storage from Amazon at an even cheaper price. I wouldn’t even look twice at Currys for this specific model while this Prime Day deal is live.

Advertisement

For more savings, I’m live-tracking all the best Prime Day home office deals.


That’s not to say the Currys summer sale is bad. In fact, having charted all the deals, I found it a treasure trove of well-priced laptops for work and study. You can see my article on the top 4 laptop deals at Currys here.

Advertisement

But considering the massive price difference, and the improved SSD size, I’d go for the Amazon deal all-day long (or while it lasts, which might not be long as Prime Day ends tomorrow).

We were impressed with the A14 when we reviewed this laptop. Scoring it 4 stars and awarding it a TechRadar Recommends badge, we found this ultra-lightweight MacBook Air-style Windows laptop possessed “brilliant design, capable all-round performance, and an impressive battery life.”

As a budget-tier laptop, it’s got it faults, but we loved the “fabulously thin and light” design and performance are impressive. Perfect, then, for campus and the commute.

Source link

Advertisement
Continue Reading

Trending

Copyright © 2025