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

The White House is now deciding who gets access to frontier AI models, not the labs

Published

on

TL;DR

The Trump administration is dictating access to frontier AI models, shifting that decision from Anthropic and OpenAI to the government via the Gold Eagle programme.

The Trump administration is now dictating which companies and entities get access to frontier AI models from Anthropic and OpenAI, CNBC reported on Friday, citing two people familiar with the matter. Until now, the labs made that decision themselves. Anthropic controlled access to its Mythos cybersecurity model through an initiative called Project Glasswing. OpenAI ran a similar programme called Daybreak for its cyber model. Going forward, these partner lists will require explicit government approval.

A White House official told CNBC that the government does not “provide approvals for AI releases” and that company participation is “voluntary.” But the administration blocked Anthropic’s Claude Mythos 5 and Fable 5 last month over national security concerns, reinstating access only after weeks of negotiations. OpenAI said in June it would limit new models to “trusted partners” to comply with government requests. The gap between the official position and the operational reality is the story. The White House launched Gold Eagle this week, an AI clearinghouse for cyber vulnerabilities, and according to CNBC’s source, the programme will put the White House in charge of greenlighting which companies can access new AI models.

The timing is politically uncomfortable. Moonshot AI’s Kimi K3 launched the same day and matched or exceeded Fable and GPT-5.6 on at least one independent benchmark. David Sacks, former White House AI czar, called it “concerning” and wrote: “This is how you lose the AI race. The rest of the world won’t play by our rules if we bog ourselves down.” The administration is trying to secure frontier AI against Chinese exploitation while simultaneously watching Chinese labs close the capability gap in real time.

Advertisement

The shift is structural, not temporary. Trump’s June executive order asked AI companies to give the government early access to models for testing, framed as voluntary. Gold Eagle operationalises that ask into something closer to a gating mechanism. If Anthropic and OpenAI cannot release their most capable models without government approval of the partner list, then the US government has acquired de facto distribution authority over frontier AI, without legislation, without a regulatory agency, and through a programme the White House insists is optional.

Source link

Advertisement
Continue Reading
Click to comment

You must be logged in to post a comment Login

Leave a Reply

Tech

A single AI agent conversation can look perfect and still be broken, leaders from LangChain, Conviva and CoreWeave said at VB Transform 2026

Published

on

A single AI agent conversation can look flawless scored on its own and still point to a broken product. That gap is driving a shift in how enterprises evaluate agents, away from scoring individual traces and toward comparing cohorts of users against a baseline.

At VB Transform 2026, Harrison Chase, CEO of LangChain; Hui Zhang, CTO and co-founder of Conviva; and Emmanuel Turlay, director of engineering at CoreWeave, described that shift, along with a parallel move toward cheaper, narrower judge models.

Agent-as-judge — judging one AI agent’s output with another — hasn’t replaced LLM-as-judge, which Chase said remains the default. The larger tension, Zhang said, is between automated judging, whether by LLM or agent, and human review.

“You have scalable but ungrounded, whether it’s agents as judge or LLMs as judge, you grade the outcome, you grade the work. It still is very difficult to ground it and then you use humans and that’s just not scalable,” Zhang said. “The whole industry is facing this, which poison you want to pick.”

Advertisement

Evaluation criteria now function as the product spec

That gap — a conversation that scores well but still signals a broken product — is what teams try to close by building an exhaustive evaluation suite before they ship anything. Chase said that doesn’t work.

“We sometimes see teams that have almost eval paralysis,” Chase said. “They’re like, this is an eval set, I can’t launch it. The best teams launch and then iterate.”

Chase framed evaluation criteria as a living specification, not a one-time test suite: a product requirements document — the standard software-development spec for what an application should do. “Evals are like the new PRD,” he said. “They define what your agent should and shouldn’t do.”

Turlay described hitting the same failure from a different angle. “I was trying to reach 100% coverage for my tests, and I still had bugs in production,” he said — a test suite that looked complete but still missed what mattered, the same gap Chase was describing with evals.

Advertisement

Broad, always-on monitoring, he said, catches more real failures than an exhaustive pre-launch test suite. Teams should set up wide online checks first, use those to identify failure classes as they occur, then build a targeted offline evaluation set around the problems that surface.

Why scoring traces one at a time is a mistake

Even a well-built evaluation process can still score the wrong thing. Zhang’s objection is to how most teams run evaluation: sampling traces, whether 50 of them or a full population, scoring each in isolation. That approach misses a signal that only shows up when comparing cohorts of users against a baseline, a method Zhang calls contrastive analysis.

Zhang illustrated it with a retail example: a shopper asks an agent for a running shoe ahead of a half marathon, the agent asks qualifying questions, and the shopper buys a shoe. Scored individually, that interaction looks fine. But the clarification ratio, how many follow-up questions an agent asks before completing a task, came in three times higher than baseline for that shoe category across the full user population. A second metric, how often shoppers finished their purchase outside the conversation, was five times higher than baseline for the same category.

Neither number is visible from a single trace. Both point to a debuggable, category-specific problem. Zhang said the industry also lacks a second data source: what happens before, between and after the conversation, not just the trace itself.

Advertisement

Sizing the judge to the job

Once contrastive analysis flags which category is actually broken, the next problem is what watches for it going forward — and at what cost. Turlay’s rule was to start with the most capable model available to prove a task is solvable, then work down. If it can’t be done with a top-tier model, he said, it won’t work with a smaller one. Once a pattern proves viable, teams can sample a fraction of traffic instead of judging every interaction, and move simpler tasks like binary classification to smaller open source models.

LangChain took that further, fine-tuning its own model to detect when a user believes the agent made a mistake, a signal Chase calls perceived error. “The model we fine-tuned was a Qwen model,” he said, referring to Alibaba’s open source family. Combining hand labeling with distillation, the result performed well. “Same as [Claude]Sonnet, for, depending on how we served it, either 10 to 100x cost reduction,” Chase said.

Not every guardrail needs a model. Chase pointed to Claude Code’s own guardrails as proof: regexes, the common programming technique for finding and validating patterns in code. “A lot of the guardrails they had were just regexes,” he said. “They weren’t small LLMs, they were just regexes.”

LLM-as-judge doesn’t mean human-in-the-loop disappears

The bigger question is whether using LLM as a judge removes the need for a human in the loop.

Advertisement

Turlay pointed to accountability, drawing on his prior work at a self-driving car company. His team compressed data intake and retraining into a two-week cycle for shipping a new model to the car. Even then, someone still had to sign off.

“I felt confident on behalf of the company to say this model should go into the car,” he said. The same logic extends to legal, finance and healthcare. “Before we can remove a human to say, I endorse this and I take responsibility legally for it, it’s going to be a while before agents can do that on their own.”

Zhang agreed a human has to remain the guardian on corner cases, even as automation eventually runs at a scale that beats individual human accuracy — machines can see more at the pattern level.

Chase went further: that human check isn’t just a safety net. “Human in the loop is really important for building trust in how these agentic systems work, and also really important for memory and learning from systems,” he said. “There has to be interactions in order for the system to learn.”

Advertisement

Source link

Continue Reading

Tech

Avengers Doomsday Trailer Teases Steve Rogers Lifting Mjolnir Once More as Doctor Doom Forces Three Universes Into One Fight

Published

on

Marvel Avengers Doomsday First Trailer
Robert Downey Jr. returns to the Marvel Cinematic Universe this morning in a role no one saw coming a few years ago. He wears the metal mask of Doctor Doom in the first full trailer for Avengers Doomsday, and the footage makes clear this is no simple villain introduction. Directed by Anthony and Joe Russo, the film lands in theaters on December 18 and pulls together heroes from three separate universes who suddenly share the same battlefield.



Patrick Stewart’s Professor X appears in the teaser with a hushed warning, a sense that something big is about to happen that even a seasoned veteran like him may be unable to stop. By the end of the day, he warns everyone that they’ll have to make a decision they can’t even think about, and that sentence hits home since X has seen enough multiverse mayhem to know when the normal techniques won’t cut it.

Sale


LEGO Marvel Avengers: Endgame Final Battle – Super Hero Building Set for Kids, Ages 10+ – 10 Figures…
  • BRING MARVEL STUDIOS’ AVENGERS: ENDGAME TO LIFE – This LEGO Marvel Avengers kids’ building toy is an authentically detailed set for kids to…
  • LEGO AVENGERS MINIFIGURES – Captain America, Black Panther, Iron Man, The Scarlet Witch, Ant-Man, Iron Spider, Doctor Strange, Falcon and Chitauri…
  • MARVEL ACTION FIGURES – The heroes burst through magic portals into an epic battle with Thanos as kids recreate an iconic movie scene and role-play…

Then Chris Hemsworth’s Thor appears, delivering the trailer’s longest and most urgent speech, attempting to convey his message. He recalls men far stronger than everyone currently standing who died because the threats they faced were more terrifying to him than the one they confront today. He goes on to warn that every single sacrifice those guys made will be in vain until the current group can put aside their old feuds and come together as brothers and sisters. Then he musters the courage to state unequivocally that they will require nothing less than a miracle.

Advertisement

Marvel Avengers Doomsday Screenshot
That miracle appears in the form of Chris Evans as Steve Rogers. After years on the sidelines, Captain America returns to the frame, reaches out, and lifts Thor’s hammer as if it were nothing. Thor’s astonished reaction demonstrates how much time has gone since Rogers’ departure and how little some aspects of him have truly changed.

Marvel Avengers Doomsday Screenshot
We also get our first good look at Downey’s Dr. Doom in full armor. Then Thor smacks him with a burst of energy, leaving him immobilized. He’s already three steps ahead of any plan you can think of. That sequence underscores Doom’s dominance over all other adversaries in the MCU.

Marvel Avengers Doomsday Screenshot
As the trailer progresses, more and more characters from different universes cross paths, with Pedro Pascal, Vanessa Kirby, Joseph Quinn, and Ebon Moss-Bachrach appearing as the Fantastic Four and encountering people that do not belong in their reality. Then there are the original X-Men – Patrick Stewart, Ian McKellen, James Marsden, Rebecca Romijn, Alan Cumming, Kelsey Grammer, and Channing Tatum – who appear alongside Anthony Mackie’s Captain America, Sebastian Stan’s Bucky Barnes, Florence Pugh’s Yelena Belova, Paul Rudd’s Ant-Man, and so on.

Marvel Avengers Doomsday Screenshot
Tickets for the exclusive Infinity Vision screenings went on sale the same morning the trailer debuted. This is the final chapter of the Multiverse Saga before Secret Wars, and it appears to be a doozy. The trailer doesn’t explain how these three universes merged or what Doom wants to get out of it; all it does is show the scope of the problem and the unusual group of people who are now standing in his way.

Source link

Continue Reading

Tech

Microsoft confirms Windows Server Update Services sync delays

Published

on

Windows

Microsoft is working to fix a known issue affecting Windows Server Update Services (WSUS) servers, which has caused synchronization problems for more than a week.

WSUS was introduced almost twenty years ago to help IT administrators schedule updates for Microsoft products on enterprise networks from a single local update server, rather than updating each endpoint directly from Redmond’s servers.

By default, WSUS syncs with Microsoft Update servers once a day to download the latest metadata for available Windows updates. However, on servers affected by this issue, synchronization is broken, and admins will not be able to deploy the latest Windows updates via WSUS or Configuration Manager.

image

According to Microsoft, the WSUS sync issues affect both client (Windows 10, version 1607 and later) and server (Windows Server 2012 and later) platforms.

“Organizations might experience increased synchronization times or sync operation timeouts on WSUS servers. This issue began in recent days, with heightened impact observed starting July 13, 2026,” Microsoft said in a Windows health dashboard update.

Advertisement

Microsoft has rolled out mitigation measures on Saturday to prevent WSUS sync times and operation issues from affecting newly installed or rebuilt WSUS servers.

However, it is still working on additional mitigations for previously affected WSUS servers that continue to experience WSUS synchronization issues.

“Synchronization times and sync operations on WSUS servers have been restored and are operating normally for new WSUS installations and rebuilds,” it added. “For WSUS servers that were previously affected, Microsoft is working on mitigation steps to help customers safely remove the affected metadata from their environments.”

One year ago, in May, Microsoft fixed another similar issue after enterprise customers reported being plagued by WSUS errors when trying to update Windows 11 22H2/23H2 systems.

Advertisement

Microsoft addressed another WSUS issue in July 2025 that prevented organizations from syncing with Microsoft Update to deploy the latest Windows updates.

One month later, Microsoft resolved one more issue that blocked the August 2025 security update from being delivered via Windows Server Update Services (WSUS).


article image

Security teams log 54% of successful attacks and alert on just 14%. The rest move through your environment unseen.

The Picus whitepaper shows how breach and attack simulation tests your SIEM and EDR rules so threats stop slipping by detection.

Get the whitepaper

Source link

Advertisement
Continue Reading

Tech

New HollowGraph malware uses Microsoft Graph for stealthy C2 comms

Published

on

New HollowGraph malware uses Microsoft Graph for stealthy C2 comms

A malicious component dubbed HollowGraph uses the calendar feature in compromised Microsoft 365 mailboxes as a command-and-control channel to receive attacker commands and exfiltrate stolen data.

Researchers analysing the module believe it is part of the Cavern command-and-control framework that has been previously linked to an Iranian threat actor targeting entities in Israel.

At least 12 systems have been infected with HollowGraph, three of them actively communicating with the threat actor between June 3 and July 9.

image

The collected indicators suggest that the threat actor is focused on organizations in Israel, pointing to a targeted attack for espionage purposes.

Microsoft 365 mailbox abuse

In a report from cybersecurity company Group-IB, researchers say that HollowGraph uses hardcoded details to authenticate to the Microsoft Graph API via a compromised Microsoft 365 account.

Advertisement

The configuration file is stored as logAzure.txt to appear as a regular log file, and “includes the Microsoft Entra ID tenant ID, application (client) ID, client secret, target mailbox address, command-and-control (C2) domain, and two RSA keys.”

The two cryptographic keys are used to encrypt files before delivery to the attacker and to decrypt incoming tasks.

To remain under the radar, the threat actor creates calendar events dated May 13, 2050, with the title in specific formats. Commands and exfiltrated data are concealed within files attached to these calendar entries.

According to Group-IB’s analysis, HollowGraph supports only two commands that let it create calendar entries with stolen files in encrypted form and search for new ones with instructions from the threat actor:

Advertisement
  • GET, to search for entries in the format “Event ID: <7-char-taskID>,” download and decrypt received instructions
  • SEND, to create a calendar entry in the format “Boss{..}ID{..}” and attach stolen data encrypted with the public RSA key

The researchers describe the mailbox calendar as a “covert dead-drop,” with HollowGraph retrieving commands from events scheduled within a fixed one-hour window between 22:00 and 23:00 UTC on May 13, 2050.

Group-IB explains that the threat actor uses a hybrid encryption scheme that mixes RSA and AES-256-GCM algorithms to secure the communication over Microsoft Graph, keeping inbound and outbound channels cryptographically separated.

HollowGraph's operational overview
HollowGraph’s operational overview
Source: Group-IB

HollowGraph has a second, unencrypted communication channel through DNS tunnelling, which is used to receive new Microsoft Entra ID details (Entra ID: tenantId, clientId, clientSecret, and mailbox) to authenticate to Microsoft Graph.

It retrieves the values through IPv6 AAAA record queries to the attacker-controlled domain cloudlanecdn[.]com, and updates the configuration files stored as logAzure.txt.

“Each returned IPv6 address (16 bytes) yields 14 usable payload bytes,” Group-IB explains. The malware assembles the payload from these 14-byte chunks, decodes it as UTF-8 text, and stores the result according to the corresponding configuration field.

“HOLLOWGRAPH demonstrates a high level of technical sophistication. Its use of trusted cloud infrastructure for command-and-control, hybrid encryption, DNS tunneling for credential refresh, and highly selective victim targeting collectively suggest that the threat actor possesses significant technical capabilities and operational maturity,” – Group-IB

Advertisement

While the researchers cannot attribute HollowGraph to a known threat actor, their “analysis identified several technical similarities with the Iranian-nexus threat actor Lyceum.”

However, the available evidence is insufficient to attribute the activity to the threat actor with high confidence. By contrast, the researchers assess with high confidence that HollowGraph is linked to the Cavern framework.

Group-IB suggests that organizations monitor Microsoft Graph and Microsoft 365 audit logs for suspicious application-driven calendar activity, particularly events in the far future, and unusual subjects and attachments.

It is also recommended to look for indicators such as the ‘cloudlanecdn[.]com’ domain and the ‘logAzure.txt’ file, enforce Conditional Access, restrict and audit OAuth client-credential applications, and monitor outbound DNS for tunneling patterns.

Advertisement

article image

Security teams log 54% of successful attacks and alert on just 14%. The rest move through your environment unseen.

The Picus whitepaper shows how breach and attack simulation tests your SIEM and EDR rules so threats stop slipping by detection.

Get the whitepaper

Source link

Continue Reading

Tech

Plurality in iOS 27 beta code may not be iPhone Fold hints

Published

on

Code references in the iOS 27 developer betas mention an iPhone using multiple batteries. This could be related to the iPhone Fold, but it may have a more pedestrian explanation.

The occasional reference leaks in Apple’s beta operating systems often hint to future features that are on the way. For inbound devices like the iPhone Fold, they can sometimes point to big changes in the design.

According to an examination of the just-released fourth developer beta of iOS 27, MacWorld believes this is a sign that an iPhone with multiple internal batteries is on the way.

The code strings specifically say “The batteries in this iPhone are performing as expected.” Another states “The health of the batteries in this iPhone has significantly degraded.”

Advertisement

There’s also a mention of how “one of the batteries” isn’t a genuine Apple component.

The report highlights the use of plurals in the strings, meaning that multiple batteries are being discussed. Based on these strings alone, it’s entirely possible that they are for two internal batteries in a device.

Stepping back from the hype for a moment, the text may also refer to other situations where multiple batteries are in use. For example, the use of external MagSafe batteries, which basically adds a second battery to a single-battery iPhone.

Folding power

If we take the verbiage as factual, the most probable device that could use two batteries would be the iPhone Fold.

Advertisement

As a folding smartphone, it would use two halves of a body, joined together by the display, wiring, and a hinge. The problem is working out where to place the battery.

If it’s a single cell, the battery would have to be located in one of the two halves of the unit. This would be impractical, partly because most of the weight of the device would be on one side, as well as reducing the potential battery life.

A dual-battery arrangement would maintain battery life, as well as keeping the iPhone Fold balanced. One side would not weigh that much more than the other.

This is also not the first time we have heard of the iPhone Fold using multiple batteries. On July 10, a leaker proposed that there would be two cells in use, “3D Stacked” to get a capacity of around 5,000mAh.

Advertisement

At the time, it was also reasoned that there could be two batteries in use to maximize the available power.

It also wouldn’t be Apple’s first use of dual batteries in an iPhone. The iPhone X was shown in a 2017 teardown to have dual batteries in one body.

Source link

Advertisement
Continue Reading

Tech

At VB Transform 2026, Zillow’s engineering chief said AI ROI numbers only hold up if you measure before you build

Published

on

Zillow, the real estate technology company, doesn’t get one conversation with its customers. They move from a phone screen to a loan officer to a real estate agent, sometimes over months or years, and expect the context to follow them. A single chatbot could never carry that thread.

At VB Transform 2026, Zillow SVP of Engineering Toby Roberts and Glean co-founder and CEO Arvind Jain described how they built AI architecture meant to carry context across that entire journey — and why context, not raw data, turned out to be the harder problem to solve. Zillow’s products touch roughly 80% of U.S. real estate transactions each year, and the company has been using AI long before ChatGPT existed.

“We pretty quickly identified that we were going to need a persistent context layer that was going to meet our customers and the professionals wherever they were,” Roberts said.

Data was never the hard part

Roberts said Zillow’s AI effort started where most enterprise AI efforts start, with the data itself.

Advertisement

“We started with a large push around making sure our data did have the right foundation,” Roberts said. That meant a data mesh approach, clear data lineage and a governance structure with permissions and identity attached to the data itself.

None of that turned out to be the hard problem. The hard problem was building something that remembered where a customer was in their journey and carried that forward, no matter which surface they showed up on next.

“This context layer has to live to be able to support you where you are at any given point in your journey,” Roberts said. Zillow chose to own that layer itself rather than depend on a single external chat interface, a decision Roberts said the team reached quickly once it looked at the shape of a real transaction rather than a single conversation.

Why Zillow built its own architecture, and where Glean fits into it

Zillow built its own harness rather than route customers through a single model API. The team drew on 20 years of machine learning history behind products like Zestimate, leaning into smaller, task-specific fine-tuned models instead of one general-purpose model.

Advertisement

Internally, that harness runs alongside Glean. Roberts said Zillow now has thousands of Glean agents in production, handling repetitive tasks with tens of thousands of executions across the company. Glean’s pitch, per Jain, is centralizing that integration work once, through the Glean MCP gateway, rather than letting finance, legal and marketing each rebuild their own connections to the same systems.

That centralization is also a cost lever. Jain pointed to two mechanisms: model routing, which sends most tasks to smaller, cheaper models instead of defaulting to frontier models, and precomputed context, which avoids an agent burning tokens assembling its own context from scratch.

“Claude is also very slow because the first part of assembling that context actually takes forever,” Jain said. Routing that request through Glean instead, he said, can cut token consumption by as much as half.

What Zillow and Glean’s approach means for enterprises

Across data, cost and permissions, the session offered a few practical takeaways for enterprises building agentic AI on their own systems.

Advertisement

Build the measurement baseline before the AI push, not after. Roberts said Zillow’s ability to credibly attribute a 40% increase in shipped code to AI adoption rests on a DORA metrics baseline the team put in place years earlier, not on the AI rollout itself.

Centralize context once instead of letting every team rebuild it. Jain’s core argument for Glean’s platform is that duplicated integration work across finance, legal and marketing teams is a hidden cost most enterprises haven’t accounted for.

Don’t assume permission inheritance is enough for regulated data. Even with a permissions-aware context platform in place, Zillow layered hard rules and a standing compliance check on top for its most sensitive categories, rather than trusting the architecture to handle it automatically.

Treat context as a cost lever, not just a capability. Model routing and precomputed context were the two mechanisms Jain pointed to for cutting AI spend, both aimed at reducing wasted token consumption rather than adding new capability.

Advertisement

“Models by themselves are not enough to bring automation with AI inside your enterprise,” Jain said. “You do have to connect it with your enterprise context.”

Source link

Continue Reading

Tech

Soundcore Liberty 5 Pro Max Review

Published

on

Verdict

An impressively-feature laden true wireless that looks to take on the big guns and does an admirable job in many ways though its beaten when it comes to sound and noise cancellation. When it comes to call quality, these might just be the best but the less expensive Liberty 5 Pro have the same performance and are better for value

  • Excellent call quality

  • Stable fit

  • Strong noise cancellation

  • Lots of features

  • Battery life better than expected

  • Humdrum EQ modes are humdrum

  • AI assistant is not great

  • Bass-forward sound won’t be for everyone

  • Liberty 5 Pro model is less expensive and virtually the same

Key Features

Introduction

Soundcore has a knack for being prolific. In the past year, it has released several headphones as it looks to challenge its rivals for sheer quantity of releases

Advertisement

But quantity only matters so much if it’s backed up by quality. The Liberty 5 Pro Max are Soundcore’s flagship true wireless, surpassing the Liberty 5 Pro, which brings an extra tier of expectation in terms of performance.

What’s different? The charging case mostly, but there’s also the AI Note Taker feature that would fit neatly into a work/meeting environment.

From the features only, Soundcore want these to be the only earbuds you’ll ever need, but are they its best true wireless?

Advertisement

Advertisement

Design

  • Secure fit
  • Anonymous looks
  • Interesting charging case

Style is not what the Soundcore Liberty 5 Pro Max are about. Function? Absolutely

The looks are anonymous – a choice of black and titanium gold finishes doesn’t really dispel the kidney bean look that slots in the ear. The ear-fin design keeps them tucked in, and comfort levels are strong – once they’re in, there’s no discomfort I’ve felt, and the security of the fit means they don’t fall out.

There are five ear-tips to find a fit tailored to you, from extra small to large, as well as two sizes of ear-fins that you can clip on.

Soundcore Liberty 5 Pro Max designSoundcore Liberty 5 Pro Max design
Image Credit (Trusted Reviews)

Advertisement

The Liberty 5 Pro Max rely on touch controls, which are fine and usually respond, though it’s worth delving into the Soundcore app to shore up the control options. A single press did nothing until I went into the app and assigned play/pause; and a triple press does nothing either. Seems odd to me to leave them unassigned by default.

The charging case is a point of interest. This is different from the one that comes with the Liberty 5 Pro, featuring a larger screen; and like the charging case that comes with the JBL Live Beam 3, you can customise settings without reaching for the app.

Advertisement

It’s a little confusing at first figuring out the navigation. Swipe up to unlock and then swipe right (or left), and you can play with ANC, EQ, and playback. Or, swipe up after the screen is unlocked and visit more settings (AI Note Taker, Remote Camera and more). You can pick a custom wallpaper for the screen too through the Soundcore app.

Soundcore Liberty 5 Pro Max settingsSoundcore Liberty 5 Pro Max settings
Image Credit (Trusted Reviews)

It’s a little bit fiddly, but you can see how Soundcore are looking to add more functionality, reaching for the phone.

It does mean the charging case is a bit bulky compared to the more svelte options of others, but as I’ll get to, it has many purposes.

Advertisement

An IP55 rating means they’re protected against dust and low-pressure jets of water, making these a more than solid fit for workouts, especially with that secure fit.

Advertisement

One last thing, though. Getting these earbuds in and back into the case is surprisingly more challenging than I’d think. I’m always confused about which way they’re meant to go back into the case.

Features

  • LDAC Bluetooth
  • Triple Multi-point
  • AI Note Taker

When it comes to features, Soundcore has cast its eyes across the market and tried to incorporate everything from its rivals. It makes for an absolutely stuffed pair of true wireless earbuds.

Let’s start with Bluetooth, which covers the Bluetooth 6.1 standard with SBC, AAC and LDAC streaming. There’s Bluetooth multi-point for connecting to multiple devices at once, and like the Technics EAH-AZ100, the Soundcore connects to three devices at the same time. The wireless performance has been strong – no noticeable dropouts or flaky connections so far.

However, going full bore on Bluetooth multi-point means you won’t be able to partake in any LDAC goodness, and other instances where LDAC isn’t available is by toggling on the AI Sound Enhancement.

Advertisement

Advertisement
Soundcore Liberty 5 Pro Max app settingsSoundcore Liberty 5 Pro Max app settings
Image Credit (Trusted Reviews)

Speaking of, let’s kick off with the sound modes the Liberty 5 Pro Max offers. There’s HearID, which tests your hearing and creates a sound profile for you (say if you’re sensitive to treble, the in-app testing can compensate for this). If you want to use HearID across other devices, you must create a Soundcore account.

There’s the ‘Curated Sound Effects’ which include Signature, Clear Vocals, Powerful Bass, Calm and Soothing and Custom, which involves creating an 8-band EQ. I’d say stick with Signature as the other modes flatter to deceive. None improve audio in the way intended, which is something I’ve pointed out with other Soundcore headphones.

If the Curated Sound Effects don’t do anything, there’s AI Sound Enhancement, but giving this a listen, I found that while vocals sound clearer, there’s not much of an uptick elsewhere.

Then there’s Dolby Audio, which opens up the headphones to spatial audio (why it’s not called this, I don’t know). Again, it’s ok – the head tracking works, but switching to spatial audio results in a decrease in overall detail.

Soundcore Liberty 5 Pro Max appSoundcore Liberty 5 Pro Max app
Image Credit (Trusted Reviews)

Advertisement

Part of what Soundcore is offering with these earbuds is a big dollop of AI assistance, thanks to Anker’s Thus AI chip. While other brands use AI (or machine learning), Anker’s very much jumping on the supposed AI gravy train, with the “first large model compute-in-memory AI audio chip” that Soundcore says can deliver 150x computing power – although 150x more than what Soundcore doesn’t say.

Advertisement

Rather than go for Google or Alexa, Anker’s developed its own AI assistant (named Anka). It’s an interesting development, but the results could be better.

For one, she sounds stilted, robotic and not very conversational. I asked her for the weather, and that seemed fine until she kept repeating herself. So I asked a different question – the results from Wimbledon tennis – and instead of telling me the results from 2026, she referenced the 2024 final between Djokovic and Alcaraz. And then she wouldn’t stop talking about all the tennis tournaments.

During this kerfuffle, I asked her to play music again, but that seemed to confuse her – firstly she pronounced resume in the manner of a work resume, and then went back to talking about the weather. My feeling is that she’s very unfinished, or this LLM is old, and there’s little reason to give her a workout.

Soundcore Liberty 5 Pro Max recordingSoundcore Liberty 5 Pro Max recording
Image Credit (Trusted Reviews)

The most interesting aspect about the Liberty 5 Pro Max is the charging case, which adds even more functionality. The case, which also needs to be connected to your mobile device, can act as an AI Note Taker (I’ve seen someone use the case for this very reason). It took my rambling nonsense and transcribed it pretty accurately, although it did not there were two speakers when actually it was just me.

Advertisement

Advertisement

But, as a tool for capturing audio from meetings it’s an interesting use case, even if it comes with a catch. You can record the first 120 minutes for free, but after that, a membership and monthly fee are required.

Otherwise, you’ve got the usual assemblage of features in the Soundcore app: customising controls (bizarrely, play/pause is not assigned by default), carrying out a Fit Test to make sure the seal is correct, enabling wearing detection, Sound Mode (LDAC or AAC) and others.

Battery Life

  • 6.5 hours per charge
  • USB-C and wireless charging

Soundcore implies 6.5 hours of battery life with noise cancelling on, but that is overly cautious. Streaming a Spotify playlist for an hour at 50% volume, the headphones fell by 10%. I reckon you could get more from these earbuds.

The case holds 28 hours in total, while a five-minute spell over USB-C offers another four hours of playback. Wireless charging is also supported.

Noise Cancellation

  • Thus AI chip
  • Impressive call quality

Advertisement

The noise cancellation of the Soundcore Liberty 5 Pro Max is impressive. Thanks to the fit and noise cancellation power of the earbuds, they cut down on a great deal of sounds. People talking, busy areas, public transport- these earbuds do well on cutting out everyday noise.

Advertisement

With the Liberty 5 Pro Max, Soundcore is venturing out in the territory traditionally owned by the likes of Sony and Bose, and putting them through a pink noise test, they’re not far off but they aren’t better, with the Sony in first place (for me) and Bose behind, but as a less expensive alternative, the Liberty 5 Pro Max are a more than respectable option.

Soundcore Liberty 5 Pro Max in caseSoundcore Liberty 5 Pro Max in case
Image Credit (Trusted Reviews)

Call quality is where the Liberty 5 Pro Max excels. While their Guinness World Book of Records attempt is a bit daft (would other brands resort to this just for the attention?), it’s among, if not the best true wireless I’ve used for calls.

The AI-assisted microphones latch on to my voice, and there’s no background noise coming through. The earbuds might be doing something that alters my voice, but not much and nothing that takes away from the clarity.

Sound Quality

  • Warm presentation
  • Bass forward
  • Highs can sound unbalanced

Advertisement

Sound is a personal thing. Some prefer it one way, others another – it’s very much an “each to their own”, but there’s room for different types. After all, if everything sounded the same, that wouldn’t be interesting.

The Liberty 5 Pro Max go for a bass-heavy tuning, and it rather belies its status as the flagship model, as you’d think clarity and detail would be uppermost in the tuning. But these earbuds are warm, the 9.2mm Wool-Paper Diaphragm drivers deliver a rich and bassy approach to audio. Ultimately, they sound fine, but is fine what you want?

Advertisement
Soundcore Liberty 5 Pro Max touchSoundcore Liberty 5 Pro Max touch
Image Credit (Trusted Reviews)

It does depend on your device of choice. I’ve tested these wireless earphones on two smartphones that filter through a different sound – the Soundcore remain bass-heavy, but I found more clarity and detail present on one than I did the other.

Every track I listen to takes on a bassier response, whether it’s Norah Jones Don’t Know Why to Soundgarden’s Black Hole Sun. Voices come through clearly and with warmth but the main problem is that the Soundcore don’t relay as much detail or clarity as I’d like.

They’re also not the most exciting to listen to, which is not to say that they’re plodding, but every track is gripped by the same sound profile.

Advertisement

With GoGo Penguin’s Erased by Sunlight the highs are clear, and there’s some variation to how those highs pan out, but it’s not the brightest treble performance and there are times where it sounds a little unbalanced.

Advertisement
Soundcore Liberty 5 Pro Max in frontSoundcore Liberty 5 Pro Max in front
Image Credit (Trusted Reviews)

The smoothness of the earphones means that insight isn’t as high as, say, the Sony WF-1000XM6, and they’re not particularly dynamic. Pair them with a track or music genre that its bass energy works well with – like K-pop – and they’ll be very enjoyable.

I noticed that there is a less-than-natural tone to music as well, but overall I found the Liberty 5 Pro Max enjoyable enough; the soundstage is solidly wide, and if you like bass you’ll enjoy the sub-bass power and thump these deliver. That said, the JBL Live Beam 3 sound similar but less emphasis on bass and more clarity and detail. In fact, even the older Sony WF-1000XM5 sound clearer and more balanced, tonally.

Should you buy it?

If you’re a serial phone caller

Quite possibly the best wireless earphones for calls, it doesn’t seem to matter where you are, your voice will get through with no noise.

Advertisement

You expect high fidelity sound

Advertisement

The one obvious area where the Soundcore are humdrum. They sound fine, but you need to do better than fine to compete.

Advertisement

Advertisement

Final Thoughts

As an overall package, the Liberty 5 Pro Max packs a lot of bang for buck, which is what you’d expect from Soundcore. Is it enough to challenge and undercut the big players? No, as the performance is lacking in a few areas.
 
When it comes to sound, I think you’re placing an emphasis on balance, clarity and insight at this price, and the Liberty 5 Pro Max’s bassy sound can’t compete with recent 2026 releases of Sony, Status Audio and even Samsung. However, if you’re someone who likes dance, R&B, rap, electronic – I think these earphones will suit that sound.
 
Call quality is excellent, the noise cancellation is very good; the fit and comfort are also areas where the Soundcore are strong.
 
The Anka assistant is a miss though, and while the AI Note Taker with the charging case is an interesting idea, who’s likely to pay for a membership? Speaking for myself, it won’t replace Otter AI for me.
 
And ultimately, Soundcore offers a less expensive option in the Liberty 5 Pro. It doesn’t come with the same charging case, but it’s more or less the same. In terms of value, those are the Soundcore earphones I’d go for.

How We Test

The Soundcore Liberty 5 Pro Max were tested for five weeks with ANC, Bluetooth performance, call quality and sound tested in real world settings

  • Tested for five weeks
  • Tested with real world use
  • Battery drained

FAQs

What’s the difference between the Liberty 5 Pro and Liberty 5 Pro Max?

The main difference between the two Soundcore earbuds is the charging case. The Liberty 5 Pro Max has a different design with a bigger screen and more functionality (such as AI Note Taker recordings). Otherwise, the wireless earbuds are exactly the same.

Advertisement

Full Specs

  Soundcore Liberty 5 Pro Max Review
Manufacturer Soundcore
IP rating IP55
Battery Hours 28
Wireless charging Yes
Fast Charging Yes
Release Date 2026
Audio Resolution SBC, AAC, LDAC
Driver (s) Liberty 5 Pro model is less expensive
Noise Cancellation? Yes
Connectivity Bluetooth 6.1
Colours Black, Titanium Gold
Frequency Range – Hz
Headphone Type True Wireless
UK RRP £199.99
USA RRP $229.99

Source link

Continue Reading

Tech

SEM-Guided Low-kV FIB Finishing for Leading-Edge Semiconductor Failure Analysis

Published

on

Discover how the ZEISS Crossbeam 750 FIBSEM sets a new benchmark for precise TEM lamella prep, tomography, and advanced nanofabrication. This delivers better resolution, better SNR, larger usable FOV, and shorter acquisition times. Learn how uninterrupted FIB milling will reduce damage and rework, accelerate time to TEM, and increase first pass success—so your FA, yield, and materials teams make faster, confident data driven decisions.

Register now for this free webinar!


Join us to discover how the new ZEISS Crossbeam 750 with its see while you mill capability delivers precision and clarity—every time—for demanding FIB-SEM workflows. Designed for extremely challenging TEM lamella preparation, tomography, advanced nanofabrication, and APT‑ready lift‑out, Crossbeam 750 combines a new Gemini 4 SEM objective lens, a double deflector, and a next‑generation scan generator to elevate both image quality and process confidence. You’ll learn how better resolution and better SNR translate into more image detail and shorter acquisition times, while the low‑kV FIB performance enables more precise lamella prep.

We’ll demonstrate High Dynamic Range (HDR) Mill + SEM—an interwoven SEM/FIB scanning mode that suppresses FIB‑generated background. This enables immediate, clean visual feedback, even during nudging the FIB pattern live while milling . The result: confident endpointing with uninterrupted FIB milling and pristine, metrology‑grade surfaces with the lowest possible sample damage.

Advertisement

This session is ideal for semiconductor failure analysists, yield teams and materials scientists seeking faster time‑to‑TEM, higher first‑pass success, and consistent outcomes at low kV. See how Crossbeam 750 empowers you to make earlier stop‑milling decisions, cut rework, and reliably plan turnaround time—so you can move from sample to insight with confidence.

Register now for this free webinar!

Source link

Advertisement
Continue Reading

Tech

LG Monitors Silently Install Adware-Like App On Windows PCs

Published

on

VideoCardz reports that connecting certain LG monitors to Windows PCs can trigger Windows Update to automatically install the LG Monitor App Installer, which runs at startup and repeatedly displays McAfee trial promotions. From the report: Gamers Nexus reproduced the behavior with an LG UltraGear 34GX900A-B after receiving reports from monitor owners. Windows Update first installed LG extension and software component packages. Windows Reliability Monitor showed that LG Monitor App Installer appeared one minute later. The installation did not display a consent prompt or require the user to approve the download.

Gamers Nexus tested the application across 32 consecutive system boots. It displayed a McAfee promotion during 31 of them. On the remaining boot, it promoted one of LG’s own monitor utilities. The McAfee popup offered a 30-day trial that would convert into a paid subscription. The behavior does not appear to be limited to newly purchased displays. Gamers Nexus also received the popup on an LG UltraFine 32UN880-B purchased three years earlier. User complaints about LG Monitor App Installer date back to at least 2024, although the recent increase in reports suggests that more models may now be receiving it.

Source link

Continue Reading

Tech

An Ebike Company Was Sued for Misleading Info on Safety. It Points to a Big Problem

Published

on

Amazon and UL, a company that tests and certifies that products meet safety standards, settled a lawsuit in July with several Chinese companies that manufacture ebikes under the Aipas brand name.

The US companies accused the Chinese firms in January of claiming in Amazon listings and on Aipas’ website that the ebikes had been certified by UL, giving recognizable, brand-name assurance to online shoppers worried about risks like ebike lithium-ion battery fires. But that wasn’t true. On July 15, a federal judge signed off on a permanent injunction in which the companies agreed that they would no longer use the UL mark. It also bars them from “assisting, aiding, or abetting any other person or business” in doing the same.

The filing notes that the Chinese companies didn’t admit liability or wrongdoing tied to Amazon’s and UL’s accusations of knowingly using fraudulent safety-certification marks. (The enterprises involved are Jiangmen Meijiasheng Bicycle, Hong Kong Manchester International Trading, Shenzhen Aibosi Sport Technology, Guangzhou Aierfeile Sport Technology, and the individual Tang Shuhui, who the lawsuit alleges was involved in an Amazon selling account.)

But WIRED has found a Facebook account associated with Aipas Ebike still running ads that include UL’s bright red logo. A WIRED reporter was served one of the ads in mid-July, even after the companies had agreed to a permanent injunction. At least one other ad using the UL mark has been actively running on Facebook since April, months after the lawsuit was filed, according to Meta’s Ad Library. Another active ad including the UL mark and first posted in May appeared to disappear from the Ad Library after WIRED contacted both Aipas and UL for comment.

Advertisement

WIRED also found that while some Aipas ebikes and their batteries did eventually receive safety certifications from a nationally recognized organization, seemingly months after the company began advertising its UL safety marks, some of those certificates are now inactive.

A spokesperson for Amazon declined to comment on the lawsuit. Bradley Carlson, a spokesperson for UL, also declined to comment on the lawsuit but said the UL team is “aware and working to resolve” the issues related to the Facebook ads. Neither Aipas Ebike nor the lawyer representing the Chinese businesses in court responded to multiple requests for comment.

While fights over fraudulent product safety certifications don’t always break out into public view, “this is a common problem and has been a common problem for quite some time,” says Donald Mays, a longtime product safety expert who now runs his own consulting firm.

The trend has troubling implications, especially for electric mobility devices like ebikes. A report published by the US government in April found that 45 fatalities between 2017 and 2024 were associated with fires related to lithium-ion batteries in mobility devices, 19 of them related to ebikes alone. The New York City Fire Department, which tracks lithium-ion battery fires, logged 277 fires tied to the tech in 2024, compared with 268 in 2023, and linked them to ebikes.

Advertisement

Many of the country’s ebike fires were associated with replacement battery packs, as noted by the Consumer Product Safety Commission, an independent federal agency. The agency has urged consumers to use only micromobility devices “designed, manufactured, and certified for compliance by an accredited laboratory with the applicable consensus safety standards,” according to its website.

The false certification is more prevalent on online marketplaces like Amazon, says Gabe Knight, a senior policy analyst at Consumer Reports. “Just as consumers are more at risk to buy a counterfeit product, period, from third-party sellers, they are more at risk to buy a product with a fabricated certification mark,” she says. In general, retailers who sell products to consumers directly, rather than simply hosting sales, do a better job of guaranteeing their merchandise’s safety claims, she says; these retailers usually have internal compliance programs to verify manufacturers’ basic safety claims.

Source link

Advertisement
Continue Reading

Trending

Copyright © 2025