Accuweather — com.yourcompany.TestWithCustomTabs Off topic. I can't imagine how did they shipped this app with this BundleId.
Presumably it got developed as such, and it never got prioritized before release. "Okay we've finished all the must-haves just in time for our release deadline but the name for our app in our code isn't really configured correctly." "How long will it take to fix?" "Maybe a week to update our CI environments and be confident that there aren't any regressions related to dependencies on the thing that we're changing, bu…
Popular iPhone and iPad Apps Snooping on the Pasteboard
101–107 of 107 posts
Re: Popular iPhone and iPad Apps Snooping on the Pasteboard
#102I wouldn't be surprised if the apps themselves were not directly responsible here -- that is, the code that's written directly by the app developers. Instead, it may very well be be some analytics/marketing SDK that has been included in the app because of a business request. These have no privilege separation: they run their code in the same context as the code that the app developers wrote. (Consider the example of…
"We shipped a trojan and code-signed it, but it's okay, it is some blob from a vendor that we included just because. We should talk to Bob from marketing to make sure it's not doing bad things." No.
> ...we included just because...
Bob from marketing is the one who asked for the integration.
> We should talk to Bob from marketing to make sure...
Bob has no clue about this stuff.
We're not asking Bob what the SDK is doing, we're telling him. And any other decision makers in the vicinity.
Then we see whether the decision about the SDK changes. If not, we have to make our own personal ethical decision about what to work on.
Re: Popular iPhone and iPad Apps Snooping on the Pasteboard
#103Earlier quoted context omitted.
Presumably it got developed as such, and it never got prioritized before release. "Okay we've finished all the must-haves just in time for our release deadline but the name for our app in our code isn't really configured correctly." "How long will it take to fix?" "Maybe a week to update our CI environments and be confident that there aren't any regressions related to dependencies on the thing that we're changing, bu…
I get this for a scrappy startup trying to move fast. But this app (pretty decent, btw) is 10+ years old.
Re: Popular iPhone and iPad Apps Snooping on the Pasteboard
#104Re: Popular iPhone and iPad Apps Snooping on the Pasteboard
#105Earlier quoted context omitted.
Would that mess up things users actually copied?
You can read the pasteboard without messing it up, and then replace the contents back to what they used to be.
Re: Popular iPhone and iPad Apps Snooping on the Pasteboard
#106The pasteboard API is essentially the same in iOS as it is in macOS. Which means it's an api that was likely designed more than 20 years ago. Because of that, it was not designed for the user-hostile app world we live in, where developers will harness any api that can leak data about the user. A solution to this is to re-design this api so that it allows developers to query for specific matches, but requires user-act…
> A solution to this is to re-design this api so that it allows developers to query for specific matches, but requires user-action to unlock them I.e. I can passively ask "does the clipboard contain a photo?" or "does the clipboard contain a url in the *.facebook.com domain?" but in order to get the contents I have to prompt the user to manually paste. I fully expect apps to try to leak information bit-by-bit to the…
Re: Popular iPhone and iPad Apps Snooping on the Pasteboard
#107Earlier quoted context omitted.
The permissions can be unidrectional, e.g. password manager grants permission to a specific app for the next N seconds. Similar to "add photo" permission.
How would the password manager know which app you’re going to paste the password into?
This kind of inter-app policy could also be useful for opening URLs, e.g. open all URLs from untrusted app A in Brave browser where Javascript can be easily whitelisted on a per-site basis.