Normale weergave

iPhone 18 With 9GB RAM Still Won't Support Two New iOS 27 Features

3 Juli 2026 om 21:10
The lower-end iPhone 18 and iPhone 18e will be equipped with 9GB of RAM, up from 8GB in the iPhone 17 and iPhone 17e, according to supply chain analyst Ming-Chi Kuo.


In a social media post, Kuo said the 1GB increase in RAM will ensure that Apple Intelligence features continue to run smoothly on the pair of devices.

The higher-end iPhone 18 Pro, iPhone 18 Pro Max, and foldable "iPhone Ultra" will each have the same 12GB of RAM as the iPhone 17 Pro models, added Kuo.

Apple is expected to release the iPhone 18 Pro, iPhone 18 Pro Max, and the iPhone Ultra in September this year, while the iPhone 18, iPhone 18e, and a second-generation iPhone Air will reportedly be released around March 2027.

Even with an increased 9GB of RAM, two new Apple Intelligence features coming with iOS 27 will not be available on the iPhone 18 and iPhone 18e, including the ability to customize the expressiveness and pace of Siri's voice and a "major boost in accuracy" for speech-to-text dictation. This is because the latest advanced on-device Apple Intelligence model powering those two features requires a minimum of 12GB of RAM.


Here are the confirmed RAM amounts for the iPhone 17 series:
  • iPhone 17e: 8GB

  • iPhone 17: 8GB

  • iPhone 17 Pro: 12GB

  • iPhone 17 Pro Max: 12GB
The rumored RAM amounts for the iPhone 18 series and iPhone Ultra:
  • iPhone 18e: 9GB

  • iPhone 18: 9GB

  • iPhone 18 Pro: 12GB

  • iPhone 18 Pro Max: 12GB

  • iPhone Ultra: 12GB
The second-generation iPhone Air will presumably have 12GB of RAM, too.

RAM and NAND storage chips are currently expensive due to a supply shortage, resulting in Apple raising prices on more than a dozen products last month. For now, iPhones avoided price increases, but analysts have estimated that the iPhone 18 and iPhone 18e could cost $100 to $200 more than the iPhone 17 and iPhone 17e.
Related Roundups: iOS 27, iPadOS 27, iPhone 18
Related Forum: iPhone

This article, "iPhone 18 With 9GB RAM Still Won't Support Two New iOS 27 Features" first appeared on MacRumors.com

Discuss this article in our forums

  •  

The MacRumors Show: Latest iPhone 18 Pro Leaks and Rumors

3 Juli 2026 om 18:13
On this week's episode of The MacRumors Show, we discuss the latest leaks and rumors surrounding the iPhone 18 Pro.



Tata Electronics, one of Apple's manufacturing partners in India, was hit by a ransomware attack that resulted in more than 200,000 internal files being posted online, including component lists, supplier data, and images of ‌iPhone 18 Pro‌ test units. The material was obtained illegally, and MacRumors has not seen the stolen files directly.

Among the leak's more surprising details is that the C2 modem may be limited to international models, succeeding the C1 and C1X modems already used in the iPhone Air, iPhone 17e, and M5 iPad Pro. A bill of materials for the U.S. variant instead lists Qualcomm components, including the SDX80M and other parts associated with mmWave 5G, a feature Apple's C-series modems still lack. U.S. carriers have spent years building out mmWave networks, making it a harder feature to drop from the Pro lineup than it was from the ‌iPad Pro‌ or a rumored cellular MacBook.

The leak also lined up with existing rumors of a more uniform rear finish than the iPhone 17 Pro's two-tone design and camera lenses that protrude further from the plateau. Separately, a leaked SIM tray offered another look at the rumored Dark Cherry color option, expected to join Light Blue, Dark Gray, and Silver as this year's lineup, with no black model.

On the camera side, the rumored variable aperture main camera is this year's headline upgrade, though it's unclear how much of a real-world difference it will make compared to genuinely transformative jumps in past generations, like the 8x telephoto lens introduced on the ‌iPhone 17 Pro‌ or the and 48-megapixel sensor from the iPhone 14 Pro.

Pricing looms over rumors about the device. Apple has now raised prices across much of its lineup, citing a global memory chip shortage driven largely by AI data center demand. The Apple TV and HomePod price hikes drew particular criticism, since both products are several years old with no accompanying hardware changes.

Estimates for the ‌iPhone 18 Pro‌ itself point to a starting price as high as $1,399, up from $1,099 for the ‌iPhone 17 Pro‌, an increase weighed against a modest RAM and battery bump, a smaller Dynamic Island, and a more capable N2 chip. A rumored 5G-via-satellite feature will likely offer limited access to specific services like Siri or Maps rather than full Safari browsing.

Micron's chief business officer suggested that Apple's own aggressive supplier negotiating tactics may have contributed to the memory shortage now driving prices up industry-wide. The MacRumors Show has its own YouTube channel, so make sure you're subscribed to keep up with new episodes and clips.



You can also listen to ‌The MacRumors Show‌ on Apple Podcasts, Spotify, Overcast, or other podcast apps. You can also copy our RSS feed directly into your player.



If you haven't already listened to the previous episode of The MacRumors Show, catch up to hear our discussion about potential price rises for the iPhone 18 lineup following Apple's wave of hikes yesterday, as well as plans for the Apple Watch Ultra 4 and camera-equipped AirPods.

Subscribe to ‌The MacRumors Show‌ for new episodes every week, where we discuss some of the topical news breaking here on MacRumors, often joined by interesting guests such as Kayci Lacob, Kevin Nether, John Gruber, Mark Gurman, Jon Prosser, Luke Miani, Matthew Cassinelli, Brian Tong, Quinn Nelson, Jared Nelson, Eli Hodapp, Mike Bell, Sara Dietschy, iJustine, Jon Rettinger, Andru Edwards, Arnold Kim, Ben Sullins, Marcus Kane, Christopher Lawley, Frank McShan, David Lewis, Tyler Stalman, Sam Kohl, Federico Viticci, Thomas Frank, Jonathan Morrison, Ross Young, Ian Zelbo, and Rene Ritchie.

‌The MacRumors Show‌ is on X @MacRumorsShow, so be sure to give us a follow to keep up with the podcast. You can also email us at podcast@macrumors.com or head over to The MacRumors Show forum thread. Remember to rate and review the podcast, and let us know what subjects and guests you would like to see in the future.
Related Roundup: iPhone 18 Pro

This article, "The MacRumors Show: Latest iPhone 18 Pro Leaks and Rumors" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Julian Andres Klode: The pandemic of incomplete OpenSSL error handling

Recently a person reported a bug in APT saying that TLS is failing on FIPS systems with MD5 errors, and suggested we call ERR_clear_error() around TLS operations.

Like any serious software engineer would do, I said No. Just because one component failed to handle its errors does not mean I can go around and discard all errors in another place - the program should have failed earlier (or discarded the error when it was determined to be safe).

Little did I know that people have for years been using this approach as a best practice: Codebases everywhere are littered with calls to ERR_clear_error() before performing TLS, and upstream themselves suggest to do just that.

This is a major, systemic, pandemic of incomplete error handling. We cannot just discard unrelated errors if they become inconvenient. The code that caused the error needs to be fixed to handle it.

This isn’t all. It seems many authors are not familiar with libraries using a stack of errors, and there is a second anti-pattern:

Call an OpenSSL operation, check the top-level error, and then discard all errors if deemed “not too bad”. This has the same problem: Unrelated errors get silently discarded.

I would strongly encourage everyone to inspect their code bases for any calls to ERR_clear_error() and whether they are safe or one of the bad patterns above (or maybe you find a new pattern). You may want to use error stack functionality ofERR_set_mark (https://docs.openssl.org/3.4/man3/ERR_set_mark/) to essentially “push” and “pop” an error context of your own as a guard around multiple OpenSSL operations.

To the OpenSSL authors, I would suggest not encouraging devastating security practices that fundamentally break any trust in software.

We need to do better than this.

  •  

Sketchy Rumor Claims Apple Watch Series 12 Could Introduce Sensor in Band

3 Juli 2026 om 17:54
The Apple Watch Series 12 could ship with a new health sensor built directly into one of its bands, according to a sketchy rumor from a known leaker.


The leaker known as "Kosutami" says the sensor will be injection-molded into a silicone band, and only a silicone band, apparently because Apple has not yet solved how to embed similar hardware in bands made from other materials. No detail was given on what the sensor is actually meant to measure.

[Censo-Wat]ch Series 12 gonna have a sensor on band, injection molded(to the silicon band, they hasn't yet figured out how to putting a sensor on band with other materials now.).

— Kosutami (@Kosutami_Ito) July 3, 2026


This is not the first time band-based sensing has been floated for Apple Watch, and the idea has reappeared repeatedly over the years, mainly as a result of Apple's patent filings. Back in 2017, a patent for modular band links that could each house a different function emerged, including blood pressure monitors and sweat sensors, followed later that year by a self-adjusting band patent that Apple said could also improve the accuracy of onboard biometric sensors by ensuring a snugger fit.

In 2019, a batch of smart band patents covered skin-texture authentication and other embedded functionality, and in 2021 a dedicated hydration sensor patent proposed the use of electrodes against the skin to measure electrolyte concentration in sweat. None of that patent activity has led to a shipping product so far, and Apple routinely files patents for concepts that never reach customers.

Kosutami's credibility as a source is mixed. While Apple has clearly researched adding sensors to Apple Watch bands extensively, the rumor is new, uncorroborated, and should be taken with a heavy pinch of salt for now.

The Apple Watch Series 12 is likely to be a minor upgrade featuring a new chip and little else is known about the device. It's expected to launch this fall alongside the iPhone 18 Pro and Apple's first foldable iPhone, continuing to use the same design introduced with the Series 10.
Related Roundup: Apple Watch 11
Buyer's Guide: Apple Watch (Caution)

This article, "Sketchy Rumor Claims Apple Watch Series 12 Could Introduce Sensor in Band" first appeared on MacRumors.com

Discuss this article in our forums

  •  

iOS 27 Beta Hints at New Apple Product Such as 'AirPods Ultra'

3 Juli 2026 om 17:44
The second iOS 27 developer beta seemingly hints at a new Apple product, according to code uncovered by app designer and developer Sam Henri Gold.


The code mentions a product codenamed B790 that can relay "two images from cameras on either side of [a] user's head." Gold speculated that the code could be referring to Apple's rumored smart glasses, but a more likely possibility is AirPods with cameras, which are reportedly further along in development compared to the glasses. AirPods Pro 3 were codenamed B788, while the smart glasses are reportedly codenamed N50.

Apple is rumored to be working on both "AirPods Ultra" and smart glasses with cameras, and Visual Intelligence is expected to be a core feature of these products. While wearing the camera-equipped AirPods or glasses, you would be able to look at something such as a house plant and have Siri provide you with information about it.

Visual Intelligence is already available on the iPhone 15 Pro and newer. On iOS 27, the feature is accessible through the Camera app via a new "Siri" mode.

The code appears to instruct Visual Intelligence on how to function on the mystery device. It says the feature works with landmarks, text, and known objects, with the Eiffel Tower in Paris and a coffee mug cited as two examples.

/System/Library/AssetsV2/com_apple_MobileAsset_UAF_IF_PlannerOverrides/purpose_auto/9aaa6a204118137235983cc3f1eecae8a125c550.asset/AssetData/PCC/system_prompt_metadata/system_prompt.json seems to hint at some smart glasses codenamed B790 pic.twitter.com/IEmbfleth4

— sam henri gold (@samhenrigold) July 3, 2026

The code does not reveal much else, but it serves as yet another indication that Apple is actively developing more camera-equipped wearables.

According to the latest reporting from Bloomberg, both the "AirPods Ultra" and the smart glasses are currently slated to launch in late 2027.
Related Roundups: AirPods 4, iOS 27, iPadOS 27
Buyer's Guide: AirPods (Caution)
Related Forum: AirPods

This article, "iOS 27 Beta Hints at New Apple Product Such as 'AirPods Ultra'" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Fourth of July Sales: Save on AirTag 2, M3 iPad Air, Charging Accessories and More

3 Juli 2026 om 16:40
This week's best deals include ongoing all-time low prices on AirTag 2, plus great discounts on the previous-generation M3 iPad Air, for anyone who wants to avoid price hikes on the M4 models. We're also tracking Fourth of July savings from popular accessory makers this weekend.

Note: MacRumors is an affiliate partner with some of these vendors. When you click a link and make a purchase, we may receive a small payment, which helps us keep the site running.

Fourth of July Deals



It's Fourth of July weekend, and we're tracking numerous sales across popular accessory companies right now. This includes sitewide deals at Anker, B&H Photo, Best Buy, OtterBox, ZAGG, and more. Many of these savings events will end on Sunday, July 5, so be sure to shop them this weekend before they're gone.

  • Anker - Get up to 40% off charging accessories

  • AT&T - Get iPhone 17 Pro Max for up to $1,100 off

  • B&H Photo - Save on computers, photography equipment, and more

  • Best Buy - Save sitewide on Apple gear and more

  • Hyper - Get up to 25% off

  • JBL - Get up to 40% off speakers and headphones

  • OtterBox - Get 25% off sitewide

  • ZAGG - Get 25% off sitewide


AirTag 2



  • What's the deal? Take up to $10 off AirTag 2

  • Where can I get it? Amazon

  • Where can I find the original deal? Right here




Apple's AirTag 2 is still available for the all-time low price of $89.00 this week, down from $99.00. This sale is on the 4-Pack of the AirTag 2, and it's one of the very few Prime Day deals that's stuck around since the event ended last week.

M3 iPad Air



  • What's the deal? Save on previous generation iPad Air tablets

  • Where can I get it? Best Buy

  • Where can I find the original deal? Right here



Best Buy's Fourth of July sale is currently running, and it features a big sale across Apple's previous generation M3 iPad Air tablets. You can find up to $400 off these devices during the event, and they're particularly notable when compared to the recently increased prices of the 2026 M4 iPad Air.

11-inch



13-inch




Samsung



  • What's the deal? Save on Samsung's newest monitors

  • Where can I get it? Samsung

  • Where can I find the original deal? Right here



Samsung's newest monitors have been further discounted this week, with big savings on the Odyssey G8, ViewFinity S8, and Movingstyle Essential. All of these have discounts that have been applied automatically.

AirPods 4



  • What's the deal? Take $30 off AirPods 4

  • Where can I get it? Amazon



Amazon is offering the AirPods 4 for $99.00 this week, down from $129.00. This is another Prime Day deal that's stuck around all week, and it's an overall solid second-best price on the earbuds.

If you're on the hunt for more discounts, be sure to visit our Apple Deals roundup where we recap the best Apple-related bargains of the past week.




Deals Newsletter


Interested in hearing more about the best deals you can find in 2026? Sign up for our Deals Newsletter and we'll keep you updated so you don't miss the biggest deals of the season!




Related Roundup: Apple Deals

This article, "Fourth of July Sales: Save on AirTag 2, M3 iPad Air, Charging Accessories and More" first appeared on MacRumors.com

Discuss this article in our forums

  •  

12 New Things Your iPhone Can Do in iOS 27

3 Juli 2026 om 14:13
Apple will release iOS 27 in September, and despite the company's focus this year on refining its flagship operating system and nixing bugs, there are still many additional features on the way, not least of which is Apple's new context-aware Siri, re-tooled for the generative AI era.


This year's major iPhone software update isn't all about AI, though, as the following feature list testifies. iOS 27 remains in developer beta, while a public beta is expected to arrive this month.

Extend Your Photos and Lock Screen Wallpaper



A new wallpaper extension feature in iOS 27 uses Apple Intelligence to automatically expand a photo beyond its original boundaries so it fills the entire Lock Screen more naturally. If a photo is cropped too tightly, doesn't match your iPhone's aspect ratio, or it leaves empty space when positioned on the Lock Screen, iOS 27 can generate additional image content around the edges with the "Extend" option. It will analyze the existing image and create matching background details that blend with the original photo, so there's no need for aggressive cropping. The Extend option can also be found in the Photos app.

Organize Your Safari Tabs



Safari uses Apple Intelligence to automatically organize your open tabs into related topics, making them easier to browse and manage. For example, if you're shopping for a new refrigerator while planning a vacation, Safari groups tabs for each activity into separate topic-based collections. You can enable this feature by opening Tab View, tapping the three-line icon in the top-right corner, and turning on Automatically Create Topics.

Use Natural Language for Reminder and Calendar Entries



In the Reminders app, you can now create reminders using natural language, and Apple Intelligence will automatically fill in details such as the date, time, and location. For example, if you type "Pick up Dad at 6 p.m. tonight" or "Send the photos to Eric tomorrow at 3 p.m.," Reminders extracts the relevant information and adds it to the reminder automatically.

The Calendar app also supports natural language input, identifying people, dates, and locations as you type. You can then tap the suggested information to quickly add it to your event.

Inline Reply to Messages From Android Users



In the Messages app, you can now long press on a specific message from an Android user (a green chat bubble) and get an option to reply to it. That contrasts with iOS 26, where inline replies are limited to blue bubbles sent over Apple's iMessage platform.

Upgrade Your Wallet Passes



Apple has expanded the redesigned pass experience in the Wallet app with iOS 27, bringing the enhanced design introduced for airline boarding passes in iOS 26 to additional pass types. Membership, gift, loyalty, and rewards cards can now use a new Poster Generic layout with a background image, a logo, customizable header and footer fields, main information, and an optional barcode. Passes can also include up to two quick actions at the bottom, such as getting directions to a venue or checking a rewards points balance.

Describe Your Next Shortcut



Apple Intelligence makes creating shortcuts much more accessible by letting you build them with natural language. Tapping New Shortcut in the Shortcuts app opens a Describe a Shortcut interface, where you simply explain what you want the shortcut to do. You can describe a single action or a more complex automation, and Apple Intelligence selects the appropriate actions and assembles the shortcut automatically.

For example, you could create a shortcut that sets tomorrow's alarm based on your first Calendar event, enables Sleep Focus, and dims the bedroom lights each evening, or one that displays your first meeting, the weather, and today's reminders every morning. Like existing shortcuts, these automations can be triggered by factors such as the time of day, your location, app activity, system events like taking a screenshot, incoming notifications, and more.

Get a Better Flyover of Your City



Apple is enhancing the Flyover feature in Maps with iOS 27, using Apple Intelligence models to improve aerial imagery with greater texture and sharper detail. Trees, buildings, and other landmarks appear more realistic, with more accurate geometry and improved lighting effects.

According to Apple, the update makes select cities around the world look more lifelike, from the shape of individual trees to the way light reflects off glass skyscrapers. Flyover already offers detailed 3D views of landmarks, roads, parks, and buildings in more than 350 cities, so iOS 27 is essentially using AI to further improve the quality of those visualizations.

Ask Siri What Your Camera Sees



The iOS 27 Camera app has a new "Siri" mode that is available in addition to the video, photo, and other camera modes. The new mode uses Visual Intelligence to identify objects in the frame and provide information about them. It can be used to identify plants, animals, food, and more. If it's food you want info on, for example, it can tell you what it is, and how many calories are in it.

Other examples ‌Siri‌ mode can be used for include capturing a photo of an event flyer and adding a date to the Calendar app, text translation, splitting a bill, and more.

Make Your Lock Screen Clock More Compact


lock screen
A new compact clock mode is available as a new Lock Screen layout option in iOS 27. Found in the top-right corner of the Font & Color panel, the option moves the time from its traditional large, centered position to a much smaller format alongside the date and widgets at the top of the screen. It's a nice option to have if you like a cleaner Lock Screen look that shows off your wallpaper more fully, and it's the complete opposite effect introduced in iOS 26 that stretches the clock down the screen.

Generate Photo-realistic Images with Image Playground



Apple's Image Playground has been a bit of an embarrassment up until now, being limited to cutesy re-renderings of actual photos and sketched illustrations. But the app gets a major update in iOS 27. Powered by a new generative model that runs on Private Cloud Compute, it can produce high-quality images in virtually any style, including photo-realistic output for the first time. All generated images automatically carry a hidden SynthID watermark to identify them as AI-generated. The app now also supports photo-based editing in addition to creation.

Tweak Liquid Glass Opacity


settings
If Apple's Liquid Glass UI embrace in iOS 26 wasn't your thing, there's a way to tone it down. In iOS 27, Apple added a full Liquid Glass slider under Settings ➝ Appearance ➝ Liquid Glass. It changes the translucency of Liquid Glass elements, and you can choose a clear version of Liquid Glass that allows some of the background to show through, select a more opaque, tinted version that improves the legibility of text, or choose something in between.

Create a Slideshow from Any Album



In iOS 27, you can create a slideshow from any album, collection, or selection of photos in the Photos app, rather than being limited to Memories. Open an album or select multiple photos, tap the menu button in the top-right corner, and choose Start Slideshow. Slideshows can be customized with different transition styles, slide durations, and background music, and then saved as a video or shared directly to social media.
Related Roundups: iOS 27, iPadOS 27

This article, "12 New Things Your iPhone Can Do in iOS 27" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Colin Watson: Free software activity in June 2026

3 Juli 2026 om 13:38

My Debian contributions this month were all sponsored by Freexian.

You can also support my work directly via Liberapay or GitHub Sponsors. Thanks to new sponsor @fernandocc17!

bugs.debian.org documentation

Sometimes I ask users to file bugs upstream themselves because I think they’d be better placed to have the ensuing discussion with the upstream maintainers directly rather than everything having to go through me. Of course sometimes they don’t want to do so, perhaps because it requires creating another account somewhere. Rarely, I’ve had people refuse to do this because the letter of the bug tracking system’s documentation seemed to tell them not to. Since I don’t believe that was the intention, I corrected this.

OpenSSH

I spent two and a half hours extensively revising debian/copyright so that lrc believes it to be in sync with the output of licensecheck. I’m unconvinced that this was remotely worth the mind-numbing effort - as far as I can tell, it makes no difference to the practical legal position, to policy compliance, or to any reasonable user - but the DFSG team increasingly seems to be objecting to any discrepancies here any time a package crosses their radar, so this was a pre-emptive measure to avoid problems with some upcoming trips through the NEW queue.

OpenSSL 4.0

I fielded a few of the OpenSSL 4.0 build failure bugs:

Python packaging

New upstream versions:

pytest 9.1 was uploaded to unstable this month, resulting in quite a few new build/test failure bugs. I tried to keep on top of as many of these as I could; most of them had one of a small number of similar causes.

Python 3.14 became the default Python version in unstable towards the end of the month, starting a transition. These usually involve quite a bit of work, and there’s much more to do, but I fixed a few things:

Other build/test failures:

Other bugs:

Rust packaging

New upstream versions:

Code reviews

Other bits and pieces

  •  

Camera-Equipped AirPods Pro Development 'Suspended,' Leaker Claims

3 Juli 2026 om 12:10
Development of Apple's rumored camera-equipped AirPods Pro has been halted, according to the leaker and prototype collector known as "Kosutami."


In a blunt post on X referencing a June post about the product "case" being "concluded," the leaker appeared to be correcting it to say that the project has been "suspended." No other details were provided.

The claim comes as quite a surprise, given that Bloomberg reported in May that the camera-equipped AirPods Pro were nearing completion and had reached an "advanced" testing stage, suggesting early mass production could be imminent.

That said, the same report also noted that Apple could also opt to wait to launch the AirPods if it was not satisfied with the quality of the ‌Visual Intelligence‌ features in development for ‌Siri‌.

The AirPods Pro's built-in cameras are said to feed visual information about the wearer's surroundings to Siri. The cameras would not be for taking photos or videos, but used solely for AI purposes. "Kosutami" claimed in February that the infrared cameras will allow for the AirPods Pro to be "connected with Apple Intelligence," and other reliable sources have since corroborated that claim. The new AirPods have been in development for around four years.

Apple reportedly wanted to start selling the camera-equipped AirPods Pro in the first half of 2026, but the product's launch was held back because the smarter, AI version of ‌Siri‌ was still being developed – it exists in the current iOS 27 beta, but it won't be widely available until the release of iOS 27 in September.

Bloomberg said Apple was expecting strong demand for the new AirPods Pro and had operations teams working to secure components for a launch in challenging circumstances, owing to the industry-wide shortage of memory chips and other silicon. It's not clear whether this is the reason behind Kosutami's claim that the project has been suspended.

Kosutami is best known as a collector of prototype Apple hardware, but they have occasionally shared accurate information about Apple's future product plans. For example, around 10 months before the iPhone 16 Pro launched, they correctly revealed that it would feature a metal-enclosed battery.

They also provided an early look at an Apple Watch band made from Apple's controversial FineWoven material. However, Kosutami incorrectly claimed that AirPods Pro 3 were imminent in August 2024.
Related Roundup: AirPods Pro 3
Buyer's Guide: AirPods Pro (Neutral)
Related Forum: AirPods

This article, "Camera-Equipped AirPods Pro Development 'Suspended,' Leaker Claims" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Apple Responds to Lawsuit Filed by Three YouTube Channels

3 Juli 2026 om 04:47
Earlier this year, three YouTube channels sued Apple, alleging that the company violated the U.S. Digital Millennium Copyright Act (DMCA) by unlawfully accessing and scraping millions of copyrighted YouTube videos to train its AI models.


In a class action lawsuit filed with the U.S. District Court for the Northern District of California in April, the owners of the YouTube channels h3h3Productions, MrShortGame Golf, and Golfholics alleged that Apple "deliberately circumvented" YouTube's protections against video scraping and "profited substantially" by doing so.

Apple's actions were "not only unlawful, but an unconscionable attack on the community of content creators whose content is used to fuel the multi-trillion-dollar generative AI industry without any compensation," the complaint alleged.

h3h3Productions is a well-known YouTube channel created by Ethan Klein and Hila Klein, and they later created the H3 Podcast. Their channels have millions of followers, while MrShortGame Golf and Golfholics have hundreds of thousands of followers. The channels filed equivalent lawsuits against Meta, Nvidia, ByteDance, and Snap.

Apple Responds


Apple responded to the lawsuit this week, according to a court document viewed by MacRumors. In short, Apple said the plaintiffs made the videos publicly available on YouTube and that it was permitted to access the videos under the DMCA. Apple said YouTube's Terms of Service likewise permitted the company to access the videos.

"Plaintiffs allege that they posted audiovisual works to YouTube, and that any member of the public can see them there," reads Apple's response. "No password. No payment. No lock. No key. Allegedly, YouTube employs technological measures to prevent unauthorized downloading. But because YouTube provides public access to the videos, the alleged technological measures do not control access to the works, as § 1201(a) requires."

Apple said the plaintiffs have ultimately failed to state a claim, and it requested that the court dismiss the lawsuit as a result.
This article, "Apple Responds to Lawsuit Filed by Three YouTube Channels" first appeared on MacRumors.com

Discuss this article in our forums

  •  

YouTuber Jon Prosser Responds to Apple's Lawsuit Over iOS 26 Leaks

3 Juli 2026 om 03:42
Jon Prosser today responded to Apple's lawsuit over iOS 26 leaks, with the YouTuber placing much of the blame on his acquaintance Michael Ramacciotti.


As a refresher, Apple sued Prosser and Ramacciotti in July 2025 over alleged theft of the company's trade secrets. Apple alleged that the duo coordinated to break into former Apple software engineer Ethan Lipnik's development iPhone, in order to access and profit off details about "iOS 19," which ended up being called iOS 26.

Last year, Prosser leaked several details about "iOS 19" in videos shared on his YouTube channel Front Page Tech, several months before Apple announced the update at WWDC 2025. Later, an anonymous tipster informed Apple that the information was allegedly sourced from Lipnik's iPhone, which prompted the company to investigate.

Apple ultimately fired Lipnik and sued Prosser and Ramacciotti.

In a court document obtained by MacRumors, Prosser admitted to and denied many of Apple's claims, with some of the key ones summarized below:
  • Prosser denied that he planned or participated in any conspiracy or coordinated scheme with Ramacciotti for the purpose of injuring Apple.

  • Prosser admitted that he participated in a FaceTime video call with Ramacciotti, wherein Prosser was shown certain "iOS 19" features and apps running on the development iPhone.

  • Prosser denied that any of the information he viewed contained trade secrets.

  • Prosser denied knowing that the development iPhone belonged to Lipnik.

  • Prosser denied that he is in possession of any further confidential Apple information.
Prosser placed much of the blame on Ramacciotti. In the response, Prosser's attorney said that Ramacciotti's act of displaying the iOS 19 features on the FaceTime call was not induced by Prosser and, as such, Ramacciotti is "completely responsible" for the disclosure of Apple's alleged trade secrets, if any.

Prosser's attorney said Ramacciotti is responsible for all harm caused to Prosser.

Unfortunately, the attorney made several typos throughout the document, including writing that Prosser has "not knowledge" if iOS 19 was "unreleased."

Another typo made was "Prosser Michael Ramacciotti" in the paragraph below:
Prosser denies that he planned or participated in any conspiracy or coordinated scheme with Prosser Michael Ramacciotti ("Ramacciotti") for the purpose of injuring Apple. Any payments by Prosser were after the fact of the alleged theft by the former Apple employee, Michael Ramacciotti.
The case is before the U.S. District Court for the Northern District of California. Prosser has requested a jury trial on all issues so triable by a jury.
Related Roundups: iOS 26, iPadOS 26
Related Forum: iOS 26

This article, "YouTuber Jon Prosser Responds to Apple's Lawsuit Over iOS 26 Leaks" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Matthew Garrett: Securing agentic identity

3 Juli 2026 om 02:38

As is the case for many people working in the security industry, the last few months of my life have been focused on dealing with people wanting to use LLMs everywhere. From an enterprise security perspective that’s not an inherent problem - what’s more of a problem is that people want those agents to have access to resources like their calendar and email and so on, and now we have somewhat non-deterministic agents that seem very enthusiastic to achieve what you asked whether that’s a good idea or not, and we’re combining this with credentials that give them access to sensitive data, and leaving those credentials on disk where they can be committed into git repos or exfiltrated to some other service to make use of them on the agent’s behalf or well just any other number of things, at which point your CEO’s email is suddenly readable by everyone and you’re having a bad day.

As I mentioned in my last post, pretty much every strong mechanism for keeping credentials in place is just not supported in the wider world. We can imagine a universe where agents use hardware (or at least hypervisor) backed certificates to obtain credentials and any that end up leaking are worthless as a result. But, sadly, that’s not an option for most people using existing identity providers. The state of the art is that you use the device code flow and a human authenticates and the token ends up back inside the agent environment and then it proceeds to do whatever it wants with it and you just hope that you wake up the next morning without an awful infoleak occurring.

(An aside: I do not like the device code flow as used in enterprise environments, and I never will. The identity provider doesn’t have a real opportuity to inspect the security posture of the system asking for the token, and as a result some identity providers will restrict tokens that are issued in this way. The common alternative of doing stuff using a more standard flow and having a redirect URI pointing at localhost works fine for local systems and is a pain for remote ones, even if you can commit crimes with SSH forwarding. I’m going to suggest something that I think is better, and you are free to disagree)

I’m not in a position to get every identity provider and service provider to change their security posture, so I’m somewhat stuck in terms of the tokens they’re willing to issue me - largely either JWTs or opaque access tokens, with no support for any mechanism of binding that token to an instance. The token that’s going to have to be provided to the remote service is something I have little influence over. But that doesn’t mean I can’t influence the token that lands inside the agent’s environment. I can issue a placeholder token to the agent, and force it to communicate via a proxy that swaps out the placeholder for the real thing. The worst the agent can do is exfiltrate the placeholder token, and as long as malicious actors don’t have access to that proxy, it doesn’t matter - nobody else can do anything with the placeholder.

This isn’t a terribly novel insight, and it seems like almost everybody has reinvented this on their own. But a lot of these implementations involve you somehow obtaining the real token in advance and then pasting that into something that generates a placeholder that you provide to your agent environment somehow, and it’s all a bit clunky and awkward, and it also means that you need to deal with something that keeps track of the mapping between placeholders and real tokens and oh no we’ve just invented a secret store, and if you want this to work at scale and reliably you’re just invented a high availability distributed secret store, and a lot of people who’ve read that are now shaking their heads and reaching for gin. Can we simplify this, and improve security at the same time? I think we can!

Remember when I said “as long as malicious actors don’t have access to that proxy, it doesn’t matter”? What if they do? What if they compromise one machine inside your environment and are then able to email a bunch of employees and convince their agents to send more tokens back to them and then delete the email before a human reads it? Now you have someone inside the wall with access to those tokens, and presumably with access to the proxy, and now they can be anyone whose agent was gullible enough to think sending them a token was a good idea. This isn’t good!

So, I thought for a while, and I came up with a new idea. We can have a broker service that obtains credentials for us. We can run that centrally, away from the agents. A client in an agentic environment can request a token, and that can result in a URL being generated and the user being directed to open a URL in a browser and authenticate. When the user authenticates, the authentication flow redirects the confirmation back via the broker, and the broker obtains the real auth token. The obvious thing to do now would be to return the auth token to the client in the agentic environment, but we don’t do that. Instead, we mint a new JWT, and add a new claim - one that contains an encrypted copy of the token. In the process we can copy over all the original claims, because those aren’t secret - and now even if the client inspects the token to figure out what access it has, it’ll get a correct answer. We sign the new token with our own signing key, and pass that back to the client. The client now has a legitimate JWT that is utterly useless, because the signature isn’t trusted by anyone other than us.

How does it use it? It makes an API request via a proxy, including the new token in the Authorization: header. The proxy verifies the signature on the token, and then decrypts the original token and swaps out the fake token for the real one. The remote API sees what it expects, and everyone is happy. There’s never a real token in the agentic environment, but also we don’t need to store anyting anywhere. The only state is the encryption keys, and those can be injected into the environment at startup. You need to scale? Just start more of these processes. You need to support multiple availability zones? Just start more of these processes in different places. No persistent data is ever held in the broker or the proxy. You don’t need to care about distributed databases or secret stores.

This felt wonderfully elegant and I felt smug about coming up with a better idea, and then I went to a bar earlier this week and sat down to read RFC 8705 and the guy next to me saw that over my shoulder and asked what I was reading and I explained why I was interested and we talked about agentic identity and then he mentioned that fly.io had something that sounded very similar and I read that and gosh yes it is very similar, so damn you fly.io for stealing my ideas 3 years before I even had them. Anyway. Now I need to do better.

Remember that there’s still a risk around anyone who has access to the proxy having access to the encrypted keys? We can remove that risk as well. It’s not uncommon for agentic environments to have an identity issued via something like SPIFFE, at which point they have a client certificate. You can probably guess where I’m going with this. If we require that an agent present a client cert to the broker when requesting a token, we can embed a representation of that client cert into the token we mint. The proxy can then require mTLS for the client connection, and can verify that the presented certificate matches the one represented in the token. If it does then whoever’s using the token has access to the private key associated with the environment it was issued to. If we then ensure that the private keys backing these certificates are either hardware or hypervisor backed, and as such tied to a specific instance, we now have a high degree of confidence that the token can only be used in its intended environment. Even if our identity provider doesn’t support RFC 8705, we can.

This is fairly straightforward where you’re using a platform where your identity provider is also the environment that’s consuming your tokens, and more annoying for third parties. The broker potentially needs some amount of third party vendor knowledge to make that work for everyone. This is even more the case where login isn’t via your identity provider (thanks, github), but none of this is insurmountable - just annoying. And where vendors issue opaque tokens rather than JWTs, this still isn’t a problem; we can just mint a new JWT that includes the opaque token as an encrypted claim, and include the same certificate binding. The opaque token ends up being the thing that’s presented to the third party, but only after we’ve verified the mTLS binding.

In an ideal world none of this would be necessary - someone would spin up a new agentic environment, a user would prove their identity, and a certificate embodying that identity would be issued to the environment with a private key that can’t be exfiltrated. That certificate would be sufficient to obtain new certificates associated with the same private key, and we could still bind that into mTLS identity. This would be much simpler, but browsers don’t support it, so it’s not likely to happen any time soon.

Anyway. Even if we can’t have the best thing, we can do better than we are at the moment, and also it would be lovely if we could standardise on this rather than have everyone build their own thing. The end.

  •  

Distribution Release: Ultramarine Linux 44

3 Juli 2026 om 01:55
The DistroWatch news feed is brought to you by TUXEDO COMPUTERS. The Ultramarine Linux, a Fedora-based desktop distribution, has published a new release, version 44. The new version includes updates to three of the four desktop environments: "We have gotten tons of feedback and praise for switching to Plasma as our recommended edition. This release comes with Plasma 6.7,....
  •  

Mobile OS Release: CalyxOS 7.2.2.0

3 Juli 2026 om 01:24
The DistroWatch news feed is brought to you by TUXEDO COMPUTERS. The CalyxOS team have announced the return of the project to active status and, with it, the launch of version 7.2.2.0 of the mobile operating system. "CalyxOS 7.2.2.0 is up online. This release will receive all future updates. If you haven’t previously installed 7.2.1.0 (test build) and want....
  •  

iOS 27 Public Beta Available This Month, Here's How to Get Your iPhone Ready Now

2 Juli 2026 om 20:45
Apple previously announced that the first iOS 27 public beta would be released in July, meaning that it should be available at some point this month.


Below, we have outlined how to get ready for the iOS 27 public beta, which will likely follow the third or fourth iOS 27 developer beta.

Release Date History


The first public betas of iOS 16 through iOS 26 came out between July 11 and July 24.


  • iOS 26 Public Beta: Thursday, July 24, 2025

  • iOS 18 Public Beta: Monday, July 15, 2024

  • iOS 17 Public Beta: Wednesday, July 12, 2023

  • iOS 16 Public Beta: Monday, July 11, 2022



Get Ready


Once it is available, anyone will be able to install the iOS 27 public beta on a compatible iPhone for free by following the steps outlined below.

  • Sign up at beta.apple.com for free.

  • Open your iPhone's Settings app and tap General → Software Update → Beta Updates.

  • Select the iOS 27 Public Beta option (restart your iPhone if you don't see it) and follow the on-screen steps.
If you are impatient, anyone can install the iOS 27 developer beta for free right now.

Warning: While the first public beta is usually more stable than the first developer beta, iOS betas often have bugs and performance issues. You may not be able to use some apps that you rely on, and issues can extend to CarPlay. Backing up your iPhone before installing beta software is highly recommended, and relying on a secondary iPhone altogether is always a good idea if possible.

iOS 27 is compatible with the iPhone 11 and newer, but Apple Intelligence features like Siri AI are limited to the iPhone 15 Pro and newer.

Keep in mind that the revamped version of Siri has a waitlist. To join the waitlist, open the Settings app on iOS 27 and tap on Siri and you will find it there. In some cases, it can take a few weeks to receive access to Siri AI and the Siri app.

Beyond the new Siri, iOS 27 features Liquid Glass design enhancements, performance improvements, expanded child safety features, and more.
Related Roundups: iOS 27, iPadOS 27

This article, "iOS 27 Public Beta Available This Month, Here's How to Get Your iPhone Ready Now" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Distribution Release: Galactic Mandate Linux 99

2 Juli 2026 om 20:21
The DistroWatch news feed is brought to you by TUXEDO COMPUTERS. M. R. Richardson, a science fiction writer and author of the Galactic Mandate series of science fiction books, has announced the release of Galactic Mandate Linux 99. Based on Ubuntu 26.04, this release comes with the Budgie desktop and labwc Wayland compositor, and it also includes book-cover themes,....
  •  

VW Planning to Offer Apple Wallet Car Keys on iPhone

2 Juli 2026 om 20:00
Volkswagen is planning to offer Apple Wallet car keys in future vehicles, according to new server-side Apple code.

The code does not provide any more details, so we do not know which VW vehicle models will offer the feature or when.

With an Apple Wallet car key, you can use your iPhone or Apple Watch to lock, unlock, and start your vehicle. The feature is already offered by Audi, BMW, Hyundai, Kia, Genesis, Mercedes-Benz, Volvo, and select other automakers in various countries.
This article, "VW Planning to Offer Apple Wallet Car Keys on iPhone" first appeared on MacRumors.com

Discuss this article in our forums

  •  

iPhone 18 Pro Could Use Qualcomm Modem in the US and C2 Elsewhere

2 Juli 2026 om 18:15
Stolen data from Apple manufacturing partner Tata Electronics appears to reveal that the iPhone 18 Pro will use different modem chips depending on the market it is sold in, with U.S. models retaining Qualcomm hardware while international models will feature Apple's in-house C2 modem.



The finding emerged from a wide-ranging cyberattack on Tata, which alongside Foxconn assembles the iPhone. More than 630GB of confidential data was stolen by a ransomware group calling itself "World Leaks" and has been circulating online. The material was obtained illegally and MacRumors has not seen the stolen files directly. AppleInsider conducted an analysis of the stolen files and said it could confirm the authenticity of several key documents.

Among the information that has attracted particular is a bill of materials apparently related to the U.S. variant of the ‌iPhone 18 Pro‌, which lists multiple Qualcomm components rather than Apple's C2 modem, codenamed Ganymede. The Qualcomm parts referenced include the SDX80M, SDR875, QDM8771, QDM8720, PMK75, PMX75, and QET7100A, components associated with mmWave 5G support. International ‌iPhone 18 Pro‌ models, by contrast, are said to use the "C2," which would succeed the C1 and C1X modems currently found in the iPhone Air, iPhone 17e, and M5 iPad Pro.

The implication, as AppleInsider notes, is that the C2 still lacks mmWave capability, and that Apple is once again relying on Qualcomm to fill that gap for American carriers.

mmWave is the ultra-high-frequency band of 5G offered primarily by Verizon, delivering very fast download speeds over short distances. Apple's C1 and C1X modems are widely regarded as more power efficient than their Qualcomm counterparts, meaning U.S. ‌iPhone 18 Pro‌ buyers may see somewhat worse battery life than those purchasing the same device elsewhere.

Daring Fireball's John Gruber offered analysis of the practical tradeoffs involved. While 5G outpaced LTE in his tests, Gruber argued the difference has no meaningful impact on how the phone actually feels to use:

Having a phone that can pull 320 Mbps down over cellular is like having a car that can go 320 MPH — an interesting technical feat, but of no practical value to me whatsoever. I never feel like I'm waiting for anything to load because I'm on LTE. LTE is fast enough, and regular 5G is more than fast enough. 5G mmWave is simply a waste of battery life as far as I'm concerned.


On why Apple would not simply deploy the C2 everywhere rather than retaining Qualcomm for the U.S. market, Gruber pointed the finger squarely at carrier economics:

Faster-than-you-practically-need download speeds are a carrier bragging point. Longer battery life and plenty-fast-enough download speeds are an Apple bragging point. Verizon — and to a lesser extent, AT&T — spent a fortune building out mmWave networks. They don't want to sell flagship phones that don't support them. Apple's flagship iPhones have supported those networks since 2020. If Zivkovic's analysis of this stolen data from Tata is correct, and Apple is going to use Qualcomm's modems only in iPhone 18 Pro models sold in the U.S., I think the reason why is Verizon and AT&T bragging points, not any practical user benefit. And the result may be that U.S. iPhone 18 Pro models get somewhat worse battery life than those in the rest of the world.


The C2 modem has been a rumored feature of the iPhone 18 Pro for years as part of Apple's broader effort to reduce its reliance on Qualcomm. A split deployment, with the C2 handling most of the world while Qualcomm covers the U.S., would represent a significant step in that direction even if it falls short of a complete transition.

The ‌iPhone 18 Pro‌ and ‌iPhone 18 Pro‌ Max are expected to launch in the fall alongside the first foldable iPhone.
Related Roundup: iPhone 18 Pro

This article, "iPhone 18 Pro Could Use Qualcomm Modem in the US and C2 Elsewhere" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Apple to Release These 16 New Products Later This Year

1 Juli 2026 om 17:30
Apple's annual WWDC developers conference is in the rearview mirror, but there is still a lot to look forward to in the second half of the year.


Now that the more intelligent and personal version of Siri has finally arrived in beta, a full two years after Apple first previewed it at WWDC 2024, we should begin to see some new devices that were reportedly postponed until the new Siri was ready.

Beyond the usual annual updates to iPhones and Apple Watches in September, Apple's all-new smart home hub is expected to debut later this year. We are also expecting a foldable iPhone Ultra and long-awaited updates to the Apple TV, HomePod, and HomePod mini. And a redesigned MacBook Ultra with an OLED display is expected by early 2027.

July Update: Bloomberg's Mark Gurman this week reported that Apple has planned to update the 14-inch MacBook Pro base model with an M6 chip later this year, and that means the company is now rumored to have at least 16 new products in the pipeline for the rest of 2026. Our list of rumored new products has been updated accordingly.

Here is what to expect from Apple later this year, according to rumors.

iPhones


Apple Watches

iPads

Macs


Home


  • Apple TV: A17 Pro chip with support for the more personalized Siri, and Apple's N1 chip with Wi-Fi 7 support. A built-in FaceTime camera has been rumored for a future Apple TV, but it is unclear if that will arrive with the next model.

  • HomePod mini: S9 chip or newer with support for the more personalized Siri, Apple's N1 chip with Wi-Fi 7 support, improved sound quality, a second-generation Ultra Wideband chip, and potentially new color options like red.

  • HomePod: A new full-sized HomePod that supports the revamped Siri.

  • Home Hub: An all-new smart home hub featuring the more personalized version of Siri, a 6-inch to 7-inch square display, an A18 chip for Apple Intelligence, FaceTime, and more. Place it on a table or mount it on a wall.

This article, "Apple to Release These 16 New Products Later This Year" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Joey Hess: no LLM code in dependencies

2 Juli 2026 om 16:06

I've spent about 100 hours of work over the past month to make sure git-annex can build without dependencies that contain LLM generated code. At least so far.

https://git-annex.branchable.com/no_llm_code/

Needing to review a program's whole dependency tree on an ongoing basis is apparently what programming has come to?

I've found some real stinkers. Large LLM generated changes being reverted in the next release without any explanation. An incoherent 1489 line commit message with 10,000 lines of changes to a 26,000 LOC code base. A LLM prompt to copy code from another project that seems to have only avoided being copyright infringement due to luck.

I now have additional information about the quality of dependencies which will surely influence future decisions. As far as I can see, that's the only positive benefit of this work.

I realize that I am probably trying to hold back the tide at this point. That appears to be why Software Freedom Conservancy punted, and I doubt that the FSF will do any better.

As these dominos fall, I am reconsidering my participation in these communities. But I continue my work and support my users.

It may seem easy to prompt a LLM with

Add fourmolu config and restyled

neat

format a module

And commit the result and call yourself a 10xer. But please consider the broader impact of your actions. (In the above case, that project lost my further collaboration on it.)

  •  

AirTag 2 Still Available for Best-Ever Price of $89 for 4-Pack

2 Juli 2026 om 15:54
Apple's AirTag 2 is still available for the all-time low price of $89.00 this week, down from $99.00. This sale is on the 4-Pack of the AirTag 2, and it's one of the very few Prime Day deals that's stuck around since the event ended last week.

Note: MacRumors is an affiliate partner with Amazon. When you click a link and make a purchase, we may receive a small payment, which helps us keep the site running.

The new AirTag is equipped with a second-generation Ultra Wideband chip, enabling the Precision Finding feature to work up to 50% farther away from an item compared to the previous-generation model. You'll also find a small discount on the 1-Pack right now on Amazon.




If you're on the hunt for more discounts, be sure to visit our Apple Deals roundup where we recap the best Apple-related bargains of the past week.




Deals Newsletter


Interested in hearing more about the best deals you can find in 2026? Sign up for our Deals Newsletter and we'll keep you updated so you don't miss the biggest deals of the season!




Related Roundup: Apple Deals

This article, "AirTag 2 Still Available for Best-Ever Price of $89 for 4-Pack" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Microsoft Frontier Company: AI engineering that amplifies and protects your intelligence

2 Juli 2026 om 14:59

The pace of AI adoption is moving incredibly fast. Customers have moved well beyond experimentation and understand the importance of adopting AI to transform their business. They are now concentrating on delivering measurable business outcomes and demonstrating a return on their AI investments, while ensuring their intelligence is amplified and their IP is protected.

Today we are introducing Microsoft Frontier Company, a new operating business focused on delivering Frontier Transformation through AI for our customers around the world. It will provide a unique combination of skills inclusive of deep industry knowledge, change management and continuous improvement experience, and enterprise-grade AI engineering expertise. This goes beyond what has been labeled as Forward Deployed Engineering (FDE) and will be the largest, most capable, outcome-driven engineering organization in the industry. We are making a $2.5B investment in Microsoft Frontier Company, embedding 6,000 industry and engineering experts at customers to co-design, co-innovate, deploy and continuously improve AI systems at scale based on measurable business outcomes.

I recently wrote more about my conviction that Intelligence + Trust are the two most important components of any AI solution and how our customers can use different levers to manage cost.

Companies need to establish an intelligence platform so their unique IQ — their proprietary data, expertise, workflows and decision-making processes — compounds over time from within, using their choice of models to build AI solutions and workflows.

They need a trusted platform that allows them to observe, govern, manage and secure AI solutions across every layer of the technology stack, using FinOps to assess their ROI.

Enterprise AI engineering expertise with deep industry knowledge is required to build a system that acts as a continuous loop of improvement between the two platforms to fine tune agentic business processes, ensuring that a customer’s intelligence compounds over time and delivers real business outcomes.

This is what Microsoft Frontier Company was built to do: focus on end-to-end Frontier Transformation, enabling customers to amplify their IQ with AI while refining their differentiated value in the markets that they serve.

Early results demonstrate meaningful impact: Our engineers and industry experts partnered with LSEG (London Stock Exchange Group) to embed AI into LSEG Workspace, helping finance professionals ask complex questions and get quick answers across structured and unstructured financial content. The solution is underpinned by a foundation that is iteratively refined through client feedback and real-time user testing that accelerates each cycle and steadily improves model quality and scope. From LSEG to Land O’Lakes to Unilever to Novo Nordisk, our differentiated approach is already delivering measurable outcomes on our customers’ Frontier Transformation journeys.

To achieve scale, we will work closely with our partner ecosystem to extend this unique value to our customers across all markets and segments globally. We have robust FDE partnerships with our Global SI partners, including Accenture, Capgemini, EY, KPMG, PwC and others.

Central to this approach is a principle that is non-negotiable: a customer’s IQ is protected. Their data, their IP, their competitive advantage — none of it is used to train models in ways that commoditize what differentiates them in their industry. Satya put it clearly recently: there is no societal permission for an AI future that eats the intelligence of the companies it’s deployed inside. We built Microsoft Frontier Company to make sure that does not happen.

We protect that intelligence with a model-diverse, open, heterogeneous AI platform. Customers shouldn’t be locked into a single model any more than they should be locked into a single technology vendor. Microsoft’s platform gives organizations the flexibility to run the right model for each scenario — whether it comes from OpenAI, Anthropic, Microsoft AI, open source or a specialized model tuned for a specific industry — without ceding control to any one of them.

To lead this new organization, I have asked Rodrigo Kede Lima to be the President of Microsoft Frontier Company. Rodrigo brings 30 years of industry experience, and for the past six at Microsoft has led enterprise-wide transformations as a sales leader in the Americas and Asia. He has been at the forefront of helping customers and partners translate technology shifts into business outcomes, and understanding how platform innovation, engineering and partner ecosystem collaboration come together to drive growth.

I am excited about all the things that Microsoft Frontier Company will do for our customers to realize the gains of Frontier Transformation. At the end of the day, it comes down to Intelligence + Trust and empowering our customers to achieve meaningful outcomes and a return on their investments.

Learn more at www.microsoft.com/en-us/frontier-company.

Judson Althoff is the chief executive officer of Microsoft Commercial Business. He is responsible for the product strategy, sales, services, support, marketing, operations and revenue growth of the company’s commercial business, which operates in more than 120 regional and national subsidiaries globally.

The post Microsoft Frontier Company: AI engineering that amplifies and protects your intelligence appeared first on The Official Microsoft Blog.

  •  

Opera Browser Gains Protection Against Malicious Clipboard Commands

2 Juli 2026 om 14:40
Opera browser has announced a new security feature called Paste Protect that aims to stop clipboard-based cyberattacks before their malicious commands can be accidentally executed.


Opera says it's the first major browser to offer native protection against ClickFix attacks – a growing form of social engineering that tricks users into copying and pasting malicious commands into a computer's terminal. The new feature is built into Opera's desktop browsers and enabled by default.

ClickFix attacks typically masquerade as routine troubleshooting prompts, such as fake CAPTCHA verification or video playback fixes. Once pasted and executed, the commands can install malware, steal passwords, or give attackers remote access to a device. Opera describes the browsing risk as follows:
A ClickFix-style attack usually starts with something small and ordinary: a video that won't play, or a CAPTCHA that won't quite verify you're human. A pop-up offers a fix, telling you to copy a short command and paste it into your computer's terminal. It looks like routine troubleshooting. In reality, that command can install malware, steal saved passwords, or hand an attacker remote access to your machine, all carried out by the user's own hands, on their own device.
Opera features an existing clipboard hijack protection feature that prevents external applications from silently replacing copied content such as cryptocurrency wallet addresses. Paste Protect combines this with a new injection protection system that monitors clipboard activity for suspicious commands copied from websites and blocks potentially malicious content before it reaches the clipboard.

Users can see the first 120 characters of the blocked content, and developers working with trusted sources can override the block or mark specific sites as safe.

Opera cited research from cybersecurity firm Huntress that said ClickFix accounted for more than 53 percent of malware-loading cyberattacks last year, indicating the rapid growth of the technique.

Apple itself introduced a related safeguard for the Mac with the release of macOS Tahoe 26.4 earlier this year. Following the update, the operating system explicitly warns the user before they paste potentially dangerous commands into the Terminal app.

Opera browser is available now as a free update and can be downloaded from the company's website.
This article, "Opera Browser Gains Protection Against Malicious Clipboard Commands" first appeared on MacRumors.com

Discuss this article in our forums

  •  

iPhone Photography Awards Highlight Best Images of 2026

2 Juli 2026 om 13:30
For the last 19 years, the iPhone Photography Awards (IPPA) has selected the best photographs captured with an iPhone, and the 2026 award winners were announced today.


The IPPA 2026 Grand Prize image features a volcano dramatically erupting in the Cayman Islands, with the photo shot by Robyn Jensen on an iPhone 15 Pro.


The Gold Prize image by Gellért Gombai features two children napping on grass in the shadow of a badminton racket, with the photo shot in black and white using an iPhone X. There are also Silver and Bronze prize winners taken on iPhone 16 Pro and iPhone 16 Pro Max models, respectively.


There are other winners across a number of categories, including abstract, animals, architecture, children, cityscape, landscape, lifestyle, nature, people, portrait, series, still life, travel, and other. All of the winning images can be viewed on the IPPA website.

The contests are open to iPhone and iPad users worldwide, and images can be edited with iOS apps. It is worth noting that it costs money to send in a photo, but Apple devices are provided as prizes. The 20th annual entry deadline for submissions is March 31, 2027.
This article, "iPhone Photography Awards Highlight Best Images of 2026" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Popular Show Tracking App TV Time Shutting Down on July 15

2 Juli 2026 om 13:01
TV Time, the popular show and movie tracking app, is shutting down on July 15, with all personal user data set to be deleted after that date.


In a support page update announcing the news, the company admitted that it was "no longer sustainable to continue operating the service as a free app," and said that there was "not enough demand for a paid app."

Come the shutdown date, the TV Time app will be removed from both the App Store and Google Play, and the tvtime.com website will go offline permanently.

Users who want to preserve their viewing history and tracked data can request an export through the app's GDPR self-service tool before the July 15 cutoff. The company says all personal user data will be deleted after that date, but it may retain aggregated, non-personal data for business or legal purposes.

TV Time has operated for more than a decade, and over that period it built a dedicated community around episode tracking, watchlists, and user ratings. In the wake of the closure announcement, users on the Resetera forums have suggested alternatives like Trakt, Serializd, and Simkl – although the latter's servers have reportedly struggled under a sudden wave of new sign-ups.
This article, "Popular Show Tracking App TV Time Shutting Down on July 15" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Apple Ramps Foldable iPhone 'Ultra' Production to 10 Million Units

2 Juli 2026 om 11:59
Apple has told suppliers to prepare to make approximately 10 million foldable iPhones this year, up from a previous forecast of about 7-8 million units a few months ago, reports Nikkei Asia ($).


Apple has already booked parts for roughly 80 million smartphones for the second half of 2026, which includes the iPhone 18 Pro, iPhone 18 Pro Max, and the first-ever foldable iPhone. The company's full 2026 production is expected to top 220 million units, according to the publication.

Apple's purchasing power is said to have left it better positioned than rivals like Xiaomi, Oppo, and Vivo, which have each cut annual production targets below 100 million units amid an industry-wide memory shortage.

Some suppliers have reportedly been told to expect orders for as many as 85 million new iPhones in the second half of 2026, with Apple asking them to reserve iPhone 17 components for the coming iPhone 18 lineup.

Engineering problems tied to the foldable iPhone's hinge appear to have been resolved, but that has raised the odds of a small initial shipment following the device's launch. A larger production run likely won't begin until closer to the end of the year.

Apple raised prices on MacBooks and iPads last month in response to rising component costs, but the iPhone 17 lineup has so far been spared from a price hike. If that remains the case, Apple will likely use the new devices launches to introduce increased pricing across the lineup. IDC has predicted that the foldable will carry an average selling price of $2,500, with storage options potentially priced as high as $3,000.

Apple's foldable iPhone is rumored to feature a 7.8-inch inner display and a 5.5-inch cover display, along with Touch ID instead of Face ID, an A20 chip, and Apple's C2 modem. The device is expected to be released alongside the iPhone 18 Pro models in September. Apple's book-style foldable could launch as the "iPhone Ultra," as suggested by reports.
Related Roundup: iPhone Fold

This article, "Apple Ramps Foldable iPhone 'Ultra' Production to 10 Million Units" first appeared on MacRumors.com

Discuss this article in our forums

  •  

Valhalla's Things: A Pair of Hair Towel Wraps

2 Juli 2026 om 02:00
Posted on July 2, 2026
Tags: madeof:atoms, craft:sewing, FreeSoftWear

Two trapezoid shaped hoods made out of off-white towels: one is still looking new, while the other one has been bleached and roughened by having been washed many times.

Many months ago I had been ordering some furniture from IKEA1 and on one of those orders I got tempted by a hair towel wrap: it mostly worked as an idea, but it was too short for my hair.

On the other hand, I had two old towels I wasn’t using, and a recently unpacked sewing machine.

A towel cut in two trapezoid halves with a STJÄRNBUSKE laid on top of it: the IKEA wrap is a bit less than 10 cm less deep, and at least 30 cm shorter, and is also triangular rather than a trapezoid.

I didn’t plan too much, I just put the STJÄRNBUSKE over the towel, cut, realized that the two pieces didn’t fit with right sides together, cut the second towel (I had planned to make two wraps, anyway, so it wasn’t a big deal), and started sewing by machine in what seemed like a reasonable procedure, taking notes and pictures.

A towel, with its original care label, that has been cut in a trapezoid shape and reassembled into a hood shape with a long triangular tail. The machine sewn finishing is still neat and pristine.

The result was pretty good, and I started using it every time I washed my hair, but then I started to entertain the idea of shooting myself sewing the second one by hand for a video, but never found the time to actually doing it, and the pieces remained in the Pile for months, and months, and way more than a year.

The head of a woman with a turban-like thing on the head, covering all of the hair except for a tiny bit at the center front.

Until one day I bought a meter of cotton cheesecloth (mostly because it was almost cheaper than buying a sample) and it felt like a good material to make a nicely looking head wrapper, to keep my hair out of the way when needed.

A woman in a bathrobe with her head tilted downwards, covered by a towel thing that lies on the back of the head and has a long tail hanging on the front, in the process of being wrapped around the hairs and then brought over the top and back.

A couple months later, it was finally time to bring this project to the top of the list, and even if I was sewing two by hand it went pretty quickly: we had a weekend when it was too hot to do anything else, and by the end of it the wraps were done.

All that remained was finish writing the instructions for my FreeSoftWear patterns website <https://sewing-patterns.trueelena.org/contemporary_unisex/headwear/hair_towel_wrap/index.html>>, and having some pictures taken, and this project was done.

And now, on to documenting a few more things I’ve done lately, and to start working on the other projects I have added to the queue in the meantime.


  1. small things. Like, you know, a kitchen :D↩︎

  •  

Matthew Garrett: Preventing token theft

2 Juli 2026 om 04:23

When you log into a service you’re given an authentication token. Each further request to the site includes that token, allowing the server to figure out who you are and ensuring that you have access to your data. Depending on site policy, this token may either be stored in memory (and so vanish if you restart your browser) or disk. The token is the proof of your identity. As far as the site is concerned, anyone with your token is you. These tokens may be traditional browser cookies, but they may also be stored in either site local storage or (if you’re not using a browser) in some other storage location.

In recent years we’ve seen infostealer malware (like LummaC2) gain the ability to exfiltrate user tokens, allowing attackers to gain access to the user’s data without needing to retain access to the user’s machine. This attack is viable even if the site has strong MFA requirements, so passkeys don’t help. Encrypting the tokens on disk doesn’t prevent the malware from scraping them out of the browser’s RAM or obtaining whatever key is used to encrypt them. This feels like a pretty hard problem to solve.

But that hasn’t stopped people from trying! Dirk Balfanz wrote an IETF draft describing a mechanism for using self-signed certificates for TLS authentication. This uses the mutual authentication feature of the TLS protocol that requires both sides prove their identity to each other. In regular TLS, the remote site presents a signed certificate that tells you who it is. When performing mutual authentication, you then present a certificate to the remote site telling it who you are. These client certificates are largely unused outside enterprise environments because they’re a huge pain to deploy. It’s not so much that this has sharp edges, it’s that it’s entirely made of sharp edges. Managing certificate deployment to your devices is hard. Browsers get confused if the certificates change under them. You have one certificate and it lives forever, so sites you present it to can track your identity. Users are prompted to choose a certificate to authenticate with, and if they pick the wrong one everything breaks and is hard to recover. I’ve deployed this and I did not have a good time.

But Balfanz’s idea was simple. Rather than require certificates to be deployed, browsers would simply generate a certificate on the fly. The goal wasn’t to prove the device or user’s identity in any global way - but it would associate a TLS session with a specific certificate. You could then, for example, include a hash of the certificate in the cookie, and if someone tried to use that cookie without presenting that certificate then the cookie could be rejected. If the browser used a hardware-backed private key for the certificate then it would be impossible for an attacker to steal it. Sure, you could still steal cookies, but you wouldn’t be able to use them.

This was written almost 15 years ago, and seems simple, elegant, and functional. It didn’t happen. Part of the reason for that is that, well, it wasn’t quite so simple. One problem was privacy related. Cookies are only sent after the TLS session is established, so anyone monitoring the network doesn’t know anything about the user identity. A naive implementation of this approach would have meant the client certificate being sent before session establishment, and now user identity can be tracked (no longer an issue if this was implemented on top of TLS 1.3, but this was a log time ago). This was avoided by reordering the client handshake, but that meant having to modify the TLS specification and implementations would have to be updated to support this. Another was that figuring out the granularity of the certificates was difficult. You’d want to use different certificates for every site to avoid them effectively becoming tracking cookies, but you need to provide the certificate before cookies are set, and you don’t know what origin the site is going to set in its cookies. If you generate a certificate for a.example.com and a different one for b.example.com, and a.example.com sets a cookie for *.example.com and includes the certificate you used for a.example.com, that cookie isn’t going to work on b.example.com and things are broken. This meant supporting it wasn’t as straightforward as it seemed - you’d need to ensure that your cookie scope was compatible with the certificate scope. You could probably make this work well enough by aligning it with the Public Suffix List, but there was still some risk of expectations not being aligned.

And, perhaps most importantly, TLS session resumption (replaced by pre-shared keys in TLS 1.3) somewhat defeats the purpose of the exercise - clients store state that allows them to re-establish a TLS connection without performing certificate exchange (this reduces overhead if a connection gets interrupted or you switch to a new network or anything along those lines), and anyone in a position to steal cookies could steal that state as well.

The followup attempt was channel IDs. This simplified the implementation somewhat - rather than certificates, a raw public key would be sent, along with proof of possession of the private key in the form of a signature over a portion of the TLS handshake. This was required even in the event of session resumption, which avoided having to worry about theft of session secrets. The timing of the exchange was after the encrypted session had been established, so user identity couldn’t be leaked that way either. Cookies could then be bound to this identifier. Unfortunately it didn’t really deal with the problem of scoping keys in a way that would match cookie requirements, and the spec suggests that the right way of handling this is to scope keys to TLDs, which would enable user tracking across sites (Chrome’s implementation apparently restricted it to eTLD+1, which would match the third party cookie policy and avoid the tracking risk).

Chrome added support for this, but it was removed in early 2018. The discussion of some of the pain points in that message is interesting, explicitly calling out problems with connection coalescing across domains and the incompatibility with zero-RTT TLS1.3. The overall consensus at the time seems to be that trying to solve this entirely at the TLS layer has too many rough edges, and a different approach should be taken.

And so almost 7 years after the initial draft for origin bound certificates, we come to token binding. This ended up being a rather more complex endeavour, covering 3 different RFCs describing how it impacts TLS, how to incorporate it into HTTP, and how to manage all the various parties involved in the process. The short version is that it’s pretty similar to channel ID, except that there’s also a documented mechanism for allowing tokens to be bound to one party and consumed by another, avoiding any need for widely scoped keys. Token binding effectively solved all the issues in the original proposal, but at the cost of somewhat more complexity.

The RFC was finalised in October 2018. Chrome removed its (incomplete, draft) support for token binding in November 2018. Edge carried support until late 2024. Despite getting all the way through the RFC process, it’s functionally dead.

The process up until this point had been largely initiated by Google, with Microsoft contributing significantly to the token binding standards. The work had been focused on identifying a generic solution to the problem rather than tying it to any specific authentication flow. The next step was in a different direction - rather than trying to fix this for the entire internet, how about we try to fix it for OAuth?

RFC 8705 is titled “OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens”. This is basically the 2011 approach, but (a) with an explicit definition of how the certificate should be incorporated into issued auth cookies, and (b) with a proviso that well uh if you’re going to use tokens issued by your IdP to authenticate to someone else then well you’re going to need to use the same cert for both. This is probably fine for the company-owned-laptop case where you’re actually fine with multiple sites being able to tie identities together (that’s kind of the point here!), and also works for “I am using an app and not a browser”, but doesn’t work for more generic scenarios. It also doesn’t seem to take the session resumption case into account at all? Support for RFC8705 seems poor, as far as I can tell of the big players only Auth0 implements it. In theory it works fine with self-signed client certs but in reality that’s going to be almost as difficult to support across multiple platforms as just issuing proper client certs in the first place, so deployment is going to be kind of a pain. But the good news is it doesn’t rely on any TLS extensions or custom browser behaviour, so at the client side it works fine with any browser.

Which brings us on to RFC 9449, “Demonstrating Proof of Possession”. This goes even further than RFC8705 in terms of reducing the burden of deployment - it works fine with existing browsers, and it doesn’t even require any certs. The client generates a keypair and provides the pubkey when requesting the cookie. The cookie contains the pubkey. Every request to the service now provides the cookie with the pubkey and also provides a signature over the URI and HTTP method. If the signature matches the pubkey in the token then clearly the signature came from the machine the token was issued to, and everything is good.

This does come with some downsides, though. The first is that it uses browser interfaces to generate the keys (typically crypto.subtle.generatekey()) and as far as I can tell there are no browsers that guarantee that that key is going to be generated in hardware even if it’s marked non-exportable, so anyone able to steal the cookies can also steal the keys. The second is that the signature only covers the URI and HTTP method, and not the message content or any other headers, so anyone able to exfiltrate a valid signature can replay it against the same URI with different message content. The recommended way to handle this is to reject any signatures that weren’t generated within the last few seconds, which is a wonderful additional way to allow clock skew to give you a Bad Day. And the third is that every single request has to be separately signed, which is not intrinsically a problem because computers are fast and have multiple cores, but if you’re trying to solve the first problem by sticking the key in a TPM then you’re dealing with something that’s slow and single threaded and that’s maybe acceptable if you’re using client certificates (because there’s going to be one signature per session and you can use the same session for multiple requests) but probably not if you’re dealing with a user opening a browser that restores previous tabs and each of those is a webapp that fires off 100 requests in parallel.

In case it wasn’t clear, I don’t like DPoP. It doesn’t feel like it actually solves the underlying problem that we see in the real world (malware running in a context where if it can grab the tokens it can grab the keys), it adds a massive amount of overhead, and it has baked in replay vulnerabilities. I don’t know why it exists and I’m incredibly suspicious of vendors telling me that it fixes my problems, because if they’re telling me that then I’m going to end up assuming that they either don’t understand my problems or they don’t understand their technology, and neither of those is good.

Still. Then we get to the thing that prompted me to write this - Chrome’s announcement that they had launched device-bound session credentials. This is interesting because it’s a Chrome feature that’s explicitly intended to counter on-device malware, which was one of the things that was out of scope in 2018 when token binding was being removed. Since this is entire web level it doesn’t have to be an RFC, and so is instead defined by W3C. I’m going to handwave all the complexity and say that it’s basically a way to register a public key when a cookie is issued, and then prove possession of the private key when it’s time to renew the cookie. By making the cookies shortlived and having support for rotating them in the background, user impact is basically zero and while it’s still possible for an attacker to exfiltrate and use a cookie they’ll only be able to do so for a short window before it needs to be refreshed - something the attacker can’t do, since they don’t have the private key. This avoids the DPoP overhead because you only need to do signing once per cookie per cookie lifetime, and not on every single request. I don’t like this due to the window where exfiltrated tokens can be used, but it feels like a strict improvement over the status quo. An extension called device-bound session credentials for enterprise allows pre-enrollment of device keys, so even though the actual runtime DBCE flow doesn’t involve certificates, certificates can be used for device registration in enterprise environments and you can make sure that auth cookies only go to trusted devices. Unfortunately this is Chrome-only, and so we’re going to need to wait for it to be backported to all the random app frameworks for it to have widespread support on mobile or for almost everyone’s desktop app that’s actually three websites in an Electron wrapper. Mozilla’s current position is that they’re not in favour of it, so I guess we’ll see where Safari lands in terms of broad uptake.

The last thing on my list is another client cert/OAuth binding, this one still in draft state at the time of writing. This one is aimed primarily at the use of agent-driven tooling, where you have something running in the background using a whole bunch of tools that are each acting on your behalf. Authenticating to all of them separately isn’t a fun time, but giving broadly scoped access tokens to a non-deterministic agent and trusting that it’ll never post them somewhere public also isn’t a fun time. The key distinction between it and RFC8705 is that it’s aimed at connections rather than sessions, which avoids the worries about session resumption. This is done with TLS Exporters, which in TLS 1.3 should be unique to the connection even over session resumption (TLS 1.2 may reuse some of the same key material for exporters over session resumption, so it’s recommended to enforce 1.3 for this). By providing a new signature alongside the cookie on every new connection, the client proves that it still has access to the private key. This is a very new spec and I haven’t had much time to work through it yet, but my naive understanding is that unlike RFC8705 this would require some additional client support to be able to regenerate the client signature on every TLS reconnection.

This doesn’t avoid all the problems that RFC8705 has, including how to scope certificates. For the agentic use case that probably doesn’t matter - all these tools are acting on behalf of the same user, it’s fine if all the sites involved know they’re the same user. But it doesn’t solve the general purpose user use case, and right now DBSC seems like the best we have there.

But. Part of me still wonders whether Dirk Balfanz’s approach was the right one. Yes, there’s risk associated with TLS session resumption, but in the worst case you could just switch that off for high risk setups. The cookie scope argument is real, and also in cases where it could violate privacy the site owner could already choose to broaden their cookie scope and violate your privacy, and in cases where it breaks things you could just not make use of it. The other problems are largely fixed by TLS 1.3, and then we’re just left with “Browsers handle client certificates badly” to which my answer is “Yes, and we should fix that anyway”.

Despite having a pretty good answer to this solution over a decade ago, the closest we have to actual deployment is something that offers strictly worse security guarantees. And tokens keep getting stolen, and compromises keep occurring, and for the most part people shrug and get on with things.

  •  

Anthropic's Claude Fable 5 Available Again After U.S. Lifts Export Controls

2 Juli 2026 om 01:35
Anthropic's Fable 5 model is once again available for use, the company said today. Claude users are now seeing the option to use Fable 5, with Anthropic rolling out an in-app message.


Through July 7, eligible Claude subscribers can use up to 50 percent of their plan's weekly usage limit on Fable 5. After hitting that limit, Fable 5 use will require credits. After July 7, Fable will be available through usage credits.

Fable 5 is Anthropic's first Mythos-class model that's available for the public, and it first came out on June 9. Fable 5's capabilities exceed those of any model it has made generally available, and it has demonstrated "exceptional performance" for software engineering, knowledge work, vision, scientific research, and more. It outperforms Opus models on longer, more complex tasks. Fable 5 can work autonomously for longer than any prior Claude model.

Though Anthropic released Fable 5 with conservative safeguards to prevent misuse, the Trump administration applied export controls to the model, forcing Anthropic to restrict access to foreign nationals. Anthropic had no way of verifying the nationality of people using its models, so it had to suspend access to Fable 5. At the same time, Anthropic also had to restrict access to Mythos 5, the next model in its Project Glasswing initiative for major companies and federal agencies seeking help defending critical infrastructure.

The order came after Amazon researchers found a prompt able to bypass Fable's safeguards, and the model found software vulnerabilities. Anthropic investigated and discovered that older models and models from competing companies could also locate the same vulnerabilities. Anthropic ended up shipping a new classifier that blocks the technique in more than 99 percent of cases.

Fable 5 is available for Pro, Max, Team, and select Enterprise plans. Anthropic has also restored Mythos 5 access for U.S. organizations that are part of Project Glasswing.

Anthropic says that it is deepening its cooperation with the U.S. government on new pre-release testing, information sharing, and research collaboration.
This article, "Anthropic's Claude Fable 5 Available Again After U.S. Lifts Export Controls" first appeared on MacRumors.com

Discuss this article in our forums

  •  
❌