Reddit to Release Fix for iOS App to Remove Clipboard Copying Behavior

reddit ios appThe Reddit app has become the latest iOS app to be caught clipboard snooping, or accessing the contents of devices' clipboards without user permission.

"We tracked this down to a codepath in the post composer that checks for URLs in the pasteboard and then suggests a post title based on the text contents of the URL," a Reddit spokesperson told The Verge. "We do not store or send the pasteboard contents. We removed this code and are releasing the fix on July 14th."

Several popular third-party apps have been called out for surreptitiously copying the clipboard, thanks to a feature in iOS 14 beta that alerts users when apps attempt to do so. Apps that have been caught reading user clipboards for no discernible reason include LinkedIn, TikTok, Twitter, Starbucks, Overstock, and more.

LinkedIn said the clipboard copying behavior of its app is a bug and a fix is in the works. TikTok claimed the clipboard access was used as fraud detection to identify "repetitive, spammy behavior," and subsequently released an iOS update to remove it.


Ahead of the release of ‌iOS 14‌ beta, two developers issued a report alerting users that ‌iPhone‌ and iPad apps were accessing clipboard content behind the scenes. Apple's new ‌iOS 14‌ feature was added in response, and there's no longer a way for apps to quietly read the clipboard without users being alerted to the fact.

Until iOS 14 is released to the public, users who are concerned about clipboard snooping are advised to overwrite their clipboard's contents after they've used it to paste sensitive information like passwords, credit cards, bank account information, crypto keys, and so on. This can be done simply by highlighting a word on any web page or in any app and selecting "Copy" in the pop-up menu.

Tag: Reddit
Related Forum: iOS 14

Popular Stories

iPhone 17 Air Pastel Feature

iPhone 17 Air Battery Capacity and Weight Allegedly Revealed

Monday May 19, 2025 2:22 am PDT by
Apple is expected to launch an all-new ultra-thin iPhone 17 Air later this year, and while there have been plenty of rumors about the camera's overall design and thinness, we haven't heard any details about the device's weight and battery capacity until now. According to the leaker going by the account name "yeux1122" on the Korean-langauge Naver blog, the 6.6-inch iPhone 17 Air has a weight ...
Apple Glass

Apple Smart Glasses: Everything We Know So Far

Wednesday May 21, 2025 8:21 am PDT by
Google made waves yesterday by showcasing a set of lightweight smart glasses featuring deep Gemini integration and an optional in-lens display. The demo has reignited interest in Apple's own smart glasses project, which has been the subject of rumors for nearly a decade. Here's a recap of where things stand. Current Development Status Apple is actively working on new chips specifically...
Apple CarPlay Ultra instrument cluster themes 01

Apple's CarPlay Ultra Is Here – Does Your iPhone Support It?

Thursday May 15, 2025 5:17 am PDT by
Apple's recently announced CarPlay Ultra promises a deeply integrated in-car experience, but not all iPhone users will be able to take advantage of the new feature. According to Apple's press release, CarPlay Ultra requires an iPhone 12 or later running iOS 18.5 or later. This means if you're using an iPhone 11, iPhone XR, or any older model, you'll need to upgrade your device to access...
Apple CarPlay Ultra instrument cluster themes 01

Apple's 'CarPlay Ultra' Experience Now Available

Thursday May 15, 2025 5:07 am PDT by
Apple today announced that its next-generation CarPlay experience, now dubbed "CarPlay Ultra" begins rolling out today, starting with Aston Martin vehicles. Subscribe to the MacRumors YouTube channel for more videos. CarPlay Ultra is now available with new Aston Martin vehicle orders in the U.S. and Canada. It will also be available for existing models that feature the brand's next-generation ...
WWDC 2025 Banner

Apple Announces WWDC 2025 Schedule, Including Keynote Time

Tuesday May 20, 2025 8:13 am PDT by
Apple today announced a more detailed schedule for its annual developers conference WWDC, which runs from June 9 through June 13. The schedule confirms that Apple's keynote will begin on Monday, June 9 at 10 a.m. Pacific Time, with a live stream to be available on Apple.com, in the Apple TV app, and on YouTube. During the keynote, Apple is expected to announce iOS 19, iPadOS 19, macOS 16,...
macOS 16 visionOS Inspired Feature 1

macOS 16: Everything We Know So Far

Tuesday May 20, 2025 7:31 am PDT by
The Worldwide Developers Conference (WWDC), Apple's annual developer and software-oriented event, is less than three weeks away. We haven't heard a great deal about macOS 16 ahead of its announcement this year, so we could be in for some major surprises when June 9 rolls around. Here's what we know so far about the next major update to Apple's Mac operating system. macOS 16 Name? Every year ...
maxresdefault

OpenAI Buys Jony Ive's AI Startup to 'Completely Reimagine What It Means to Use a Computer'

Wednesday May 21, 2025 10:27 am PDT by
OpenAI is acquiring io, the hardware-based AI startup co-created by Jony Ive, OpenAI announced today. Ive has been working with OpenAI CEO Sam Altman on io for two years, and the duo expects to develop a family of AI devices. In a video shared by OpenAI, Altman and Ive outlined their partnership and what they expect to create as a result of the merger. "I have a growing sense that everything ...

Top Rated Comments

japanime Avatar
64 months ago
You might say they got caught reddit-handed. ;)
Score: 38 Votes (Like | Disagree)
itsmilo Avatar
64 months ago
Love how they all call it a „bug“ when it’s probably been there since it was launched in the App Store
Score: 30 Votes (Like | Disagree)
BulkSlash Avatar
64 months ago
That's some impressive bug-work going on there. They've managed to accidentally type all this code to constantly check the clipboard's contents without meaning to.

NotificationCenter.default.addObserver(self, selector: #selector(pasteboardUpdated), name: UIPasteboard.changedNotification, object: nil)

@objc func pasteboardUpdated(){
if let stolenData = UIPasteboard.general.string {
//Insert code here to steal clipboard contents...
}
}
Score: 16 Votes (Like | Disagree)
Akrapovic Avatar
64 months ago
People keep saying things like "I can't see any reason to allow apps to have clipboard access". Well, you need to think harder then.

Apples own apps do things such as reading SMS messages from Apple, to get 2FA codes for logging in, so you don't need to copy and paste that data. Other apps don't have as deep linking capabilities that Apples ones do, but in an attempt to recreate it, they have used clipboards. I have a parcel tracking app - if I copy a tracking number from an email and then open Parcel, it auto-fills the details with the tracking number from the clipboard. So there's one use for it, on one app I have. How many others are doing cool things?

Also I do buy the Tik-Tok anti-spam excuse. Twitter, Facebook and other such apps are absolutely filled the brim with bot. By detecting keystrokes you can work out if it's a bot of a person typing. Bots probably don't type letter by letter - a person does. A person types at inconsistent pacing, whilst a bot would be perfect. A person would use the backspace key for mistakes, etc etc. It's comparing what the person is typing to the clipboard to try and work out if it's a person, and if it's a person, are they just pasting spam messages in constantly.

Don't get me wrong - I'm not saying apps should all have this access to the clipboard. But with just a tiny bit of thought, it's quite easy to see how and why apps are doing this. But the practice should stop and move onto better ways of doing things.
Score: 13 Votes (Like | Disagree)
Sykora171 Avatar
64 months ago
If you have an iphone and are NOT using Apollo for reddit...you are really missing out. It is 1000000000x better than the stock reddit app. Crazy because its developed and maintained by ONE guy.
Score: 9 Votes (Like | Disagree)
7149041 Avatar
64 months ago

Well said, it’s probably all a lot less malicious than it seems. It could even be that there are some negative consequences in terms of app experience due to the hysteria.
This needs to become a permission "App XYZ wants to monitor your clipboard" so that we can make a choice which apps to trust with our clipboards, and which not. This has been raised on the Apple forums, Reddit etc for eons.

Frankly this should have been done like a decade ago.
Score: 9 Votes (Like | Disagree)