Earlier quoted context omitted.
I think this is a valuable feature for users of the product. Some users like this feature. If you don't, just use another product. Not everything needs to be a philosophical debate.
I don't think the feature is well known. What percent of Viber users could tell you that messages can be deleted without their consent?
Viber adds end-to-end encryption
81–90 of 114 posts
Re: Viber adds end-to-end encryption
#82Earlier quoted context omitted.
> I don't think I get your complaint > Without open-sourcing the crypto, they could be just doing rot16($message) for all we know. There are two things you can do: 1. Watch the outbound traffic and attempt known-plaintext attacks 2. Reverse engineer the app Neither is particularly difficult. Most Android apps are trivial to break apart using Lobotomy. A large swath of software security folks specialize in binary audi…
Has anyone done that and produced a fully open source app to connect to whatsapp?
https://github.com/tgalal/yowsup for example
Re: Viber adds end-to-end encryption
#83Earlier quoted context omitted.
Is it cryptographicly broken or not? Can I read the plain text of the traffic I capture?
https://tonyarcieri.com/all-the-crypto-code-youve-ever-writt... The word "broken" means susceptible to practical attack, and attacks aren't always of the "cryptanalyze the ciphertext and read the plaintext because you're a clever mathematician" variety. For example: Padding Oracle Attacks. This is the most accessible explanation on-hand: https://twitter.com/SoatokDhole/status/720435675401744385 A padding oracle attac…
iMessage would have been reasonably secure had they used AEC-GCM or a MAC. The design at least made sense: compose a scheme out of known primitives. They just missed (very important) details. Telegram is just turtles all the way down.
Re: Viber adds end-to-end encryption
#84End-to-end (E2E) code needs to be open source and venders that don't agree to an audit should be considered insecure; holds true for What's App, which declined to allow their E2E code to be audited. Also, message metadata is still being leaked by all of these E2E implementations and needs to be fixed.
WhatsApp's "E2E" code is from Signal, which is open source. This zealous belief that all secure cryptography must be open source is something I hear a lot from open source advocates, but not so much from cryptography engineers.
Re: Viber adds end-to-end encryption
#85>The enhanced delete feature, meanwhile, has been in the app for a while, but is part of the company’s is a way for users to wipe a conversation not just on their end, but on that of the recipient’s phone. You can think of this as Viber’s answer to ephemeral messaging, but with a more manual approach. Does anyone else think this is a violation of users' rights? If I've been sent a message, it shouldn't be possible fo…
> Does anyone else think this is a violation of users' rights? Not at all, and it's kind of strange to me that you do. It's just... how the app works. Slack lets you do it, for example, and I've used it occasionally. Heck, reddit (and I think HN?) let you delete comments, even if they were previously, uh, transmitted to a reader's browser. The Gmail example is irrelevant because that's not how email works. If a new c…
I don't think this is a particularly well-advertised feature of Viber.
Neither reddit nor hn are meant to be a means of private comunication. Generally you can't view them offline, and so on. I'm not sure about slack
>that's not how email works
And I think the average user's expectation is that a messaging app will work the same.
By the way, reddit won't let you delete PMs you've sent to another user.
Re: Viber adds end-to-end encryption
#86Re: Viber adds end-to-end encryption
#87Earlier quoted context omitted.
Would open sourcing the Whatsapp client hurt Whatsapp in any significant way? I mean, sure, there could be "Whatsapp clones" (aren't there already?!), but wouldn't Whatsapp still benefit from the phone number user base it has, thus maintaining a certain lock-in on its users from which it already benefits?
Wireshark,xposed + some creativity and you have your own E2E encrypted solution with OOB keys. For any messenger. It is not done, because there is no demand.
Re: Viber adds end-to-end encryption
#88Earlier quoted context omitted.
Has anyone done that and produced a fully open source app to connect to whatsapp?
Lots of people. https://github.com/tgalal/yowsup for example
https://gigaom.com/2015/01/20/whatsapp-cracks-down-on-people...
Do you know if the clients work with the new encryption?
Re: Viber adds end-to-end encryption
#89Earlier quoted context omitted.
Lots of people. https://github.com/tgalal/yowsup for example
Looks like WhatsApp isn't so happy about that ... https://gigaom.com/2015/01/20/whatsapp-cracks-down-on-people... Do you know if the clients work with the new encryption?
Re: Viber adds end-to-end encryption
#90Earlier quoted context omitted.
WhatsApp's "E2E" code is from Signal, which is open source. This zealous belief that all secure cryptography must be open source is something I hear a lot from open source advocates, but not so much from cryptography engineers.
You keep saying this, but how do we know they are actually using the code from Signal without access to source and reproducible builds? Last time you told me it was easy and legal to reverse engineer the code. I then asked you what tools you use to do that and you ignored the question.
For an example of a more sophisticated approach, look at:
Remember, in this case, it's especially easy to reverse, because you have the source code; all you're doing is matching the control flow graph to the original source.