create account

Let's Talk About Secure Messaging Apps by modprobe

View this thread on: hive.blogpeakd.comecency.com
· @modprobe ·
$1,582.62
Let's Talk About Secure Messaging Apps
This is a topic that comes up every now and then, and it's one I have a number of fairly carefully formed opinions on, but I've not taken the time to organize those opinions and write them down, so this post is an effort to do that.

### Some Background
First though, let's lay out the context: why do we care at all? I think most of us are already on the same page here, but for the sake of clarity, let's explore it anyways. There's a million messaging mechanisms out there, and some of them are already quite widespread, with email and SMS (texting) being your basic, as-close-to-universal-as-anything-gets options. Why do we want something else?

Well, we each have to answer that question for ourselves, but at this point I know that emails and texts are being collected and stored by people I don't know or trust. Private conversations between me and people I _do_ know and trust are being intercepted, and could easily be tampered with in transit, by people I _do not_ know or trust. From the start, that knowledge alone rubs me the wrong way. Even if I don't have something I actively want to hide, we're talking about my intimate details not merely being laid bare, but indexed and made searchable, to people I _do not know or trust._ Why would I want that? All else being equal, why would I not prefer to have that data kept private? Of course I prefer it is kept private.

But let's not be coy: we all have secrets and private thoughts and discussions. If you claim not to have secrets, I'll know never to trust you with any of mine. I absolutely do work with some information that I do want kept private, and I want good technical solutions for accomplishing that. Moreover, I know that there are people out there whom I actively distrust, who are actively recording mine and everyone else's conversations online.

So what, then, do I want in a messaging system? Well, thanks to my background in cybersecurity, I understand quite a lot about what is possible and what is desirable, and perhaps I can help some of my readers shortcut directly to the end of this search without going to grad school for cryptography like I did.

### A Bit About Security in General
Everything in security is about adversaries. I want X, someone else wants (not X). Plug in whatever you want for X, and start figuring out strategies: we employ one strategy to get X, someone else employs a counterstrategy. Security is about playing those games out in our heads until we come up with our strategy for getting X, such that there is no effective counterstrategy.

And security is always open-ended: is there actually an effective counterstrategy that we didn't foresee? We don't know. If there is, and our adversary finds it before we do, we obviously want to figure out what that counterstrategy is, and then define our counter-counterstrategy to thwart it.

In practice, these games tend to continue indefinitely with each side either finding a still more effective strategy, or losing interest and giving up. In practice, there is almost always a more effective counterstrategy out there still to be found, it's just a question of motivation. This is the origin of the truism "every system can be hacked."

So from the start, we can state with confidence: there is no such thing as a truly secure X app, but there are probably a whole string of options, each a closer approximation to that standard than the last, having been designed to withstand all known counterstrategies. This general pattern holds true for pretty much every area in security, be it cyber or otherwise. Every lock can be picked, but if you care, you can get one that makes it _really, really hard_ so that most lock-pickers will give up before they succeed.

In information security specifically, which is the most relevant field to messaging systems, there are three main goals that all secure systems try to attain. These are known as the CIA Triad (no relation to the Central Intelligence Agency):
 - Confidentiality -- Only those who are supposed to know the information can see it
 - Integrity -- Only those who are supposed to be able to modify the information can modify it, and they can only modify it in the appropriate ways
 - Availability -- All those who are supposed to have access to the information do have access to it, readily and easily

Within the study of information security, a system's security is formally defined as that system's ability achieve those three goals. If a system fails to meet any of those goals, it is insecure to the extent it falls short of them. The point to understand here is that security is not all-or-nothing. A system might have awesome confidentiality and integrity, but be really hard to use, and within information security, that system is not as secure as it could be. Whether that system is more or less secure than a system that has awesome confidentiality and availability, but makes no promises of integrity, is formally undefined and is entirely a matter of opinion.

There is no official badge of secure-ness that a system can get; it doesn't work that way. Information security gives us a language with which to understand and discuss what parts of a system are or are not secure against what attack strategies. It doesn't give us an objective rule or score as to how secure a system is.

### And Messaging Apps, Specifically?
In messaging apps, then, security means that _only the people I intended_ to be able to read my message can read it (confidentiality); that the message they got was _exactly what I sent_ (integrity); and that _all of them could easily_ read it (availability). So to warm up, let's look at our examples from earlier, email and texting:

- Confidentiality
  - Email makes no attempt to hide the contents of communications from parties other than the addressed recipient
  - Text messages are encrypted between cell phones and the tower, but this encryption has been [thoroughly broken since the 90's](https://en.wikipedia.org/wiki/A5/1), and no attempt is made to hide the contents of messages while in transit between cell towers
- Integrity
  - Email makes no attempt to prevent tampering of the contents of the message in transit, nor does it make any attempt to render such tampering evident after the fact
  - SMS makes no attempt to prevent tampering of the contents of the message in transit, nor does it make any attempt to render such tampering evident after the fact
- Availability
  - Emails are usually delivered and people usually don't have much trouble getting them, but no formal guarantees are made that emails will be delivered in order or at all
  - Texts are usually delivered and people usually don't have much trouble getting them, but no formal guarantees are made that text messages will be delivered in order or at all

So neither of these systems ranks high in confidentiality or integrity, but both do pretty well in availability. SMS is arguably better at confidentiality, but when its feeble attempt at encryption has been breakable to every hacker in his mom's basement since 1999, it's hardly even worth mentioning.

### OK, So What _Do_ We Want?
In general, we want an option that covers all three areas (confidentiality, integrity, availability) reasonably well. So let's briefly discuss the state of the art in each of these areas:

**Confidentiality** is generally provided by encryption. Encryption means scrambling the message so unauthorized people can't read it. There are a lot of different algorithms to encrypt things out there, and most of them are broken and can be decrypted by people who aren't supposed to be able to. So we want to be sure to use an encryption algorithm that isn't broken, such as AES (the Advanced Encryption Standard, which is really just a title given to the algorithm most trusted by the National Institute of Standards and Technology, or NIST, at any given time. This title is currently held by an algorithm named Rijndael).

But encryption is a bit more complicated than that. Consider SMS: as we discussed above, SMS uses broken encryption, and it only uses this encryption between the cell tower and the cell phone. Everywhere else, no encryption is used. So even if SMS used AES, it wouldn't be very confidential because it would only hide the message for part of its journey. For encryption to give us full confidentiality, it must be _End to End,_ which means that the sender encrypts the message so that _no one except the intended recipient_ can decrypt it. Even if the message is _not_ decrypted by a middleman, the mere existence of a middleman who _could_ decrypt the message breaks the End to End property of an encrypted system. In practice, designing a system where no such middlemen can exist is quite tricky, and just because a system is called "End-to-End Encrypted" doesn't mean it really is.

So to sum up confidentiality, we achieve this through encryption, but not only do we need encryption, we need a trustworthy encryption algorithm, and that algorithm has to be deployed in such a way that we don't accidentally empower unauthorized parties to decrypt our messages. This is quite tricky to do in practice, and people make mistakes at it every day.

**Integrity** is sometimes provided by the encryption algorithm, but is sometimes provided by other algorithms. For example, AES alone does not provide any guarantees of integrity -- an AES encrypted message might have been tampered with, even if the tamperer didn't know what the message said. Suppose Eve has recorded several encrypted messages from Alice to Bob, including one that says "Yes" and another that says "No." Without actually knowing which one is which, Eve could simply swap one for the other, and this will destroy the integrity of the conversation without necessarily compromising its confidentiality.

Cryptographic protocols ensure integrity in a number of ways, and the issues at hand are complex enough to warrant several posts, so I won't attempt to cover them in detail here. It is important to note, however, that integrity and confidentiality often go hand in hand: while it's entirely possible to have either one without the other, we usually secure them both together, and when one goes, the other often goes with it.

The state of the art is that computers and software are now getting quite good at establishing a securely encrypted link to _someone_ with guarantees of confidentiality and integrity of the messages between you and that someone, but the software can't guarantee that that _someone_ is who you think it is, so to be sure, the humans must take some additional steps to verify that no third parties sneaked into the middle and started quietly passing messages back and forth between you and your intended recipient, possibly reading and/or changing them in transit. This is known as a Man in the Middle attack, or MITM.

Usually we solve this problem by trusting a central server to keep track of who is who and make sure that everyone is really talking to who they think they're talking to, but that server could just as easily lie and grant itself or someone else MITM access. Blockchain technology provides a decentralized, trustless solution to this problem, allowing software to associate a human-provided username to a particular account without trusting anyone who might lie about that pairing, but this is pretty cutting edge, and I don't know if anyone is doing this securely yet or not.

**Availability** is the red-headed stepchild of information security. While security blowhards will pontificate long and hard about confidentiality and integrity, frequently speaking as though these are the only goals that matter, in practice availability is the metric that actually guides people's choices in software. Consider email and SMS: although they both abysmally fail at confidentiality and integrity, they're highly available, which is to say they're easy and reliable, so everyone uses them. Simultaneously, other systems like GPG/PGP may have strong confidentiality and integrity guarantees, but only cryptography experts know how to use them, and even they rarely actually do because they're so much effort. So while confidentiality and integrity get all the press, availability is what makes the decision, and availability essentially boils down to "Yeah, but can my grandma use it?"

And therein lies the rub: a 'secure' messaging system that no one uses is not actually secure, because it's not available. Usability is part of security. It is a key part. Don't let anyone tell you otherwise. A truly secure system isn't just hard to break technically, it must also be easy to use correctly, and hard to use incorrectly.

In many cases, security boils down to a choice: do we take confidentiality and integrity at the cost of availability, or do we take availability at the cost of confidentiality and integrity? My goal is to find an acceptable balance of both.

### Down to Brass Tacks: My Recommendations
In case it isn't yet clear from all of my discussion on security so far, determining whether a particular messaging app is secure or not is **_really freaking hard._** To emphasize, when someone out there releases some app and says "This is a secure messaging app," that claim means absolutely nothing until a lot of really smart people who understand security at least as well as I do spend *a lot* of time and effort reviewing the underlying protocols and application code to verify that claim. I consider myself qualified to do such a verification, but I rarely do because it's *a bloody ton of work* to do well. For this reason, it's generally only security professionals (expensive) and academic institutions that go to the trouble.

Of the secure messaging apps I have made any effort to review, my recommendations today boil down to two different apps: Wire and Signal. To be clear, I have not undertaken a formal review of these apps myself (someone would have to pay me to do that, and I would charge a lot); however, I have read their own security claims and have examined the formal reviews of others.

**Wire** (https://wire.com) is my favorite, since it ranks pretty well in all categories. It's easy to use, it has pretty rigorous security standards, it's a partially open source system (the client apps and parts of the server code are open source), it has undergone formal third party security review (with acceptable results), and there don't appear to be any known serious flaws or vulnerabilities.

If Wire is my favorite, **Signal** (https://whispersystems.org) is my second favorite. Though far less feature-rich than Wire, it is based on the well-known, thoroughly reviewed, and widely implemented Double Ratchet protocol designed by Open Whisper Systems. This is probably the best protocol out there for confidentiality and integrity, since it's so well-known and battle-tested, being the protocol behind Signal, What'sApp, Google Allo, and Facebook Messenger, to name a few just off the top of my head.

The reason I recommend signal over these other apps is that, although these other apps are more user friendly and widely used (availability), they are also privacy risks as they are all closed source apps owned by companies known for hoovering up and storing forever any and all private data they can find. Thus we can safely assume that, unless additional evidence shows otherwise, when using these apps we have no confidentiality from their makers. Signal, in contrast, is open source, and the company behind it, Open Whisper Systems, publicly commits to protecting their users' privacy by retaining as little information as possible about the users' communications, even where doing so prevents them from implementing user-friendly features. This improves confidentiality at the cost of availability.

So Signal may offer a bit more confidentiality and integrity, but Wire is a lot easier and more fun to use (roughly: higher availability). I also note that Signal requires a phone number, which they use to improve integrity at the cost of privacy (a facet of confidentiality). Also, for maximum security, both of these apps support an additional manual key verification step to ensure that no Man in the Middle has crept into the connection.

**Honorable Mention** goes to **Keybase** (https://keybase.io) which was recently pointed out to me. Based on the widely respected, but rarely used, GPG/PGP protocol, Keybase makes GPG easy enough that people can now use it painlessly. Furthermore, Keybase leverages the Bitcoin blockchain to help provide confidentiality and integrity guarantees without the manual verification steps that most other apps benefit from. Of course, manual verification can also be performed for optimal security. From what I see so far, Keybase might be more secure than Wire or Signal; however, I haven't spent enough time looking into it to form a trustworthy opinion.

### And Now for the Snake in the Grass
**Extreme Dishonorable Mention** goes to Telegram (https://telegram.org), which I want to highlight specifically as an app which, in my opinion, is **not secure at all.**

Telegram is marketed, quite emphatically ("Telegram is more secure than mass market messengers like WhatsApp" is a direct quote from their FAQ page), as a secure messaging app; however, since shortly after its publication, Moxie Marlinspike (a well-known and respected hacker, co-author of the Double Ratchet protocol that powers Signal and others) pointed out [irregularities](https://news.ycombinator.com/item?id=6915741) in the protocol which render its security claims suspicious.

One would expect a reasonable team acting in good faith to re-evaluate their protocol's security, and perhaps enlist a respected security firm to review their designs, after such a cold reception by the cryptography community. Instead, Telegram doubled down and launched an open challenge to break Telegram's security. This would seem to indicate their confidence in the security of their protocol, and put the ball in the court of those claiming it is flawed. Instead, Marlinspike pointed out that this challenge was designed in such a way that it [can't be won](https://moxie.org/blog/telegram-crypto-challenge/), no matter how bad the crypto is. He even provided an example of a trivially breakable crypto protocol, and pointed out that even that protocol can't be broken according to the rules of the challenge.

This conversation is fairly old at this point, but Telegram continues to persist and market itself as a secure messaging app. There are plenty of unsubstantiated claims in the wild that Telegram is secure, but I've never seen one with any substantiation based on the underlying cryptography. There are, however, [plenty](https://gizmodo.com/why-you-should-stop-using-telegram-right-now-1782557415) of [articles](https://medium.com/@thegrugq/operational-telegram-cbbaadb9013a) on [how it's not secure](https://security.stackexchange.com/questions/49782/is-telegram-secure), from respected sources that provide substantial evidence for their claims. And there are now at least two papers formally presenting actual attacks on Telegram's protocol: [1](https://www.alexrad.me/discourse/a-264-attack-on-telegram-and-why-a-super-villain-doesnt-need-it-to-read-your-telegram-chats.html), [2](https://eprint.iacr.org/2015/1177.pdf) (I have not reviewed these papers in detail; I see no reason to spend the time on it).

So why so much hate for Telegram? Because they *still* actively market their app as secure, and at this point, I can only assume that claim is an **intentional lie.** I try to give people the benefit of the doubt, and apply Hanlon's Razor ("Never attribute to malice that which is adequately explained by stupidity"), but at some point I have to ask myself: can I really believe they're _that_ stupid? Or, are they trying to deceive people? I honestly cannot imagine that someone can be _that_ stupid; I think anyone acting in good faith would have questioned themselves by this point, and in this case, once the question is honestly asked, the answer is honestly obvious. So while I have no positive proof that they are intentionally lying, all signs seem to point that way. Please tell me, dear reader, am I being unreasonable?

### Conclusion
So to wrap things up, let me emphasize that this is a complex issue, and it's one that I do not take lightly. I have a great deal of experience that I believe qualifies me to opine on what is and is not a secure messaging app, but I do so with hesitation because even for me, it's a lot of work to form a quality opinion. It is for that reason that I don't have an opinion on every messaging app out there. I have found a couple of apps that I do trust for my day-to-day messaging, and I'm always on the lookout for more, but at the end of the day, this is a game of one-upping that we'll be playing forever, because that's how security works.

I recommend Wire and Signal, and possibly Keybase. I strongly warn all to actively distrust Telegram. These opinions are based on thorough and thoughtful, if not professional grade, reviews of the software and security in question, based on a background of formal training in cryptography and cryptographic software protocol design, reverse engineering, analysis, and exploitation at Rensselaer Polytechnic Institute, thanks to which I am able to understand and participate in technical security reviews.

My opinions are my own, and they are only intended to be good enough to satisfy me, which is a highly subjective standard. They are provided in the hopes that they are useful, but I make no promises that they are valid. If they aren't, please let me know. :)

Thanks for reading

https://i.imgur.com/23Dh8S1.jpg

> With a background in software development and a passion for security, Nathan has identified blockchain technology as his niche. He is dedicated to creating applications which empower individuals to shape a better world for themselves and others.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 494 others
👎  ,
properties (23)
authormodprobe
permlinklet-s-talk-about-secure-messaging-apps
categorysecurity
json_metadata{"tags":["security","cryptography","messaging","review","essay"],"image":["https://i.imgur.com/23Dh8S1.jpg"],"links":["https://en.wikipedia.org/wiki/A5/1","https://wire.com","https://whispersystems.org","https://keybase.io","https://telegram.org","https://news.ycombinator.com/item?id=6915741","https://moxie.org/blog/telegram-crypto-challenge/","https://gizmodo.com/why-you-should-stop-using-telegram-right-now-1782557415","https://medium.com/@thegrugq/operational-telegram-cbbaadb9013a","https://security.stackexchange.com/questions/49782/is-telegram-secure","https://www.alexrad.me/discourse/a-264-attack-on-telegram-and-why-a-super-villain-doesnt-need-it-to-read-your-telegram-chats.html","https://eprint.iacr.org/2015/1177.pdf"],"app":"steemit/0.1","format":"markdown"}
created2017-06-05 01:30:39
last_update2017-06-05 01:30:39
depth0
children101
last_payout2017-06-12 01:30:39
cashout_time1969-12-31 23:59:59
total_payout_value1,373.484 HBD
curator_payout_value209.139 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21,973
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,188,274
net_rshares40,419,779,169,515
author_curate_reward""
vote details (560)
@abn · (edited)
$2.85
Thank you for the write-up, modprobe. Cryptocat is secure as you are going to get for a free messenger.
👍  
properties (23)
authorabn
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170608t231812884z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-08 23:18:15
last_update2017-06-08 23:18:51
depth1
children0
last_payout2017-06-15 23:18:15
cashout_time1969-12-31 23:59:59
total_payout_value2.642 HBD
curator_payout_value0.208 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation6,507,300,897,068
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,435,363
net_rshares729,399,402,212
author_curate_reward""
vote details (1)
@adam.angel ·
$4.29
Wow, an extremely interesting article. I have been wondering about whatsapp security lately and considering a move to another messaging app. Not that I have anything to hide but it's not nice to know that your private messages are being read by a stranger.
👍  ,
properties (23)
authoradam.angel
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t044840726z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 04:48:39
last_update2017-06-05 04:48:39
depth1
children1
last_payout2017-06-12 04:48:39
cashout_time1969-12-31 23:59:59
total_payout_value3.220 HBD
curator_payout_value1.071 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length256
author_reputation76,731,190,989
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,194,835
net_rshares965,311,320,909
author_curate_reward""
vote details (2)
@modprobe ·
What'sApp is based on Signal's protocol, so it's probably secure against random internet hackers. But it's owned by Facebook, so assume that it's telling facebook everything you say and who you say it to. Signal itself can be trusted a bit more (to the extent that you trust OWS more than facebook. I personally trust OWS a lot more than facebook).
properties (22)
authormodprobe
permlinkre-adamangel-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t141648337z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 14:16:51
last_update2017-06-05 14:16:51
depth2
children0
last_payout2017-06-12 14:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length348
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,213,533
net_rshares0
@alicemarie ·
$4.92
Very interesting post.  I have to admit, a lot of it is over my head though.  I am very concerned about security online.  I just don't like my privacy being violated by anyone or any country.  It's just none of their business.  No, I don't do anything illegal but my life should be my own.  After reading this I realize I really need to take the time to learn more about it.  Thanks for your post!!
👍  , , ,
properties (23)
authoralicemarie
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t100720990z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 10:07:21
last_update2017-06-05 10:07:21
depth1
children1
last_payout2017-06-12 10:07:21
cashout_time1969-12-31 23:59:59
total_payout_value3.694 HBD
curator_payout_value1.224 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length398
author_reputation378,490,910,975
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,204,174
net_rshares1,075,749,100,628
author_curate_reward""
vote details (4)
@modprobe ·
I think it's in all of our best interests to spend a little time thinking about this. Whatever app you go with, though, make sure and do some due diligence and look for third party security reviews and search around online to see if anyone has broken their security. It only takes a couple seconds to search 'is X secure' and survey the first page of results! :-)
👍  
properties (23)
authormodprobe
permlinkre-alicemarie-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t132156306z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 13:21:57
last_update2017-06-05 13:21:57
depth2
children0
last_payout2017-06-12 13:21:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length363
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,211,001
net_rshares680,786,909
author_curate_reward""
vote details (1)
@androsform ·
very thoughtful post Nathan. I'm curious as to your thoughts on mobile secure messaging? i currently use Hushed and from what I've read it seems like the best balane of easy to use and secure...

With that said...I'm also curious as how we can verify the claims some of these services make? Be it whisper or hushed...any of them really. How do we track the progress and security of each? Ensure that they're open source and regularly test them? Does that give us definitive evidence that our messages are indeed end to end encrypted without any sort of 3rd party intercept that might be able to crack the encryption?

Sorry for all the questions, your post just got me to thinking. Thanks again for sharing.
properties (22)
authorandrosform
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170701t055342857z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-07-01 05:53:42
last_update2017-07-01 05:53:42
depth1
children0
last_payout2017-07-08 05:53:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length707
author_reputation6,247,941,147,391
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,853,325
net_rshares0
@arcange ·
$4.16
You have been mentionned in my hit-parade of 2017.06.05
Congratulations @modprobe!
Your post was mentioned in my [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170605) in the following category:

* Pending payout - Ranked 6 with $ 691,45
👍  , ,
properties (23)
authorarcange
permlinkre-let-s-talk-about-secure-messaging-apps-20170605t171426000z
categorysecurity
json_metadata""
created2017-06-06 15:14:27
last_update2017-06-06 15:14:27
depth1
children0
last_payout2017-06-13 15:14:27
cashout_time1969-12-31 23:59:59
total_payout_value3.122 HBD
curator_payout_value1.037 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length207
author_reputation1,146,633,668,945,473
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,277,184
net_rshares968,679,671,184
author_curate_reward""
vote details (3)
@arhag ·
$18.86
There are only few things I dislike about Signal (even though it is still better than most other end-to-end encrypted messaging apps out there). 

One is their annoying insistence of using phone numbers, which as you mentioned hurts privacy (especially with the app sending contact information on the phone to their servers to help with discoverability). It is nice that apparently as of December Wire allows usernames. However, I read that they are apparently using an older version of Open Whisper Systems' Double Ratchet protocol, which, short of actually studying in detail what does differences are, makes me a little bit nervous to trust compared to Signal's more battle-tested protocol.

Another, which I am not sure if any of these secure open source end-to-end encrypted messaging apps have currently resolved, is the need for a great user experience when using multiple devices while maintaining synchronization between them. If I am not mistaken, I think the Double Ratchet protocol makes doing this more complicated because there needs to be communication between the various devices to keep everything in sync. It should be possible to, for example, jump between laptop and mobile app to respond to messages in a conversation thread while maintaining end-to-end encryption and having the full identical copy of the conversation on both devices.

I would love to see a messaging application use the Signal Double Ratchet protocol but leveraging human-readable account names on a blockchain to establish the secure end-to-end encryption between the users rather than phone numbers or even usernames in a namespace managed by a central authority. 

By the way, there are two properties relevant for messaging applications that you didn't bring up in your post: [forward secrecy](https://en.wikipedia.org/wiki/Forward_secrecy) (so that future compromise of private keys does not need to leak past history, unless explicitly backed up) and plausible deniability (so that even the person you were communicating with does not have cryptographic proof they can show to others that you said any particular thing). The Signal protocol (and I guess Wire's protocol too as a result) have both properties. The trade-off with having forward secrecy is that if users want to have their conversation history backed up, it requires a more complicated process to do so. I am not aware if Keybase has plausible deniability. They have made the design decision to avoid forward secrecy for the sake of easier backup of conversation history, however they are apparently planning to add a special "exploding messages" feature which will have forward secrecy, which seems like an appropriate compromise.
👍  , , , , , , ,
properties (23)
authorarhag
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t032105206z
categorysecurity
json_metadata{"tags":["security"],"links":["https://en.wikipedia.org/wiki/Forward_secrecy"],"app":"steemit/0.1"}
created2017-06-05 03:21:06
last_update2017-06-05 03:21:06
depth1
children1
last_payout2017-06-12 03:21:06
cashout_time1969-12-31 23:59:59
total_payout_value14.156 HBD
curator_payout_value4.705 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,692
author_reputation52,490,827,205,383
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,192,102
net_rshares3,013,073,909,951
author_curate_reward""
vote details (8)
@modprobe ·
$0.30
Great points all around, @arhag, thanks! Yes, Wire's protocol is based in part on the Axolotl Ratchet, which was later upgraded to be the Double Ratchet, which is technically only part of the Signal protocol (as Double Ratchet only manages the cryptography, and not the key exchanges, etc etc). According to Wire, they went off-book from the official Axolotl protocol *because* they wanted to not require a phone number, and Axolotl (and Signal still today) use the phone number to provide some of their security guarantees, so removing it isn't trivial and takes some innovating.

And yes, I think I was clear that I do not regard Wire's protocol as being _as secure,_ from a confidentiality and integrity standpoint, as Signal; however, Wire is much more available, what with it's easy and friendly usernames (rather than SUUUUUUPER finicky phone numbers in Signal, et. al.) and it's nice UI/UX. And all of that comes with the addendum that, AFAIK, Wire's protocol has not been _seriously_ attacked, even after having been formally reviewed by a university's security department (they found a potential MITM vuln that the servers could exploit on video calls, I think, but MITMing video calls is tricky in its own right, and Wire said they knew about it and were planning to fix it; not sure if they have yet or not).

Yeah, Wire has an _acceptable_ UX for adding more devices. I'm not sure about Signal's. On Wire, you can add a new device to your account at any time. If you or your contacts have previously verified all the keys in any conversation, Wire yells loudly and won't let you send messages in those conversations until you've confirmed that you know there's an unverified key in the conversation (even if it's supposedly your own key). New devices cannot decrypt old messages, only new ones going forward, so a new device gets nothing historical, and if people have been verifying keys, probably nothing new either. The place Wire really fails is when I add a new device, I ought to be able to verify it on one of my old devices, and then have the old device send a signed assertion to all my other devices/my contacts saying "Hey, old key you've already verified here, just letting you know that according to me, the new device is legit too." Now, the contacts can decide for themselves whether they accept that assertion, but in general there's no reason to assume that an old key is compromised just because a new device showed up on the account.

As to blockchain integration, yes yes a thousand times yes, I'd like to see this done really well too. Keybase might be it, but I haven't taken the time yet to look into it.

As to forward secrecy and deniability... Yeah, you'll note I actually never even talked about _keys_ in my article. That alone warranted enough prose that I got scared off. There are so many posts that could be written and not even scratch the surface... Haha. And one can't properly understand forward secrecy and deniability without understanding keys (symmetric and asymmetric) at the very least.
👍  
properties (23)
authormodprobe
permlinkre-arhag-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t141253237z
categorysecurity
json_metadata{"tags":["security"],"users":["arhag"],"app":"steemit/0.1"}
created2017-06-05 14:12:54
last_update2017-06-05 14:12:54
depth2
children0
last_payout2017-06-12 14:12:54
cashout_time1969-12-31 23:59:59
total_payout_value0.224 HBD
curator_payout_value0.073 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,040
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,213,362
net_rshares82,153,690,210
author_curate_reward""
vote details (1)
@benjojo ·
$4.65
There are many valuable lessons here and not all of them relate to security.  I learned a lot, thankyou.  This article exemplifies what Steemit can do to teach people.  A knowledgeable person talking intelligently and succinctly about a subject with great relevance in an area of massive misinformation and providing context.  You also teach that there are no shortcuts to truly knowing something for yourself and we are all starting to find out how hard that is now we are finding out that so much of what we used to trust, can't be.
👍  ,
properties (23)
authorbenjojo
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t060324972z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 06:03:24
last_update2017-06-05 06:03:24
depth1
children0
last_payout2017-06-12 06:03:24
cashout_time1969-12-31 23:59:59
total_payout_value3.491 HBD
curator_payout_value1.159 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length534
author_reputation120,749,050,383,122
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,197,162
net_rshares1,031,363,773,678
author_curate_reward""
vote details (2)
@cardsanarchy ·
$4.29
What do you think of Minds.com?
👍  ,
properties (23)
authorcardsanarchy
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t042836999z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 04:28:36
last_update2017-06-06 04:28:36
depth1
children1
last_payout2017-06-13 04:28:36
cashout_time1969-12-31 23:59:59
total_payout_value3.218 HBD
curator_payout_value1.070 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation1,968,738,794,251
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,251,616
net_rshares986,762,683,596
author_curate_reward""
vote details (2)
@modprobe ·
I haven't tried it. Does it have a messaging service built in?
properties (22)
authormodprobe
permlinkre-cardsanarchy-re-modprobe-let-s-talk-about-secure-messaging-apps-20170606t122206032z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 12:22:09
last_update2017-06-06 12:22:09
depth2
children0
last_payout2017-06-13 12:22:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,267,746
net_rshares0
@carloserp2000 ·
$4.11
Very interesting indeed your publication thank you for sharing it with the whole community friend @modprobe
👍  ,
properties (23)
authorcarloserp2000
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170607t023012761z
categorysecurity
json_metadata{"tags":["security"],"users":["modprobe"],"app":"steemit/0.1"}
created2017-06-07 02:30:12
last_update2017-06-07 02:30:12
depth1
children0
last_payout2017-06-14 02:30:12
cashout_time1969-12-31 23:59:59
total_payout_value3.108 HBD
curator_payout_value1.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation2,142,106,777,769
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,310,623
net_rshares965,311,320,909
author_curate_reward""
vote details (2)
@classicstar ·
$4.28
Thank you for sharing your knowledge.
👍  ,
properties (23)
authorclassicstar
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t010115829z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 01:01:18
last_update2017-06-06 01:01:18
depth1
children0
last_payout2017-06-13 01:01:18
cashout_time1969-12-31 23:59:59
total_payout_value3.214 HBD
curator_payout_value1.069 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation17,226,073,552
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,243,407
net_rshares986,762,683,596
author_curate_reward""
vote details (2)
@clikhere ·
$4.37
Thanks for taking the time to organize your thoughts and opinions on this subject - very helpful information and easy to read.
👍  , , ,
properties (23)
authorclikhere
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t062332268z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 06:23:33
last_update2017-06-06 06:23:33
depth1
children0
last_payout2017-06-13 06:23:33
cashout_time1969-12-31 23:59:59
total_payout_value3.280 HBD
curator_payout_value1.089 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation15,754,236,146
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,255,740
net_rshares1,008,271,113,399
author_curate_reward""
vote details (4)
@cyberhippie ·
$4.14
One thing worth mentioning is the recent exposure of CIA malware which allows an attacker to screengrab while these apps are being used, circumventing any encryption altogether. Be ever wary.
👍  
properties (23)
authorcyberhippie
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t171353014z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 17:13:54
last_update2017-06-06 17:13:54
depth1
children1
last_payout2017-06-13 17:13:54
cashout_time1969-12-31 23:59:59
total_payout_value3.106 HBD
curator_payout_value1.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation15,610,900,090
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,283,380
net_rshares965,311,320,909
author_curate_reward""
vote details (1)
@modprobe ·
Yeah, if you have any reason to believe you have any kind of malware on your device, I would not recommend trusting it with anything until the OS is reinstalled fresh, and all data ported back over only after several different malware scans. I never trust malware to be only a little malicious. :-P
properties (22)
authormodprobe
permlinkre-cyberhippie-re-modprobe-let-s-talk-about-secure-messaging-apps-20170607t025852451z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-07 02:58:54
last_update2017-06-07 02:58:54
depth2
children0
last_payout2017-06-14 02:58:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length298
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,311,647
net_rshares0
@daowisp ·
$4.63
What're your thoughts on Secure Scuttlebot?  
<a href="https://scuttlebot.io/more/protocols/secure-scuttlebutt.html"> SSB </a>
👍  , ,
properties (23)
authordaowisp
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t163904935z
categorysecurity
json_metadata{"tags":["security"],"links":["https://scuttlebot.io/more/protocols/secure-scuttlebutt.html"],"app":"steemit/0.1"}
created2017-06-05 16:39:03
last_update2017-06-05 16:39:03
depth1
children3
last_payout2017-06-12 16:39:03
cashout_time1969-12-31 23:59:59
total_payout_value3.710 HBD
curator_payout_value0.917 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation2,750,638,235,966
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,220,267
net_rshares1,031,363,773,678
author_curate_reward""
vote details (3)
@modprobe ·
$0.10
Ooh... This is interesting. And so wonderfully clearly explained. The security model looks quite straightforward, and I like their laissez-faire approach to the key exchange problem. Once a feed has some history, it's trivial anyways since time is factored in... You'd have to check for that, though. Manual kex is easy enough, though.

Might be possible to do an eclipse attack on someone... Not sure.
👍  
properties (23)
authormodprobe
permlinkre-daowisp-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t170248124z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 17:02:48
last_update2017-06-05 17:02:48
depth2
children2
last_payout2017-06-12 17:02:48
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length402
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,221,501
net_rshares28,488,800,568
author_curate_reward""
vote details (1)
@daowisp ·
$4.57
If you dig around on it a bit, there's a developer in MXC working on it.  Not too far away :)
👍  
properties (23)
authordaowisp
permlinkre-modprobe-re-daowisp-re-modprobe-let-s-talk-about-secure-messaging-apps-20170607t050828119z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-07 05:08:27
last_update2017-06-07 05:08:27
depth3
children1
last_payout2017-06-14 05:08:27
cashout_time1969-12-31 23:59:59
total_payout_value4.421 HBD
curator_payout_value0.148 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation2,750,638,235,966
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,316,682
net_rshares1,051,116,771,656
author_curate_reward""
vote details (1)
@denni ·
Quality article! I just downloaded Wire and Signal!
properties (22)
authordenni
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170830t205537884z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-30 20:55:36
last_update2017-08-30 20:55:36
depth1
children0
last_payout2017-09-06 20:55:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation80,397,505,606
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,380,010
net_rshares0
@ernstjan ·
$4.23
Thnx @modprobe , this is one of the most helpful articles I've been reading lately. Will u be making more of these? would be great.

Cheers,

ernstjan
👍  , ,
properties (23)
authorernstjan
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170612t114007484z
categorysecurity
json_metadata{"tags":["security"],"users":["modprobe"],"app":"steemit/0.1"}
created2017-06-12 11:40:06
last_update2017-06-12 11:40:06
depth1
children7
last_payout2017-06-19 11:40:06
cashout_time1969-12-31 23:59:59
total_payout_value3.176 HBD
curator_payout_value1.054 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation1,167,229,946,052
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,652,426
net_rshares1,085,685,064,418
author_curate_reward""
vote details (3)
@modprobe ·
$0.03
I certainly can. Are there any topics of particular interest to you?
👍  
properties (23)
authormodprobe
permlinkre-ernstjan-re-modprobe-let-s-talk-about-secure-messaging-apps-20170612t135106737z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-12 13:51:09
last_update2017-06-12 13:51:09
depth2
children6
last_payout2017-06-19 13:51:09
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,658,737
net_rshares11,664,442,171
author_curate_reward""
vote details (1)
@ernstjan ·
$4.02
Great, like all the topics where average people have trouble understanding like every single bit of the aspect;). Security mainly. I think a lot of people can learn a lot from posts that are easy to understand like this one.  

cheers.
👍  ,
properties (23)
authorernstjan
permlinkre-modprobe-re-ernstjan-re-modprobe-let-s-talk-about-secure-messaging-apps-20170612t144003770z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-12 14:40:03
last_update2017-06-12 14:40:03
depth3
children5
last_payout2017-06-19 14:40:03
cashout_time1969-12-31 23:59:59
total_payout_value3.018 HBD
curator_payout_value1.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length235
author_reputation1,167,229,946,052
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,661,251
net_rshares1,040,979,030,563
author_curate_reward""
vote details (2)
@fminerten1 ·
$8.95
Thank you. I will reconsider my opinion on Telegram.
👍  , , ,
properties (23)
authorfminerten1
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t071327547z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 07:13:27
last_update2017-06-06 07:13:27
depth1
children0
last_payout2017-06-13 07:13:27
cashout_time1969-12-31 23:59:59
total_payout_value6.719 HBD
curator_payout_value2.234 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation36,412,535,193,751
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,257,360
net_rshares1,786,564,102,727
author_curate_reward""
vote details (4)
@foxkoit ·
$4.16
Very interesting post :) I go and read more :)
👍  ,
properties (23)
authorfoxkoit
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170607t113121121z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-07 11:31:24
last_update2017-06-07 11:31:24
depth1
children0
last_payout2017-06-14 11:31:24
cashout_time1969-12-31 23:59:59
total_payout_value3.118 HBD
curator_payout_value1.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation536,568,737,909,603
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,330,766
net_rshares965,311,320,909
author_curate_reward""
vote details (2)
@fuckmylife ·
$4.21
There seems to be many practical uses for this technology .
👍  , ,
properties (23)
authorfuckmylife
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t095417074z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 09:54:09
last_update2017-06-05 09:54:09
depth1
children0
last_payout2017-06-12 09:54:09
cashout_time1969-12-31 23:59:59
total_payout_value3.162 HBD
curator_payout_value1.049 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation1,365,524,722,971
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,203,808
net_rshares945,489,001,922
author_curate_reward""
vote details (3)
@ginasarasini ·
$22.21
That was so informative, thank you for all your hard work, I have followed you because it was so good. 🕉
👍  
properties (23)
authorginasarasini
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170617t214225575z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-17 21:42:24
last_update2017-06-17 21:42:24
depth1
children0
last_payout2017-06-24 21:42:24
cashout_time1969-12-31 23:59:59
total_payout_value16.660 HBD
curator_payout_value5.552 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation120,675,071,839
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,126,615
net_rshares1,076,125,001,919
author_curate_reward""
vote details (1)
@gmuxx ·
$4.81
Wow, very interesting read.

Where do you stand with gaining access to the accounts of known terrorists if it means that a future attack could be thwarted? I'm not saying secure messaging for the masses is bad - quite the opposite - I believe our privacy is being eroded in the name of fighting terrorism
👍  ,
properties (23)
authorgmuxx
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t020740329z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 02:07:39
last_update2017-06-05 02:07:39
depth1
children5
last_payout2017-06-12 02:07:39
cashout_time1969-12-31 23:59:59
total_payout_value3.782 HBD
curator_payout_value1.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length304
author_reputation49,417,037,219,765
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,189,574
net_rshares1,072,528,149,522
author_curate_reward""
vote details (2)
@fuckmylife ·
Why not just block the areas who are known to harbor terrorists right to access the internet. Why must everyone pay for a few bad apples mistakes.
properties (22)
authorfuckmylife
permlinkre-gmuxx-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t095807421z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 09:58:00
last_update2017-06-05 09:58:00
depth2
children1
last_payout2017-06-12 09:58:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length146
author_reputation1,365,524,722,971
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,203,909
net_rshares0
@lily-da-vine ·
$0.16
Starting with the USA because it has the highest number of terrorist?
👍  
properties (23)
authorlily-da-vine
permlinkre-fuckmylife-re-gmuxx-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t132411513z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 13:24:12
last_update2017-06-05 13:24:12
depth3
children0
last_payout2017-06-12 13:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.116 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation236,739,283,099,683
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,211,112
net_rshares43,187,668,922
author_curate_reward""
vote details (1)
@modprobe · (edited)
$0.05
There are some who would argue that pretty much all the organizations committing acts of terrorism today are exactly the same organizations who are claiming that no one except them ought to have access to strong cryptography or else terrorists will use it.
👍  , , ,
properties (23)
authormodprobe
permlinkre-gmuxx-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t023241463z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 02:32:42
last_update2017-06-05 02:42:18
depth2
children0
last_payout2017-06-12 02:32:42
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length256
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,190,466
net_rshares14,669,672,198
author_curate_reward""
vote details (4)
@r0achtheunsavory · (edited)
You can't be serious.  Banks already co-opted the state, and in the words of Max Keiser:  "Lloyd Blankfein is a financial terrorist".  It doesn't matter if the criminal organization is debilitating your existence through nail bombs or financial fraud and usury, the state (current one at least) already is a terrorist organization.
👍  
properties (23)
authorr0achtheunsavory
permlinkre-gmuxx-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t031403678z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 03:14:12
last_update2017-06-05 03:16:12
depth2
children0
last_payout2017-06-12 03:14:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length331
author_reputation9,882,634,828,030
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,191,873
net_rshares1,861,100,200
author_curate_reward""
vote details (1)
@troglodactyl ·
$4.73
Leaving aside futile preemptive attempts to deny terrorists access to secure communications, I have no more problem with cracking a terrorist's vulnerable computer system than I have with cracking a terrorist's vulnerable skull.  Provided of course that by "terrorist" we mean a person who is actively initiating violence against others in order to manipulate the innocent through fear.  Such attacks invite defensive force against the attacker through whichever vectors are available to most efficiently minimize harm to the innocent.
👍  
properties (23)
authortroglodactyl
permlinkre-gmuxx-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t025627496z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 02:56:27
last_update2017-06-05 02:56:27
depth2
children0
last_payout2017-06-12 02:56:27
cashout_time1969-12-31 23:59:59
total_payout_value4.643 HBD
curator_payout_value0.090 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length535
author_reputation5,089,817,438,884
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,191,270
net_rshares1,051,116,771,656
author_curate_reward""
vote details (1)
@hainanren ·
bitmessage is an Secure Messaging Apps,What other security apps do you know?
👍  
properties (23)
authorhainanren
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t021544272z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 02:15:45
last_update2017-06-05 02:15:45
depth1
children0
last_payout2017-06-12 02:15:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation15,493,211,264
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,189,845
net_rshares0
author_curate_reward""
vote details (1)
@hueso ·
I'm sorry to disagree but I would neither recommend Wire nor Signal. Those are centralized services and not free software. Signal seems so fishy as it maps to phone numbers so they can easily tell whom you a are communicating with and when. So you end up in the same level of privacy as WhatsApp (or worse, as the service targets only privacy-aware users) , feels like a honeypot. 
You cannot expect any privacy/security with closed software.
Messengers I do recommend are XMPP (Conversations for Android, Gajim on desktop), Matrix/Riot, and the fully decentralized ones: Ring, Tox and BitMessage
properties (22)
authorhueso
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170614t043751987z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-14 04:37:54
last_update2017-06-14 04:37:54
depth1
children0
last_payout2017-06-21 04:37:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length596
author_reputation262,569,842,511
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,795,134
net_rshares0
@idealist ·
$6.11
Really good article. Thanks!
I would like to add that Signal currently works on only Androids and iphones, but Keybase works on both computers and phones, which is a significant advantage in my opinion. Of course both are constantly improving, so things will change.

Could you do an article on Keybase? I think there is more to it, as the core is not messaging, but PGP - and that made simple. Messaging is just one application that can benefit from PGP, but there is more too, isn't there?
👍  , ,
properties (23)
authoridealist
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t062014184z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 06:20:15
last_update2017-06-05 06:20:15
depth1
children1
last_payout2017-06-12 06:20:15
cashout_time1969-12-31 23:59:59
total_payout_value4.904 HBD
curator_payout_value1.202 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length491
author_reputation3,482,305,647,602
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,197,726
net_rshares1,287,982,468,854
author_curate_reward""
vote details (3)
@synapse ·
$0.77
There is Signal Desktop for laptops/etc, however it still requires a phone, much like Whatsapp on desktop.
👍  
properties (23)
authorsynapse
permlinkre-idealist-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t134630563z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 13:46:30
last_update2017-06-05 13:46:30
depth2
children0
last_payout2017-06-12 13:46:30
cashout_time1969-12-31 23:59:59
total_payout_value0.582 HBD
curator_payout_value0.192 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation1,474,107,328,356
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,212,141
net_rshares206,797,761,130
author_curate_reward""
vote details (1)
@idealist ·
$6.08
For me, the main big question about Telegram is the business model. I just can't believe the development is funded by pure benevolence/philantrophy. The only reason they haven't made it a federated, free network is that they want to make money of it, or are already making money from it.
👍  , ,
properties (23)
authoridealist
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t062451727z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 06:24:51
last_update2017-06-05 06:24:51
depth1
children0
last_payout2017-06-12 06:24:51
cashout_time1969-12-31 23:59:59
total_payout_value4.874 HBD
curator_payout_value1.207 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation3,482,305,647,602
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,197,856
net_rshares1,283,674,182,163
author_curate_reward""
vote details (3)
@jenkinrocket ·
$4.46
This was a beast of a post! Really enjoyed it, and learned a few things for sure. I agree about your stance towards security. Ultimately, whether you have something to hide is beside the point (although, as you also pointed out, there are of course things we want hidden). 

I want to really thank you for pointing the way to the applications you mentioned. That'll go a long way towards helping me build a more informationally secure life.
👍  ,
properties (23)
authorjenkinrocket
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t175832095z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 18:00:54
last_update2017-06-05 18:00:54
depth1
children0
last_payout2017-06-12 18:00:54
cashout_time1969-12-31 23:59:59
total_payout_value4.120 HBD
curator_payout_value0.338 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length440
author_reputation26,749,165,203,694
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,224,572
net_rshares1,008,214,046,283
author_curate_reward""
vote details (2)
@joey-cryptoboy ·
$4.20
Great article keep it up!
👍  , ,
properties (23)
authorjoey-cryptoboy
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t080004887z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 08:00:03
last_update2017-06-05 08:00:03
depth1
children0
last_payout2017-06-12 08:00:03
cashout_time1969-12-31 23:59:59
total_payout_value3.152 HBD
curator_payout_value1.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation2,521,246,416,524
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,200,586
net_rshares945,523,662,427
author_curate_reward""
vote details (3)
@jondahl ·
$4.21
I like this post...
👍  , , ,
properties (23)
authorjondahl
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t100646548z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 10:06:57
last_update2017-06-05 10:06:57
depth1
children0
last_payout2017-06-12 10:06:57
cashout_time1969-12-31 23:59:59
total_payout_value3.164 HBD
curator_payout_value1.049 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation6,555,195,237,163
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,204,169
net_rshares945,829,360,703
author_curate_reward""
vote details (4)
@jtstreetman ·
$4.17
Excellent Post !
👍  , ,
properties (23)
authorjtstreetman
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t025130840z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 02:51:36
last_update2017-06-05 02:51:36
depth1
children0
last_payout2017-06-12 02:51:36
cashout_time1969-12-31 23:59:59
total_payout_value3.858 HBD
curator_payout_value0.309 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation1,118,889,631,950
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,191,107
net_rshares945,523,662,427
author_curate_reward""
vote details (3)
@kbooms ·
$4.40
Thank you for the review. Secure messaging applications I fear are becoming more and more important this day and age.
👍  ,
properties (23)
authorkbooms
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t124212836z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 12:42:12
last_update2017-06-05 12:42:12
depth1
children0
last_payout2017-06-12 12:42:12
cashout_time1969-12-31 23:59:59
total_payout_value3.300 HBD
curator_payout_value1.098 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation64,531,998,591
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,209,440
net_rshares986,762,683,596
author_curate_reward""
vote details (2)
@kim066 ·
$3.75
well written article, thanks for your hard work !
👍  ,
properties (23)
authorkim066
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170609t005017857z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-09 00:50:18
last_update2017-06-09 00:50:18
depth1
children0
last_payout2017-06-16 00:50:18
cashout_time1969-12-31 23:59:59
total_payout_value2.812 HBD
curator_payout_value0.935 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation63,640,131,684,358
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,439,026
net_rshares922,512,294,613
author_curate_reward""
vote details (2)
@krishatnet ·
$3.95
Everybody use messenger but very few people like you know about security.
👍  , ,
properties (23)
authorkrishatnet
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t153729595z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 15:37:36
last_update2017-06-05 15:37:36
depth1
children0
last_payout2017-06-12 15:37:36
cashout_time1969-12-31 23:59:59
total_payout_value3.896 HBD
curator_payout_value0.053 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation3,041,165,528,146
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,217,266
net_rshares902,551,616,044
author_curate_reward""
vote details (3)
@kyriacos ·
$4.90
This was a terrific analysis man. I feel like Neo

https://media.giphy.com/media/3o7btNhMBytxAM6YBa/giphy.gif
👍  , , ,
properties (23)
authorkyriacos
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t055014660z
categorysecurity
json_metadata{"tags":["security"],"image":["https://media.giphy.com/media/3o7btNhMBytxAM6YBa/giphy.gif"],"app":"steemit/0.1"}
created2017-06-05 05:50:15
last_update2017-06-05 05:50:15
depth1
children2
last_payout2017-06-12 05:50:15
cashout_time1969-12-31 23:59:59
total_payout_value3.684 HBD
curator_payout_value1.220 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation151,079,958,921,004
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,196,725
net_rshares1,077,433,215,127
author_curate_reward""
vote details (4)
@foxkoit ·
Ah :))))))
properties (22)
authorfoxkoit
permlinkre-kyriacos-re-modprobe-let-s-talk-about-secure-messaging-apps-20170607t113036413z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-07 11:30:39
last_update2017-06-07 11:30:39
depth2
children0
last_payout2017-06-14 11:30:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation536,568,737,909,603
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,330,732
net_rshares0
@rek2 ·
hahaha old meme but still cool
👍  ,
properties (23)
authorrek2
permlinkre-kyriacos-re-modprobe-let-s-talk-about-secure-messaging-apps-20170606t074128022z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 07:41:27
last_update2017-06-06 07:41:27
depth2
children0
last_payout2017-06-13 07:41:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation113,264,353,089
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,258,261
net_rshares1,863,521,820
author_curate_reward""
vote details (2)
@lautenglye ·
$4.40
in my opinion, nothing is secure especial in IT. But your post deserve my upvote and resteem...
👍  , ,
properties (23)
authorlautenglye
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t001741666z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 00:18:57
last_update2017-06-06 00:18:57
depth1
children0
last_payout2017-06-13 00:18:57
cashout_time1969-12-31 23:59:59
total_payout_value4.128 HBD
curator_payout_value0.272 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation1,745,262,632,168
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,242,012
net_rshares1,008,864,965,641
author_curate_reward""
vote details (3)
@lensessions · (edited)
$4.44
I installed Signal on my cellphone and it did require a phone number during setup but does it ever need you to use that number again? (I haven’t used Signal long enough to know.)  I used a landline number that I have regular access to but is there anything to stop you using a payphone for anonymity?
Unlike some apps it didn’t insist I use the number of the cellphone itself nor did it check the number for “validity” (some apps won’t allow VOIP numbers, or require human intervention to do so).
UPDATE: I just now tried to install Wire.  It also required a phone number and was happy to send a code to my landline. The app then failed to accept the code, with the helpful error message “something went wrong”.
👍  ,
properties (23)
authorlensessions
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t104526523z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 10:45:18
last_update2017-06-05 10:59:03
depth1
children2
last_payout2017-06-12 10:45:18
cashout_time1969-12-31 23:59:59
total_payout_value3.328 HBD
curator_payout_value1.107 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length711
author_reputation167,814,106,918
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,205,357
net_rshares986,762,683,596
author_curate_reward""
vote details (2)
@modprobe ·
Wire does not require a phone number. It does allow you to provide one if you like.

With Signal, you need the phone number later because the phone number is the only way to add people. Also, note that you may have to enter the phone *exactly* as they originally entered it in order for it to be found. I know that's how What'sApp works, and with What'sApp, you can't even start the conversation from within the app. You've got to leave the app and add them to your contacts first, then go back to the app and search to see if it found them, and then go back and edit the contact to twiddle the formatting of the phone number if it didn't, until it finally does or you give up. It's pretty much the worst UX imaginable, I have no idea why people put up with it. At least Signal lets you do it all from within the app so it takes like a tenth of the time and effort. </rant>
👍  
properties (23)
authormodprobe
permlinkre-lensessions-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t142403514z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 14:24:03
last_update2017-06-05 14:24:03
depth2
children1
last_payout2017-06-12 14:24:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length873
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,213,870
net_rshares194,330,525
author_curate_reward""
vote details (1)
@lensessions ·
Wire is very misleading!  
Anyone only trying to install it on a cell would assume a phone number was required because the “create an account” page in the app only gives that option.  
It was only because you said Wire didn’t need a phone number that I bothered to install it on my PC where the “create an account” page allowed me the option of using an email address instead (which I could then use to log in on my cell). Who designs these things?
properties (22)
authorlensessions
permlinkre-modprobe-re-lensessions-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t150245211z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 15:02:36
last_update2017-06-05 15:02:36
depth3
children0
last_payout2017-06-12 15:02:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length448
author_reputation167,814,106,918
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,215,652
net_rshares0
@madimario ·
$4.17
great stuff
👍  ,
properties (23)
authormadimario
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t011036157z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 01:10:36
last_update2017-06-06 01:10:36
depth1
children0
last_payout2017-06-13 01:10:36
cashout_time1969-12-31 23:59:59
total_payout_value3.130 HBD
curator_payout_value1.043 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation16,848,776,867
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,243,741
net_rshares965,311,320,909
author_curate_reward""
vote details (2)
@matt-a ·
$4.68
Killer write up.  I haven't finished reading this yet (but will).  I'm personally a huge advocate for Signal.  Primarily due to them being open source in nature and well respected in the security community.  I also enjoy the ability to use it across platforms as a Chrome extension, even though I'm not really a huge Chrome fan, myself.
👍  , ,
properties (23)
authormatt-a
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t192109150z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 19:21:09
last_update2017-06-05 19:21:09
depth1
children0
last_payout2017-06-12 19:21:09
cashout_time1969-12-31 23:59:59
total_payout_value3.512 HBD
curator_payout_value1.166 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length336
author_reputation34,621,295,577,150
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,228,559
net_rshares1,052,815,136,365
author_curate_reward""
vote details (3)
@melowd · (edited)
$4.51
@modprobe Great post! Pretty new to all these technologies  . I will sure follow you, bcause I'm interested to learn more.
Thanks
👍  , ,
properties (23)
authormelowd
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t010335600z
categorysecurity
json_metadata{"tags":["security"],"users":["modprobe"],"app":"steemit/0.1"}
created2017-06-06 01:03:48
last_update2017-06-06 01:10:57
depth1
children0
last_payout2017-06-13 01:03:48
cashout_time1969-12-31 23:59:59
total_payout_value3.388 HBD
curator_payout_value1.124 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation-267,078,238,602
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,243,504
net_rshares1,030,346,195,880
author_curate_reward""
vote details (3)
@melowd ·
$3.48
I like your work, I resteem it.
👍  ,
properties (23)
authormelowd
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170609t233628506z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-09 23:36:33
last_update2017-06-09 23:36:33
depth1
children0
last_payout2017-06-16 23:36:33
cashout_time1969-12-31 23:59:59
total_payout_value2.609 HBD
curator_payout_value0.866 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation-267,078,238,602
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,500,718
net_rshares924,077,491,037
author_curate_reward""
vote details (2)
@moataz ·
$4.16
Great post.

It's sad that most of today's users are not concerned at all about the security of their information, specially their messaging apps.

No wonder the most widely used have very weak or no security at all (Whatsapp, Viber, Messenger, Skype, among others).

Hopefully one day however people start realizing how important this is and start doing something about it ; and that's something that won't be happening any time soon - or so I believe.
👍  , ,
properties (23)
authormoataz
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t032205161z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 03:22:06
last_update2017-06-05 03:22:06
depth1
children3
last_payout2017-06-12 03:22:06
cashout_time1969-12-31 23:59:59
total_payout_value3.124 HBD
curator_payout_value1.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length453
author_reputation1,422,483,078,165
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,192,135
net_rshares944,009,289,519
author_curate_reward""
vote details (3)
@modprobe · (edited)
To be clear, What'sapp and others often have *strong* security, but bad privacy. You should assume Facebook is reading and recording everything you send on What'sapp, even if random Internet hacker can't, because Facebook makes What'sapp, so when you use it, they control your data before and after it gets secured.
👍  , ,
properties (23)
authormodprobe
permlinkre-moataz-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t135044370z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 13:50:45
last_update2017-06-05 14:14:18
depth2
children2
last_payout2017-06-12 13:50:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length315
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,212,318
net_rshares3,578,821,616
author_curate_reward""
vote details (3)
@beckerly ·
$4.42
"others often have strong security, but bad privacy" is such a concise way to refer to the problem with this type of outlook.

 Following as of now...
👍  ,
properties (23)
authorbeckerly
permlinkre-modprobe-re-moataz-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t223351070z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 22:33:57
last_update2017-06-05 22:33:57
depth3
children0
last_payout2017-06-12 22:33:57
cashout_time1969-12-31 23:59:59
total_payout_value3.318 HBD
curator_payout_value1.103 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation149,122,806,152
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,237,826
net_rshares1,009,877,750,488
author_curate_reward""
vote details (2)
@moataz ·
$4.41
I couldn't have said it better!
👍  ,
properties (23)
authormoataz
permlinkre-modprobe-re-moataz-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t135330407z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 13:53:33
last_update2017-06-05 13:53:33
depth3
children0
last_payout2017-06-12 13:53:33
cashout_time1969-12-31 23:59:59
total_payout_value3.308 HBD
curator_payout_value1.098 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation1,422,483,078,165
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,212,432
net_rshares988,391,727,296
author_curate_reward""
vote details (2)
@mrdeerants ·
$4.41
Great job breaking them down. Far as I'm concerned...I'm always assuming I have no privacy which is sad in a way. If I want to get something important to someone...Might as well go old school... Note sent by courier pigeon!
👍  ,
properties (23)
authormrdeerants
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t221818847z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 22:18:18
last_update2017-06-05 22:18:18
depth1
children0
last_payout2017-06-12 22:18:18
cashout_time1969-12-31 23:59:59
total_payout_value3.311 HBD
curator_payout_value1.103 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length223
author_reputation222,519,604,379
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,237,186
net_rshares1,008,214,046,283
author_curate_reward""
vote details (2)
@newton ·
$3.99
This post makes me feel like how I felt back some 5-6 years ago when I wanted to give up the internet an almost technology on a whole. How does one truly know when they have privacy? I have an headache just thinking about that. 

Will be back to this post for a re-read.
👍  , ,
properties (23)
authornewton
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170608t155504751z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-08 16:54:48
last_update2017-06-08 16:54:48
depth1
children0
last_payout2017-06-15 16:54:48
cashout_time1969-12-31 23:59:59
total_payout_value2.992 HBD
curator_payout_value0.996 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length270
author_reputation70,568,145,888
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,414,720
net_rshares965,381,561,752
author_curate_reward""
vote details (3)
@nickygee ·
$4.42
Thanks for all of the information. I use and app called confide which you didn't mention here.
👍  ,
properties (23)
authornickygee
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t205341469z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 20:53:42
last_update2017-06-05 20:53:42
depth1
children0
last_payout2017-06-12 20:53:42
cashout_time1969-12-31 23:59:59
total_payout_value3.316 HBD
curator_payout_value1.104 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation102,459,750,492
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,233,390
net_rshares1,008,214,046,283
author_curate_reward""
vote details (2)
@notverynice ·
$4.48
Hi, very good post. Just to add one to the discussion I can recommend Wicker app. Seems it got lot of strong sides. Have anyone here tried it?
👍  ,
properties (23)
authornotverynice
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170607t140116832z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-07 14:01:15
last_update2017-06-07 14:01:15
depth1
children1
last_payout2017-06-14 14:01:15
cashout_time1969-12-31 23:59:59
total_payout_value3.364 HBD
curator_payout_value1.120 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation41,600,182,412
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,338,839
net_rshares1,029,665,408,969
author_curate_reward""
vote details (2)
@modprobe ·
I've heard of it, but I don't know anything about it yet
properties (22)
authormodprobe
permlinkre-notverynice-re-modprobe-let-s-talk-about-secure-messaging-apps-20170607t163526133z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-07 16:35:27
last_update2017-06-07 16:35:27
depth2
children0
last_payout2017-06-14 16:35:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,347,489
net_rshares0
@pliton ·
Hi! Have you heard about @krwhale? It is similiar with @randowhale. For your information please <a href=https://steemit.com/krwhale/@krwhale/what-is-krwhale>click on.</a><br>
properties (22)
authorpliton
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170815t131047078z
categorysecurity
json_metadata""
created2017-08-15 13:10:42
last_update2017-08-15 13:10:42
depth1
children0
last_payout2017-08-22 13:10:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation9,003,173,132,522
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,877,873
net_rshares0
@randowhale ·
$0.07
This post received a 83% upvote from @randowhale thanks to @modprobe!  For more information, [click here](https://steemit.com/steemit/@randowhale/introducing-randowhale-will-you-get-the-100-vote-give-it-a-shot)!
👍  
properties (23)
authorrandowhale
permlinkre-let-s-talk-about-secure-messaging-apps-20170609t044717
categorysecurity
json_metadata"{"format": "markdown", "app": "randowhale/0.1"}"
created2017-06-09 04:47:18
last_update2017-06-09 04:47:18
depth1
children0
last_payout2017-06-16 04:47:18
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length211
author_reputation47,657,457,485,459
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,448,932
net_rshares20,842,848,730
author_curate_reward""
vote details (1)
@rek2 ·
$4.60
At this point I prefer wire over signal.. and matrix over both of them... I vote always for total decentralization,free software(as in libre) signal is not totally decentralized as far as I know.. wire it is/half wa source they still opening the code step by step and Matrix is the only one fully open source but not all channels are encrypted I think you have to enable it..
👍  ,
properties (23)
authorrek2
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t074056020z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 07:40:57
last_update2017-06-06 07:40:57
depth1
children1
last_payout2017-06-13 07:40:57
cashout_time1969-12-31 23:59:59
total_payout_value3.450 HBD
curator_payout_value1.150 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length375
author_reputation113,264,353,089
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,258,246
net_rshares1,051,116,771,656
author_curate_reward""
vote details (2)
@modprobe ·
I'm not familiar with Matrix. I agree, full decentralization is desirable, but it's also hard to achieve, especially with an acceptable user experience. And as I said, availability tends to end up being the deciding factor in real life. Perhaps that's one of the reasons why Telegram is so popular: their security is a joke that forgot to be funny, but they seem to be quite well funded, and it shows in the stability of their app.
👍  
properties (23)
authormodprobe
permlinkre-rek2-re-modprobe-let-s-talk-about-secure-messaging-apps-20170606t122651659z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 12:26:54
last_update2017-06-06 12:26:54
depth2
children0
last_payout2017-06-13 12:26:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length431
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,267,947
net_rshares709,294,059
author_curate_reward""
vote details (1)
@rival ·
Wow very Nice article. What do you think of the status app. They just finished the ico which caused etherum network crash. What About security? Thx for your feedback.
properties (22)
authorrival
permlinkre-modprobe-2017626t181734187z
categorysecurity
json_metadata{"tags":"security","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-26 16:17:36
last_update2017-06-26 16:17:36
depth1
children3
last_payout2017-07-03 16:17:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation56,474,966,976,297
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,200,194
net_rshares0
@modprobe ·
I haven't looked into it. What's your take?
properties (22)
authormodprobe
permlinkre-rival-re-modprobe-2017626t181734187z-20170626t181934414z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-26 18:19:36
last_update2017-06-26 18:19:36
depth2
children2
last_payout2017-07-03 18:19:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,214,803
net_rshares0
@rival ·
$8.09
I like the concept what they are doing, but like most people I cannot judge security because its a complex thing. But it must be good because it could kill your reputation in a day.
👍  ,
properties (23)
authorrival
permlinkre-modprobe-re-rival-re-modprobe-2017626t181734187z-20170626t182327491z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-26 18:23:30
last_update2017-06-26 18:23:30
depth3
children1
last_payout2017-07-03 18:23:30
cashout_time1969-12-31 23:59:59
total_payout_value7.986 HBD
curator_payout_value0.107 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation56,474,966,976,297
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,215,283
net_rshares867,255,308,585
author_curate_reward""
vote details (2)
@rival ·
just assume that nothing is confidential.. thats the only thing you can do... agree it or not..
properties (22)
authorrival
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170625t212926132z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-25 21:29:27
last_update2017-06-25 21:29:27
depth1
children0
last_payout2017-07-02 21:29:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation56,474,966,976,297
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,096,966
net_rshares0
@road2wisdom ·
$4.51
Good post and good review.  I use signal and make sure when I use it the other person is using it too.  The one thing Signal should do is add a pin or key pad to open the app itself for ios.  I haven't seen that feature on it.  I learned a while ago the hard way that nothing is secure.  If the Police or Feds want in, they will get in.  In my case they did it in real-time with a device called a stingray (kind of like a man in the middle attack) once they deploy that its over.  They can see everything and pull everything off of the phone in minutes.  The funny thing they did with me before changing my password was strike a conversation with me through my safari browser.  So every time I would type something, they would reply when I would refresh the page.  It was a scary experience to know that my privacy can be violated so easily and for no reason.  In the end, all I got was an apology and the police telling me it was a mistaken identity issue.  Oh and if you think pre-paid flip phones(dumb phones) are safe think again.  When I switched over to that they were dropping my phones, and adding new contacts to my contact list.  This was over 2 years ago, but for now I use signal.  Thanks for making people aware with your post.
👍  , ,
properties (23)
authorroad2wisdom
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t024835315z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 02:48:36
last_update2017-06-05 02:48:36
depth1
children2
last_payout2017-06-12 02:48:36
cashout_time1969-12-31 23:59:59
total_payout_value4.070 HBD
curator_payout_value0.441 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,240
author_reputation18,694,384,095,729
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,191,013
net_rshares1,010,158,236,439
author_curate_reward""
vote details (3)
@modprobe ·
$0.05
Yes, a stingray is a perfect example of a man in the middle attack. And yes, I'm told pretty much all phones sold in the US have malware embedded in the firmwares to give stingrays and who knows what else full access to all data on your phone. They rape your battery, too, I hear.
👍  ,
properties (23)
authormodprobe
permlinkre-road2wisdom-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t030451540z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 03:04:51
last_update2017-06-05 03:04:51
depth2
children1
last_payout2017-06-12 03:04:51
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length280
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,191,540
net_rshares14,277,818,798
author_curate_reward""
vote details (2)
@road2wisdom ·
$4.29
Yes, at the time I knew nothing about the draining battery thing, and my phone would get so hot I couldn't even touch it.  On the flip phone I could hear them but only on my side of the conversation.  So it wasn't perfect, unless they wanted me to hear them! It's a scary feeling having someone control your phone like that.  I can see where they can upload stuff to a phone and use it as evidence against them if they want to be evil with it.  Plus police departments sign a non-disclosure agreement with the Feds not to admit they used it.  They have let people walk on crimes that otherwise would had brought them 10 plus years all because they don't want to admit to using a stingray.  Looking forward to more posts!
👍  ,
properties (23)
authorroad2wisdom
permlinkre-modprobe-re-road2wisdom-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t032439995z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 03:24:39
last_update2017-06-05 03:24:39
depth3
children0
last_payout2017-06-12 03:24:39
cashout_time1969-12-31 23:59:59
total_payout_value3.222 HBD
curator_payout_value1.065 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length720
author_reputation18,694,384,095,729
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,192,210
net_rshares967,292,847,389
author_curate_reward""
vote details (2)
@senor ·
$4.36
Thanks for the post. Very interesting. I'm coming up in the IT world and probably see myself doing the same as you in the future. A follow from me.
👍  , ,
properties (23)
authorsenor
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t170035578z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 17:00:36
last_update2017-06-06 17:00:36
depth1
children5
last_payout2017-06-13 17:00:36
cashout_time1969-12-31 23:59:59
total_payout_value3.270 HBD
curator_payout_value1.089 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation431,911,756,947
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,282,688
net_rshares1,008,214,046,283
author_curate_reward""
vote details (3)
@modprobe · (edited)
If you mean the academics, I wouldn't recommend it. Maybe hang out with your local university's club if they're any good, but otherwise, I would just do wargames and CTFs online if I could go back. I would not bother with academia, and certainly wouldn't pay for it.

I could point you to some decent resources if you tell me what types of security particularly interest you :-)
properties (22)
authormodprobe
permlinkre-senor-re-modprobe-let-s-talk-about-secure-messaging-apps-20170607t025407106z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-07 02:54:09
last_update2017-06-07 02:55:24
depth2
children4
last_payout2017-06-14 02:54:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length378
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,311,478
net_rshares0
@senor ·
$4.46
Thanks for the reply. At this moment in time I actually don't know what I would be going into. Any insight or guides would be greatly appreciated.
👍  
properties (23)
authorsenor
permlinkre-modprobe-re-senor-re-modprobe-let-s-talk-about-secure-messaging-apps-20170607t044658762z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-07 04:47:00
last_update2017-06-07 04:47:00
depth3
children3
last_payout2017-06-14 04:47:00
cashout_time1969-12-31 23:59:59
total_payout_value3.342 HBD
curator_payout_value1.113 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length146
author_reputation431,911,756,947
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,315,889
net_rshares1,029,665,408,969
author_curate_reward""
vote details (1)
@soundreasoning ·
$4.30
I know for a fact I'm going to reread this a couple of times. Thanks so much!
👍  ,
properties (23)
authorsoundreasoning
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170608t191835979z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-08 19:18:36
last_update2017-06-08 19:18:36
depth1
children0
last_payout2017-06-15 19:18:36
cashout_time1969-12-31 23:59:59
total_payout_value3.228 HBD
curator_payout_value1.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation1,436,342,303,074
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,422,246
net_rshares1,029,740,332,535
author_curate_reward""
vote details (2)
@swtcamito ·
$26.41
very much informative post ..
👍  , ,
properties (23)
authorswtcamito
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170613t160848541z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-13 16:08:51
last_update2017-06-13 16:08:51
depth1
children0
last_payout2017-06-20 16:08:51
cashout_time1969-12-31 23:59:59
total_payout_value19.814 HBD
curator_payout_value6.599 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation920,030,646,702
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,745,171
net_rshares1,034,563,872,562
author_curate_reward""
vote details (3)
@team101 ·
$4.17
Very interesting post!
👍  , ,
properties (23)
authorteam101
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t024202938z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 02:42:09
last_update2017-06-05 02:42:09
depth1
children0
last_payout2017-06-12 02:42:09
cashout_time1969-12-31 23:59:59
total_payout_value4.154 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation12,700,047,182,916
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,190,777
net_rshares945,975,553,356
author_curate_reward""
vote details (3)
@terrybrock ·
$4.15
Thank you for sharing this. Very important to know!
👍  ,
properties (23)
authorterrybrock
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t114414799z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 11:44:15
last_update2017-06-06 11:44:15
depth1
children0
last_payout2017-06-13 11:44:15
cashout_time1969-12-31 23:59:59
total_payout_value3.113 HBD
curator_payout_value1.037 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation177,892,578,444,114
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,266,202
net_rshares965,311,320,909
author_curate_reward""
vote details (2)
@thehulk ·
$25.15
For phones my favorite has to be Silent circle its a paid app and they offer an encrypted phone as well.
👍  , ,
properties (23)
authorthehulk
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t060618701z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 06:06:18
last_update2017-06-05 06:06:18
depth1
children1
last_payout2017-06-12 06:06:18
cashout_time1969-12-31 23:59:59
total_payout_value18.868 HBD
curator_payout_value6.285 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation5,071,482,442,175
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,197,265
net_rshares3,661,828,383,125
author_curate_reward""
vote details (3)
@modprobe ·
In my post I linked to [this article](https://medium.com/@thegrugq/operational-telegram-cbbaadb9013a) by The Grugq, another hacker whose name I recognize. He recommends Silent Circle, and his recommendation is probably at least as good as (read: probably better than) mine. :)
properties (22)
authormodprobe
permlinkre-thehulk-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t142618420z
categorysecurity
json_metadata{"tags":["security"],"links":["https://medium.com/@thegrugq/operational-telegram-cbbaadb9013a"],"app":"steemit/0.1"}
created2017-06-05 14:26:21
last_update2017-06-05 14:26:21
depth2
children0
last_payout2017-06-12 14:26:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length276
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,213,972
net_rshares0
@walkerlv ·
$4.76
Interesting food for thought. 

I have a question regarding getting others on board. Imagine having  a group of friends or colleagues, who are not interested in this stuff at all, and look at whatsapp and email as perfectly acceptable even if they would know it's being read by others. 

"I'm not doing anything against the law, therefore they can know everything I do"

How would you go about convincing these people to use another secure app, at the cost of a lower availaibility to them. (And how do you get them all to use the same so that you do not need 8 different clients to communicate with your friends). 

About the aggressive marketing of Telegram as secure whilst not being secure,...  As a government, it looks to me like a good deal to have someone think he is safe while he is not. The Cracking of Enigma without the Germand knowing it probably shaved about 2 years off WWII...
👍  ,
properties (23)
authorwalkerlv
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170605t071719109z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 07:17:21
last_update2017-06-05 07:17:21
depth1
children2
last_payout2017-06-12 07:17:21
cashout_time1969-12-31 23:59:59
total_payout_value3.574 HBD
curator_payout_value1.190 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length893
author_reputation1,260,274,186,405
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,199,407
net_rshares1,051,116,771,656
author_curate_reward""
vote details (2)
@modprobe · (edited)
Hi, @walkerlv :)

Controlling other people's behavior (which includes "convincing these people to use" and "get them all to use"...) is *hard.* It takes a lot of planning and forethought and often doesn't actually work. The entire field of security is effectively about controlling other people's behavior, and then cleaning up the mess when things don't go according to plan. :-P

That's why you see my strategy with this post wasn't to say "people should do X, and here's my credentials for why I'm qualified to say that," but was instead was "hey, here's a whole bunch of knowledge and info I've gained on this topic. Perhaps you haven't thought through this yet, so hopefully this gives you a head start and makes the topic a slightly higher priority on your mind now that you know enough to act." :-D Now for you and everyone else, always be wary of people doing that, since it's easy to manipulate people by only giving them particular information. But in general, if you want people to do things, help them understand why it's in their best interests, and then give them the knowledge that empowers them to act.

That will usually be enough, and they'll motivate themselves from there. If they don't, they probably don't yet see why it's in their best interests to act, so you've got to figure out how to connect this thing you care about with something they care about.

So as for the "I have nothing to hide" crowd, they're tricky because they're choosing to ignore reality. You could ask them why they trust the state, ask them to question whether the state *in real life* seems to be made up of the good people doing good things they associate with it, or is that just opinion formed from TV and marketing? But all of that is just as likely to bounce off because it challenges a more fundamental belief that they aren't willing to question. You've got to figure out what that deeper belief is, and fix that first. Once you've dug deep enough and found and eliminated the root lie, they'll fix everything after that on their own in time, as long as they don't adopt another lie along the way.

 And yes, I strongly suspect Telegram as being in cahoots with malicious states, in an attempt to honeypot people into trusting as private an app which is intentionally designed to not be private from the state. The psychopathic level of their false advertising, and the kind of marketing they get from apparently unrelated organizations...  Telegram was famous briefly for being used by a group of 'terrorists' to 'secure' their communications, which sounds like pure storytelling to me. It's *exactly* the same strategy for getting people to act that I used in this post. Think about that.
👍  
properties (23)
authormodprobe
permlinkre-walkerlv-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t134044432z
categorysecurity
json_metadata{"tags":["security"],"users":["walkerlv"],"app":"steemit/0.1"}
created2017-06-05 13:40:51
last_update2017-06-05 13:47:30
depth2
children1
last_payout2017-06-12 13:40:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,695
author_reputation57,055,357,664,878
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,211,909
net_rshares3,185,835,933
author_curate_reward""
vote details (1)
@walkerlv ·
$4.62
This had got to be the most elaborate and most thought out answer I ever received to a question on steemit. 

Thank you for taking the time to do this. You make many excellent points, in the short run, I doubt I'll get people to switch from using email and whatsapp :)
👍  
properties (23)
authorwalkerlv
permlinkre-modprobe-re-walkerlv-re-modprobe-let-s-talk-about-secure-messaging-apps-20170605t171432495z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-05 17:14:33
last_update2017-06-05 17:14:33
depth3
children0
last_payout2017-06-12 17:14:33
cashout_time1969-12-31 23:59:59
total_payout_value3.463 HBD
curator_payout_value1.153 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length268
author_reputation1,260,274,186,405
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,222,151
net_rshares1,029,665,408,969
author_curate_reward""
vote details (1)
@yaumil ·
Keren
properties (22)
authoryaumil
permlinkre-modprobe-let-s-talk-about-secure-messaging-apps-20170606t170445264z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-06-06 01:53:42
last_update2017-06-06 01:53:42
depth1
children0
last_payout2017-06-13 01:53:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation1,124,582,085,168
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,245,421
net_rshares0
@yendyaybar ·
$3.97
Very interesting
👍  , , ,
properties (23)
authoryendyaybar
permlinkre-modprobe-201765t143218499z
categorysecurity
json_metadata{"tags":"security","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-05 18:32:21
last_update2017-06-05 18:32:21
depth1
children0
last_payout2017-06-12 18:32:21
cashout_time1969-12-31 23:59:59
total_payout_value2.945 HBD
curator_payout_value1.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation33,816,619,365
root_title"Let's Talk About Secure Messaging Apps"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,226,136
net_rshares946,184,917,150
author_curate_reward""
vote details (4)