Facebook let Netflix see user DMs, quit streaming to keep Netflix happy
509 points by edsimpson 1 year ago | 208 comments- tsunamihippo 1 year agoThe article skips a lot of context to make it sound significantly worse than reality. Facebook didn't just randomly give Netflix access to everyone's messages. Specific user would need to purposefully log in to the Netflix app with their Facebook account in order to grant Netflix access to the chat functionality (intended to send movie recommendations to Facebook friends inside the Netflix app).
https://about.fb.com/news/2018/12/facebooks-messaging-partne...
Disclaimer: I work at Facebook but not on messaging or anything related to this article.
- lupire 1 year agoAnd if a user consented to Netflix-based chat, Facebook overshared all chat data, instead of only the Netflix chat data, because they couldn't be bothered to build a properly isolated API?
That's like asking permission to read and write your entire phone, just to provide the ability to write and read back a file.
- rezonant 1 year agoThis isn't how permissions work in most OAuth APIs. When you request permissions on apps like this, you request an "action" on a "subject". The "action" can be read/write/delete, the subject can be "DMs". How does Facebook determine whether a specific DM is a Netflix DM? In the database it's just a message from one user to another, with a certain text content.
By the way I'm not suggesting that it cant work this way, just that it doesn't. Facebook could have added a specific scope to allow an app to only read back messages related to itself. But that would have required anticipating the use case before these companies implemented it, or at least having better review policies to try to reduce the permissions apps are asking for.
But if the app wants to allow the user to have a back and forth with the other user, then that implies that Facebook Chat needs to have the ability to have app-specific conversation threads. It doesn't have that, though.
Netflix and Spotify requested read permission for DMs. Did they need it? Most assuredly they did not. But requesting read permissions for DMs in general has valid use cases, even if it should be treated sensitively by Facebook's authentication flow.
If there's any problem here, its that Facebook didn't seem to recognize that the apps (Netflix and Spotify) should not have been requesting read privileges at all, and should have revoked their ability to request that permission in a timely manner.
- slowmovintarget 1 year agoThis is why OAuth is insufficient for privilege management, especially for multi-tenant systems, or what should be segregated data sets. You want to grant access to dataset abc123, but not dataset abc124 belonging to the same user.
This leads to an explosion of scopes, or an explosion of API keys, unless you have a policy engine, or resource-based access control. A company as big as Meta should be able to (is able to) do better than they did, but they probably didn't think this was worth prioritizing because money lie in attention farming, not in mending the fences.
- btown 1 year agoSlack has a notion of private channels to which a bot can be added. Even a bot with full OAuth scopes can’t read private channels it hasn’t been granted access to. Of course, many people wouldn’t explicitly add the Netflix bot to their DM with their friend - but that’s exactly the point here.
OAuth is absolutely compatible with bots being treated as principals in a social graph, it’s just that that’s incompatible with the type of passive surveillance that was desired here.
- sebasvisser 1 year agoSo when it comes to adding value for advertising fb is able to separate every object and data piece into sickening degrees of detail… but when it’s about privacy and authentication it’s “not the way things are done around here”… As you’ve mentioned as well it’s a choice by fb. Just as we have a choice to call fb out on making immoral choices. Better yet, the developer(s) that coded this part, and the developers that make a daily choice to maintain it in its current form.
And yes, it’s a choice. Just because people don’t take responsibility to make a deliberate choice, doesn’t mean it’s not a choice.
- slowmovintarget 1 year ago
- londons_explore 1 year agoThe engineers who worked on Chat at facebook likely had the same access... They had an employment contract which said that they were allowed to use their access to debug bugs and improve the product, but not to spy on their girlfriends DM's.
Netflix presumably had the same.
As long as that access is audited to ensure it really was being used only for the intended purpose, I'm fine with that.
Inspected 50 messages all from your test account: fine. Inspected messages from an account after that user contacted customer support citing a problem with messages: fine. Inspected messages from an account after that account fired off alerts to the devops team for causing segfaults: fine. Look at a random account: not fine. Dump messages from many accounts with a script: not fine, and rate limits should stop you after like 100 messages.
- toofy 1 year agoi’d question the “…couldn’t be bothered to build…” i’d be more likely to believe they knew exactly what they were sharing and wanted it that way.
- krisoft 1 year agoI don’t know. If there is a “Facebook Messenger” feature on some Netflix interface then I would be surprised if it only worked with some chats and not others.
(That being said I have no clue why there would be such a thing, and why a user would prefer it? Maybe if Netflix were making set-top boxes)
- Euphorbium 1 year agoThat is how permissions work on android. I hate it.
- amelius 1 year agoThat's why I moved to GrapheneOS.
- amelius 1 year ago
- vlan0 1 year agoWhat incentive does FB have to limit that access? Feels like MBAs would just see that as a cost/burden? We know FB does give a fuck about privacy, so that’s never gonna be a reason.
- 1 year ago
- Wowfunhappy 1 year ago> That's like asking permission to read and write your entire phone, just to provide the ability to write and read back a file.
...it occurs to me that this is in fact how most desktop apps work, and I do prefer it that way.
- ornornor 1 year agoOn windows idk but Unix has permissions for that reason.
- ornornor 1 year ago
- rezonant 1 year ago
- some1else 1 year agoNote that everyone had access to the Inbox API at the time. We made an art project highlighting the invasiveness of such broad access:
"E-dentity is a project that asks a participant to login to its Facebook account, then takes his/ her private data from their profile and automatically prints them in an understandable booklet that is handed to the user. This booklet seeks to raise awareness of the hidden data we are sharing which we are often not aware of."
- YeBanKo 1 year agoThanks for the context, it's important. But from the link you posted:
So here Facebook acknowledges that an app that sends messages needs write permission, not read. I would assume that sending a recommendation is a write only thing, especially with something private as direct messages. And it is pretty well understand pattern. When you share something through iMessages, Signal or WhatsApp from the a different app, the app does not get an access to you chat history.> In order for you to write a message to a Facebook friend from within Spotify, for instance, we needed to give Spotify “write access.” For you to be able to read messages back, we needed Spotify to have “read access.” “Delete access” meant that if you deleted a message from within Spotify, it would also delete from Facebook. No third party was reading your private messages, or writing messages to your friends without your permission.
The allegation that Arstechnica are pretty sever:
Strange naming "Inbox" for sharing API.> By 2013, Netflix had begun entering into a series of “Facebook Extended API” agreements, including a so-called “Inbox API” agreement that allowed Netflix programmatic access to Facebook’s users' private message inboxes
This is something that Netflix could do even without special access to the messages, since links originate from them. But so could Facebook, since they see the traffic in messages and can identify referral links. Looks like Titan API, whatever it is, gave even more access?> in exchange for which Netflix would “provide to FB a written report every two weeks that shows daily counts of recommendation sends and recipient clicks by interface, initiation surface, and/or implementation variant (e.g., Facebook vs. non-Facebook recommendation recipients).
NYTimes article from 2018 [1] has more details, but it is still unclear if user consent was explicitly obtained for Netflix to read messages. But an interesting quote from Steve Satterfield, Facebook’s director of privacy and public policy:
A rather conspicuous statement by someone who have properly collected consent from users.> With most of the partnerships, Mr. Satterfield said, the F.T.C. agreement did not require the social network to secure users’ consent before sharing data because Facebook considered the partners extensions of itself — service providers that allowed users to interact with their Facebook friends.
- rezonant 1 year ago> So here Facebook acknowledges that an app that sends messages needs write permission, not read.
I guess the feature at issue here is that you could actually hold a conversation with a Facebook friend inside of Netflix or Spotify which does indeed necessitate the ability to read back messages from the other user.
Whether it was wise to allow that instead of the kind of sharing systems we use today in 2024 is another question.
- YeBanKo 1 year agoDepending on the OS architecture it might be possible to have an SDK render messages without handing any data to the parent app. Or of it's not possible at least the question is where any of the messages even hit Netflix servers.
- YeBanKo 1 year ago
- rezonant 1 year ago
- choppaface 1 year ago> Disclaimer: I work at Facebook but not on messaging or anything related to this article
Same as "Hey, Googler here. Let me tell you how I'm right and why you should think this way."
> Facebook didn't just randomly give Netflix access to everyone's messages.
That's not at all what the title alleges, nor what the article says. The article (1) provides evidence that Facebook monetized user private messages in a data-sharing project with Netflix and (2) cites court documents that litigate Facebook having Jedi-Blue-like monopoly-preserving interaction with Netflix.
It doesn't matter what the Facebook TOS says or how the tech works. Human users never provided informed consent that their private comms would be monetized as well as used for anti-competitive un-American purposes (un-American as in the Sherman Act, altho creating a monopoly is perhaps very American indeed). And Facebook has done that time and time again.
- ionwake 1 year agoI only read the headline and this reply gave me even greater concern. wtf they shared ALL msg data for logging into Netflix chat?!?
I dunno I’m surprised I’m still surprised these days
- notnmeyer 1 year agoso you agree then that “private” messages aren’t private on fb? i don’t know how to interpret this in a way that isn’t terrible for fb users…
- airtonix 1 year agonot if you log in to enable and agree to share such messages. no.
- scarface_74 1 year agoIf you give access to your chat as the parent poster claims, why are you surprised that Netflix has access?
- hipadev23 1 year agoBecause it’s not a reasonable expectation that your private messages would be shared with an advertising partner when you link your account to it, and “give access” is rarely a step that your average user actually reads, much like agreeing to TOS’s upon signup.
And catering to the average user’s expectation is what should dictate policy, not a “technically we have permission” caveat.
- bluefirebrand 1 year agoYou would expect that giving permission to send specific pre-approved messages does not imply permission to read everything you've ever said to anyone or they've said to you..
Right?
- notnmeyer 1 year agoit’s disingenuous to think that users read and fully understand the various permission scopes of a service. “private” has an unambiguous meaning—playing the “well, technically” card falls pretty flat imo.
- hipadev23 1 year ago
- airtonix 1 year ago
- 1 year ago
- k8svet 1 year agoSo... this sounds like OAuth, with a nice consent scene that says I'm giving Netflix this access to my FB DNs. That's what you mean, right? Otherwise, what the fuck is the difference?.
And really, as if this makes anything better, wow. Imagine having the feeling of obligation that you have to stick your neck out over this. Just take your over-sized salary and be happy knowing you work for one of the worst companies of our time. (despite my tone, at this point, I honestly say that without judgement, just ... own it.)
- aardvarkr 1 year agoWhen you give your mail client credentials to read your email , would you not expect your client to be able to read your mail?
On Android, when you give a third party client permission to receive SMS, you don’t expect it to have access to your SMS?
- k8svet 1 year ago[flagged]
- k8svet 1 year ago
- navigate8310 1 year agoTotally agree with the sentiment here. The comment by the employee make it sound like it's the user's fault. Something akin to dark pattern and malicious compliance by giving the user an OAuth consent for their DM.
- rezonant 1 year agoIt's only a dark pattern if this was the permission Netflix asked for when you hit "Sign in with Facebook" or some other unrelated feature. If the permission was granted when you tried to use Netflix Chat, a bidirectional in-app chat powered by Facebook, then its not a dark pattern at all, its just the usual way things are done.
- rezonant 1 year ago
- k8svet 1 year agoLmao, love seeing what HN decides is controversial these days.
God give me the power of some of y'all's utterly depraved self-serving self-delusion. I at least acknowledge the moral compromise of how my labor accrues in the system instead of burying my god damn head in the sand about it and offering poor incoherent defenses of my employee in public. And I make a third of what I could make at FB, and still probably don't contribute as negatively to the world.
- aardvarkr 1 year ago
- aihkas 1 year ago[flagged]
- dang 1 year agoYou can't attack another user like this on HN, no matter how you feel about their employer.
Since you've unfortunately done this before (https://news.ycombinator.com/item?id=37430894), I've banned this account.
If you don't want to be banned, you're welcome to email hn@ycombinator.com and give us reason to believe that you'll follow the rules in the future. They're here: https://news.ycombinator.com/newsguidelines.html.
- aihkas 1 year ago[dead]
- aihkas 1 year ago
- dang 1 year ago
- rmbyrro 1 year ago[flagged]
- lesuorac 1 year ago> Disclaimer: I work at Facebook but not on messaging or anything related to this article.
So, it could work exactly as it sounds and you'd have no idea?
---
Although I'm not sure the complaint [1] (linked from articled) actually says that messages were given.
[1]: https://cdn.arstechnica.net/wp-content/uploads/2024/03/compl...
- trolan 1 year agoYes I think they're giving their general nerd opinion while also being transparent about possible conflicts. Their comment reads like an analysis of the article not the technology.
- 1 year ago
- trolan 1 year ago
- cm2012 1 year agoIf this wasn't Facebook it wouldn't even be news.
- soraminazuki 1 year agoI hope you’re being sarcastic? Or is that actually your stance on people’s privacy rights?
- AnotherGoodName 1 year agoGoogle docs literally has the exact same feature and we're not even talking about it. Using the exact same OAuth framework as here you can grant Netflix and Spotify the right to read everything and all comments in your Google Docs. You can even grant them the right to read all your emails in Gmail!
In all seriousness i believe anyone providing oauth should just shut it down at this point, Cambridge Analytica was entirely users granting a third party oauth access to read their friends lists with an explicit permission dialog and all and it was a scandal that led to massive fines. The world decided that oauth access is not ok even with the dialogs prompting to allow third party access and at this point we as developers should listen and take it away. Google currently flys under the radar with the exact same access that led to cambridge analytica but they should probably just shut it down unless they want to run the risk of similar court cases.
- rezonant 1 year agoBoiling it down here... some users hit the "Yes" button when Facebook asked them if it was OK to allow Netflix to access their DMs for a feature that allowed you to chat (bidirectionally) with your friends inside the Netflix app. That's a privacy violation?
- kazinator 1 year agoRather, it seems like cynicism about the media, than a stance on rights.
- rvba 1 year agoLots of comments here look like some sort of astroturfing made by a PR agency
- AnotherGoodName 1 year ago
- soraminazuki 1 year ago
- lupire 1 year ago
- 1vuio0pswjnm7 1 year ago"Meta said it rolled out end-to-end encryption "for all personal chats and calls on Messenger and Facebook" in December. And in 2018, Facebook told Vox that it doesn't use private messages for ad targeting.1 But a few months later, The New York Times, citing "hundreds of pages of Facebook documents," reported that Facebook "gave Netflix and Spotify the ability to read Facebook users' private messages.""
1. "Does Facebook use info from your private messages to target you with ads?
No. Facebook says it might look at your private messages to determine if they violate the company's policies, but it doesn't use that information for ad targeting. Facebook won't use the contents of your private messages to target you with ads on Facebook Messenger, WhatsApp or Instagram either, according to a spokesperson."
https://www.vox.com/2018/4/11/17177842/facebook-advertising-...
If the messages are encrypted "end-to-end" or whatever the chosen marketing buzzwords, so that Facebook cannot read them, then how is FB able to "use" messages for anything. One accustomed to normal communications services might think FB is storing and delivering messages and that's all. But in truth, it's "using" them. (For purposes other than complying with any request from a court of comptent jurisdiction.)
Exactly what they might be doing is of course highly confidential. You are free to take guesses. FB may answer yes or no. Answers cannot be verified, so their value outside of marketing is dubious.
NB. Meta _is_ a third party. It feels as if some people believe they can redefine terms like "end-to-end", "third party", etc. As if they know many readers will happily go along for the ride.
- 1oooqooq 1 year agoThey describe several cases where the E2E means user<->facebook<->otheruser. Some examples: group chat. Shared images. Shared Urls with snipets. Absolutely everything involving interactions with a whatsapp "business account".
So they are not exactly lying. just being extremely dishonest.
- MattyMc 1 year agouser<->facebook<->otheruser is the exact OPPOSITE of end-to-end. There’s literally a middleman who can read your messages.
Theyre sooooo dishonest.
- KAKAN 1 year agoYeah, one of the “ends” being Facebook itself. It's “legal” as in it is indeed end-to-end encrypted in the same way Cloudflare-hosted websites are, but very shitty. I always thought Facebook did this, but having some confirmation bias is very nice indeed, lol.
- KAKAN 1 year ago
- MattyMc 1 year ago
- leidenfrost 1 year agoMy guess is that FB stores the keys to reverse the encryption.
The point of e2e is to block any third party to to see your conversations by sniffing packets. Not to stop Meta themselves.
- pushedx 1 year agoThe OpenWhisper protocol, which is supposedly implemented by Messages and WhatsApp, was designed specifically to enable anonymous key agreement between the two or more parties sending messages, and no one else, including the service provider.
Whether or not Facebook actually implements it this way is a great question.
- appplication 1 year ago> two or more parties
When you’re having a 1:1 conversation with someone at a party, and then crack a joke and some weird dude 10 feet away laughs at you and says “good one”.
The obvious answer here would be for meta to consider itself party to your conversation.
- appplication 1 year ago
- AdamJacobMuller 1 year agoPacket sniffing is mitigated by TLS/HTTPS.
The point of end to end is to to ensure that only me and the person I'm sending a message to can read it and that none of the systems in-between us can read the plain text of it.
- aftbit 1 year agoUh nope, that's a huge move of the goal posts. The point of E2E is to ensure that nobody besides the two endpoints can read the messages, including all hops along the way, notably including the service provider themselves.
The problem is that this requires users to do things like use one device to authenticate another or restart key exchange with all of their peers. If a user loses their phone, then they will need to redo their security exchange process, which nobody wants to do or even understands. Thus companies often store key material in an insecure way to allow new devices to be silently added to the account.
Plus, even if E2E is well implemented, there are still problems when the endpoint software can be remotely updated to a version that exfiltrates keys or messages.
- bawolff 1 year ago> The point of e2e is to block any third party to to see your conversations by sniffing packets. Not to stop Meta themselves.
No... the point of end to end encryption is to be encrypted end to end. Its literally the name. If meta can read your encrypted messages, that is just normal encryption not end to end encryption.
- 1 year ago
- roncesvalles 1 year agoAlthough the frank meaning of "E2E encryption" is that a message is encrypted on the sender's device and only decrypted on the intended recipient's device, that is never ever what big tech companies mean when they use this term.
For one, this would remove companies' ability to support lawful interception, which puts them afoul of American law.
- Thorrez 1 year agoIs lawful interception possible with Whatsapp? I thought it had actual E2E encryption.
- Thorrez 1 year ago
- pushedx 1 year ago
- 1oooqooq 1 year ago
- mcherm 1 year agoI'm not clear whether I understood what the article is claiming. It's clear they claim that Meta shared customer's direct messages with a business partner without notifying the individuals who sent and received the messages. It also SOUNDED to me like the article was claiming they did so AFTER Meta introduced "end-to-end encryption" (which would ALSO mean that they were lying about offering end-to-end encryption). Am I reading that correctly?
- benreesman 1 year agoThe cluster of allegations is that the Onavo acquisition put FB-designed and built rootkits underneath TLS on a significant fraction of all smartphones in the United States and that FB/IG (now Meta) used clear text access to ostensibly secure HTTPS sessions to extract arbitrary data from both competitors and partner companies to play poker with X-Ray glasses on as concerned all competition in an ostensibly free and fair and competitive marketplace while simultaneously creating scope for arbitrary other advanced actors to exploit the same intentionally crippled OS-level security at the cost of weakening the entire world’s digital security infrastructure for pure financial profit without so much as a FISA court order to justify such actions.
If substantiated, such accusations would be among the most damning in the history of technology.
- nemothekid 1 year ago>If substantiated, such accusations would be among the most damning in the history of technology.
If substantiated? Just search Onavo on HN search - I thought this was widely known for years.
- benreesman 1 year agoAs a former employee until 2018, I heard the words “Project Ghostbusters” two days ago. I was peripherally aware of something called Onavo but I had no notion that anyone was talking about “kits”, we all thought it was some kind of metrics thing that was sort of iffy sounding but lots of iffy ideas got proposed by some PM looking to make a name and shot down by the grownups, what is alleged would have provoked a riot at the weekly all hands.
If any of this is true they didn’t tell people like me about it, and at one point there were three people on the org chart between myself and the CEO.
I’m very skeptical of the allegations, but I’d be lying if I said I found them to be flat impossible. I tread very lightly on this sort of thing and I didn’t even acknowledge I’d ever heard the word Onavo until I read it on TechCrunch.
I certainly hope they’re false: FAIR seems to be the last real hope for an Open future on AI short of a complete housecleaning of the whole Valley.
- benreesman 1 year ago
- ahahahahah 1 year agoThis article has nothing to do with onavo.
- ajdude 1 year agoIf this is true that sounds really, really, bad.
- loeg 1 year ago> such accusations would be among the most damning in the history of technology.
You're putting this up there with IBM in the holocaust?
- nemothekid 1 year ago
- tobias2014 1 year agoI find the article quite confusing and unclear to be honest. Are there any other sources?
This is the original NYT article from 2018 https://www.nytimes.com/2018/12/18/technology/facebook-priva... "Internal documents show that the social network gave Microsoft, Amazon, Spotify and others far greater access to people’s data than it has disclosed."
Facebook promised E2E at the end of 2023.
- tssge 1 year agoHere's the source media is probably using: https://www.courtlistener.com/docket/18714274/klein-v-meta-p...
To be honest I found I got much better grasp on the whole debacle by just reading the court papers themselves.
- dylan604 1 year ago> Facebook promised E2E at the end of 2023.
Wait, seriously? Like 4-6 months ago? Like, yesterday in terms of how long they haven't had it? Sheesh, a day doesn't go by that I'm not reminded of how happy I am to have dropped FB so long ago.
- ahahahahah 1 year agoThey've had it for years, it was just opt-in. More recently they've applied it to everything.
- ahahahahah 1 year ago
- tssge 1 year ago
- rgbrenner 1 year agoFB has supported e2e messaging since 2016, but it wasn't the default until 4 months ago (Dec 2023). So likely very few users had it enabled (much less on both ends needed to protect a message from FB).
The netflix deal starts in 2013. Even after 2016, e2e would just mean netflix would get slightly fewer messages.
So I don't see anything that would necessarily indicate FB is lying about e2e.
- petesergeant 1 year agoI wonder if there’s a timing connection here with FB Messenger “upgraded the security of this chat” messages I’ve had on a couple of long-running conversations recently
- Jerrrry 1 year agosheer coincidence, not to google-slide.
- Jerrrry 1 year ago
- petesergeant 1 year ago
- bastawhiz 1 year agoIt sounds like it, and if true, is pretty damning.
- benreesman 1 year ago
- kylecazar 1 year agoWhat is being claimed here?
'granted programmatic access to FB user's inboxes' could mean a lot of things. What privileges? I read the article and still can't tell.
I don't believe that Meta allowed Netflix to read messages that a user sent or received, but that seems to be what they're implying.
- chatmasta 1 year agoAgreed. I would like to read more details about the "access to the Titan API" that Facebook gave to Netflix. Has anyone read the lawsuit PDFs? Maybe more details are in there somewhere.
- rvba 1 year agoFor me it sounds that they read the messages to measure sentiment (what people are watching / what they like and dislike / what they recommend / generic information about competition from other rv shows, movies and video games), but probably the system was "bugged" (plausible deniablity) so those with access could read everything they wanted - be it messages made by employees from some competitor startup, or perhaps partners and sweethearts. Creepy stuff.
- bicepjai 1 year agoAn exec can interpret different meaning rather than a technical person. I assume that as full access to read the messages
- chatmasta 1 year ago
- neilv 1 year agoI don't recall this potential bombshell (maybe because it was shortly before a Christmas, and the NYT headline looked like just more of the same ol'):
> And in 2018, Facebook told Vox that it doesn't use private messages for ad targeting. But a few months later, The New York Times, citing "hundreds of pages of Facebook documents," reported that Facebook "gave Netflix and Spotify the ability to read Facebook users’ private messages."
2018-12-18 https://arstechnica.com/tech-policy/2018/12/report-facebook-...
2018-12-18 https://www.nytimes.com/2018/12/18/technology/facebook-priva...
- _heimdall 1 year agoThe problem isn't whether Facebook used private messages for ad targeting (the claim they denied), its whether Facebook used private messages at all.
Who cares if it was for ads, giving third party companies access should be a huge problem with or without ads.
- margorczynski 1 year agoThis should make it a no-go for any sane person that is aware of that, unfortunately not many are.
I always try to convince people I know to ditch Messanger/WA/etc. in favor of Signal, and in many cases I've succeeded.
- _heimdall 1 year agoFor better or worse, I found that the people willing to keep Signal installed and up to date largely just to get in touch with me was a good proxy for the list of people that really matter most to me.
I didn't win many over on the importance of privacy or Signal, but the willingness of some to put up with it because it matters to me says a lot about my relationship with them.
- rvba 1 year agoWhat is good about signal? It does not allow unique account names (!), but uses telephone numbers - what is just absurdly bad security.
The state can make a duplicate of your sim at any time. Not to mention linking phones to people is relatively easy.
- _heimdall 1 year ago
- margorczynski 1 year ago
- jgalt212 1 year agothat's the money quote, for sure.
- 1 year ago
- throwaway2990 1 year ago[flagged]
- zer0zzz 1 year agoCare to back that up with any citations, or should everyone just take it on faith that what a throwaway says isn’t made up?
- onlyrealcuzzo 1 year agoFacebook is on both ends of the e2e.
e2e encryption means no from client to client can read your messages.
Your client certainly can - and Facebook is the client. It would have no problem sending back signals on your messages (or the full message) to Facebook servers.
Doesn't mean it's happening. But it's interesting that e2e encryption alone makes you positive it isn't.
- Veserv 1 year agoCan you point out where in their contracts or privacy policy they have legally binding terms that irrevocably dismiss their right to give your messages to advertisers?
If they have no intention to sell, then they have nothing to fear by putting it in writing with a appropriate liquidated damages clause. Otherwise it is quite suspicious why they reserve the right to do that in the contracts that they wrote.
- 2Gkashmiri 1 year agoDownload a naughty gif/video from reddit and send it to someone on messenger. It will report you and say you are sending a naughty video and that multiple attempts will ban you. Fine for unencrypted chat.
Send same on e2e chat. The video will say "not sent".
Why is Facebook processing anything before being encrypted? The understanding is e2ee means content gets encrypted on device, sent to server in encrypted state and decrypted at other side. There is NO way Facebook should be able to analyze the contents of message, photo, video. .if they are doing this for csam/nudity, what stops them from using same tech for ad targeting and more seriously, for letting governments to spy on people?
- cute_boi 1 year agoWell, how can anyone trust facebook and whatsapp? How can we be so sure that e2e is done properly without looking into source code.
- gloryjulio 1 year agoIt's both true and false. They don't do advertising with msg, and it's e2e encrypted. But they can use the metadata
- fnordpiglet 1 year agoFacebook is organized as a for profit company.
- onlyrealcuzzo 1 year ago
- zer0zzz 1 year ago
- _heimdall 1 year ago
- crmd 1 year agoThis is one of the litany of bad things that happens when antitrust precident is ignored and we allow a small number of companies to become large enough to dominate the economy.
- izacus 1 year agoBut commenters here want that right? They're rilling up against an API that allows data export and user ownership and demand that they're removed and all interoperability to be killed because "users are too stupid". This cements and entrenches monopolies because noone is allowed to compete or interoperate.
In sense, things like Apple Mail is a problem for them because it uses full access to GMail account to extract private data over API.
- jfil 1 year agoI find out interesting that the discussion on HN is narrowly focused on the technical/messaging accesss angle, rather than on the anticompetitive collusion. The collusion is the "big picture" root cause of so many downstream evils.
- scarface_74 1 year agoSo are you claiming Netflix is a “monopoly” and if so, how would you break them up? The same question for Facebook.
This is a case of possible “collusion” not anti trust
- lupire 1 year agoCollision is part of antitrust.
https://www.law.cornell.edu/wex/collusion#:~:text=Collusion%....
- scarface_74 1 year agoYou can have collusion without being a monopoly. Your two neighborhood grocery stores can illegally collude even if there are 100 in your city
- petesergeant 1 year ago> Collision is part of antitrust
Would make for some fascinating lawsuits, but I suspect you meant collusion
- scarface_74 1 year ago
- waveBidder 1 year agoopen protocols in the case of Facebook and banning studios from owning/exclusivity with distributors in the case of Netflix.
- scarface_74 1 year agoSo you are saying that no one can distribute their own work on thier own website? Where do you draw the line? Can I not create my own video and put it on my website? Can I not work with friends and we all post our own video on our own website that we jointly own?
How do we stop foreign studios from distribution over the internet? Do we block them too?
Why stop at films? Should book authors also not be slowed to self publish? Software developers?
- scarface_74 1 year ago
- lupire 1 year ago
- izacus 1 year ago
- stephenm00 1 year agoBuried in the article, but not just Netflix, Spotify as well.
The New York Times, citing "hundreds of pages of Facebook documents," reported that Facebook "gave Netflix and Spotify the ability to read Facebook users’ private messages."
- pc86 1 year agoThis is literally the first time in my life I've heard of Facebook Watch.
- bhouston 1 year agoThere is a lot of confidential information in Facebook private messages, probably people cheating, plans to leave one's job, political organizing, brides, illegal activities, etc. If Netflix gets access to this information, it is likely that other companies and 3rd parties got access either directly or indirectly.
Very scary what can be done with that information.
- timetraveller26 1 year agoSo it's true that just talking to anybody about anything automatically triggers a flag in some server somewhere.
- _heimdall 1 year agoThe encryption concerns here are a bit confusing IMO. Facebook owns the UI that show you the text of the messages.
There doesn't have to be a backdoor into E2E encryption at all per say, a simple UI property check would give full access to message contents directly in the frontend code. Throw that into a private API and Bob's your uncle, decrypted messages that were transmitted with 100% secure E2E encryption.
- lxgr 1 year agoIs that different for any other encrypted instant messenger, though?
- _heimdall 1 year agoNo not at all, its a universal risk since you have to trust the UI.
I should have been more clear there. Its interesting to me that I often see concerns over whether Facebook has encryption backdoors when the UI can do all the work.
- lxgr 1 year agoThat's arguably still a backdoor, no?
At least I'd call an instant messenger that which claims to provide end-to-end encryption between conversation participants and then surreptitiously inserts itself as another participant.
However, something very active like that would be much easier to detect and prove than a "true" cryptographic backdoor that could possibly be explained away as an oversight in design or auditing.
- lxgr 1 year ago
- _heimdall 1 year ago
- lxgr 1 year ago
- dbg31415 1 year agoFacebook is always going to pull stunts like this.
They don't do creepy things on occasion by accident, they do them intentionally by default.
Same old story for the last 20 years. Zuck is creepy AF, everything he touches is creepy AF.
https://www.businessinsider.com/well-these-new-zuckerberg-im...
- treme 1 year agohow much effort did meta put into building a legit competition vs netflix/youtube? it's hard to imagine they couldn't put up a decent competition with max user reach and $
just how great of a moat do yt/netflix have? is Disney the only one mounting a decent fight?
- cherioo 1 year agoThere’s plenty of competition to netflix.
Tiktok is probably the biggest competitor to YT. But it had to come in from short form video angle, because the moat of YT in long form video is probably insurmountable. Its fate remains to be seen.
- Mindwipe 1 year agoWha?
Hacker News is literally constantly claiming that there are too many competitors to Netflix and there needs to be some kind of compulsory licensing to reduce competition. Like there are hundreds of posts on the front page every week to that effect.
Meta never took Watch very seriously, just because it requires literally billions of dollars of investment and they clearly never wanted to spend that much.
They licensed Buffy the Vampire Slayer for the US, clearly saw it didn't move the needle much and they'd need to spend $5 billion+ to get there, and scrapped the whole idea.
- cherioo 1 year ago
- ozfive 1 year agoThis is wiretap level.
- tored 1 year agoNever use Facebook or any other of the big ones as a login provider. Always use a separate account for each cloud service.
- 2muchcoffeeman 1 year agoFacebook had a streaming service? This is the first I’ve heard about it.
- frogpelt 1 year agoIf the product is free, you and ALL of your data are the product.
- itioo 1 year agoMy solution is to not use online products.
I have a Gmail account because everyone needs email these days, and an iPhone with Gmail and banking and little else “online”
Sorry not sorry tech people but I never really asked to be born or have your existence specifically but on me specifically.
You’re society’s problem, not mine. It can deal with it without knowing I exist.
- mgoetzke 1 year agoWhat is Facebook Watch ?
- rezonant 1 year agoFor important context on my post here, please read tsunamihippo's post first: https://news.ycombinator.com/item?id=39859319.
This story seems very overblown. Are we arguing that Facebook should not ever allow any third party app to ask permission to read the user's Facebook DMs? There are valid use cases for this permission, and every case where an app asks for it is not a "privacy violation". Sure, did Netflix or Spotify actually need the ability to read back DMs instead of just write them so that they could send recommendations? No, they shouldn't have needed that. If Facebook's API required that they have read access just to send a message, then that's crap design. But is it nefarious? No.
As long as the user is appropriately briefed on what they are granting (and it appears that they were), and as long as Facebook addresses over-scoped permissions requested by third party apps in a timely manner, then this should not be an issue.
I for one believe that we need to mandate that FAANG companies have these sorts of permission-driven systems to avoid the vendor lock in we're all too commonly stuck with today.
Because these things are needed for competition to thrive and to avoid the big companies from creating moats that prevent us, the startups out there, trying to dethrone them, its all the more important that these companies invest in better UIs that help a user understand the implications of what they are doing, and better review processes to stop bad actors from exploiting users' ignorance on an ongoing basis.
I despise Meta, but come on. Don't throw the baby (interoperability) out with the bathwater (interoperability can enable exploitation).
- izacus 1 year agoRemember that this site is full of people outeight supporting monopolies and walled gardens when it comes to companies they like. So yes, they're absolutely defending removal of APIs that allow data sharing with explicit user consent.
- 1 year ago
- izacus 1 year ago
- drexlspivey 1 year agoFacebook also installed root certificates through Onavo to spy on their competition. Some email exchanges from this court doc https://storage.courtlistener.com/recap/gov.uscourts.cand.36...
From Zuck:
Whenever someone asks a question about Snapchat, the answer is usually that because their traffic is encrypted we have no analytics about them. . . . Given how quickly they’re growing, it seems important to figure out a new way to get reliable analytics about them. Perhaps we need to do panels or write custom software. You should figure out how to do this.
From Danny Ferrante (FB Data Scientist):
- We developed "kits" that can be installed on iOS and Android that intercept traffic for specific sub-domains, allowing us to read what would otherwise be encrypted traffic so we can measure in-app usage (i.e., specific actions that people are performing in the app, rather than just overall app visitation). This is a "man-in-the-middle" approach.
- Our plan is to work with a third party—like GFK, SSI, YouGov, uTest, etc.—who will recruit panelists and distribute the kits under their own branding. We already have proposals from several of these providers.
- The panelist won't see Onavo in the NUX or in the phone settings. They could see Onavo using specialized tools (like Wireshark).
- advael 1 year agoGonna give it like two weeks before tech bosses posit that users don't have a reasonable expectation of privacy in their private messages
- cyost 1 year agoIsn't that why they got renamed to "direct" messages basically industry-wide?
- 1 year ago
- cyost 1 year ago
- _tk_ 1 year agoTwo things are truly horrifying if this is true. 1. Just how normalized this behavior has become in Silicon Valley upper management circles. 2. That this has not gotten out earlier. Hundreds or thousands of employees at both companies could have reported this to the FTC or elsewhere.
- rrr_oh_man 1 year agoVesting period
- 1 year ago
- rrr_oh_man 1 year ago
- staticautomatic 1 year agoCue the FCC for yet another toothless Meta consent decree.