diff --git a/MasterPassword/ObjC/iOS/MPAnswersViewController.m b/MasterPassword/ObjC/iOS/MPAnswersViewController.m index b13e8b19..a7ac3ec0 100644 --- a/MasterPassword/ObjC/iOS/MPAnswersViewController.m +++ b/MasterPassword/ObjC/iOS/MPAnswersViewController.m @@ -92,7 +92,7 @@ if (!_multiple) return 0; - return MAX( 2, [[self siteInContext:[MPiOSAppDelegate managedObjectContextForMainThreadIfReady]].questions count] ); + return [[self siteInContext:[MPiOSAppDelegate managedObjectContextForMainThreadIfReady]].questions count] + 1; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { diff --git a/MasterPassword/Resources/Media/ios/icon.sketch/Data b/MasterPassword/Resources/Media/ios/icon.sketch/Data deleted file mode 100644 index 16db5ddf..00000000 Binary files a/MasterPassword/Resources/Media/ios/icon.sketch/Data and /dev/null differ diff --git a/MasterPassword/Resources/Media/ios/icon.sketch/metadata b/MasterPassword/Resources/Media/ios/icon.sketch/metadata deleted file mode 100644 index e79ea03f..00000000 --- a/MasterPassword/Resources/Media/ios/icon.sketch/metadata +++ /dev/null @@ -1,22 +0,0 @@ - - - - - app - com.bohemiancoding.sketch3 - build - 8053 - commit - 104f8b8798002207eebbbee810c02306c5ce85c9 - fonts - - SourceCodePro-Light - LucidaGrande - HelveticaNeue-Medium - - length - 918726 - version - 37 - - diff --git a/MasterPassword/Resources/Media/ios/icon.sketch/version b/MasterPassword/Resources/Media/ios/icon.sketch/version deleted file mode 100644 index 7c091989..00000000 --- a/MasterPassword/Resources/Media/ios/icon.sketch/version +++ /dev/null @@ -1 +0,0 @@ -37 \ No newline at end of file diff --git a/Site/2013-05/algorithm.html b/Site/2013-05/algorithm.html index eadd1be2..1e23d569 100644 --- a/Site/2013-05/algorithm.html +++ b/Site/2013-05/algorithm.html @@ -14,7 +14,7 @@ - + @@ -35,18 +35,16 @@ ●●●| @@ -77,42 +75,6 @@

Master Password is an algorithm used to generate unique passwords for websites, email accounts, or anything else based only on easily reproducible input.
The goal is a process that avoids all the problems involved with other password solutions.

The Master Password algorithm is open: this page describes its inner workings in detail. We believe the following is an important lesson we should all learn: Regardless of how much encryption a solution claims, if you don't know how it works, you cannot assume it is secure (at least, not the kind of secure you care about).

- -

The Password Problem

- -

Passwords are used to authenticate you to someone else. That means, convince someone that you really are who you say you are. The theory is that when you two are the only ones that know a certain secret word, then the other party can be certain of your identity when you prove to them you know the secret word.

-

Authentication using passwords is pretty good in theory but fails when the password is either: -

-

-

So the only way to do passwords right is by inventing a secure (ie. hard to guess) and unique (ie. different for each site) password each time.

-

Unfortunately, secure passwords are hard to come up with and even harder to remember.

-

People generally give up and begin reusing passwords between sites. The password is now no longer secret. This can lead to your identity getting stolen when sites get hacked, you get conned by a hoax site, or you sign up with an untrustworthy website.

- -

Password Solutions

-

To help with these problems, there are a bunch of apps available that remember your passwords for you. They accomplish this by saving your passwords in an encrypted vault or by sending them off to a cloud server.

-

These approaches are very helpful, but they come with a few very important downsides: -

-

- -

Solving Availability

-

Losing all your passwords or other password availability issues are frustrating and sometimes even disastrous.

-

Master Password solves this problem by being a stateless solution. That means that no information needs to be saved in order for the program to be able to give you your password again in the future.

-

Since Master Password doesn't save your passwords and doesn't send them anywhere, it avoids the following risks: -

-

diff --git a/Site/2013-05/css/main.css b/Site/2013-05/css/main.css index 56b15bfc..2b9e8f22 100644 --- a/Site/2013-05/css/main.css +++ b/Site/2013-05/css/main.css @@ -267,15 +267,19 @@ header .box .maximized { height: 80%; } #app header .background { - background: url('../img/shot-laptop-leaning-iphone.png') center center; + background: url('../img/shot-laptop-leaning-iphone.jpg') center center; background-size: cover; } +#what header, +#security header, #algorithm header, #support header { height: 40%; background: #272727; } +#what header .background, +#security header .background, #algorithm header .background, #support header .background { width: 940px; @@ -284,6 +288,8 @@ header .box .maximized { top: -10%; margin-left: -470px; } +#what header .container, +#security header .container, #algorithm header .container, #support header .container { background: radial-gradient(center, ellipse cover, rgba(0,0,0,0.3) 50%,rgba(0,0,0,0.8) 100%); diff --git a/Site/2013-05/faq.html b/Site/2013-05/faq.html index 0dfd3d30..23aa8398 100644 --- a/Site/2013-05/faq.html +++ b/Site/2013-05/faq.html @@ -14,7 +14,7 @@ - + @@ -35,18 +35,16 @@ ●●●|
diff --git a/Site/2013-05/img/howto-mp-copy.png b/Site/2013-05/img/howto-mp-copy.png new file mode 100644 index 00000000..17e0febc Binary files /dev/null and b/Site/2013-05/img/howto-mp-copy.png differ diff --git a/Site/2013-05/img/howto-mp-copy@2x.png b/Site/2013-05/img/howto-mp-copy@2x.png new file mode 100644 index 00000000..5f26e749 Binary files /dev/null and b/Site/2013-05/img/howto-mp-copy@2x.png differ diff --git a/Site/2013-05/img/howto-mp-create-confirm.png b/Site/2013-05/img/howto-mp-create-confirm.png new file mode 100644 index 00000000..a2872266 Binary files /dev/null and b/Site/2013-05/img/howto-mp-create-confirm.png differ diff --git a/Site/2013-05/img/howto-mp-create-confirm@2x.png b/Site/2013-05/img/howto-mp-create-confirm@2x.png new file mode 100644 index 00000000..8ddd4281 Binary files /dev/null and b/Site/2013-05/img/howto-mp-create-confirm@2x.png differ diff --git a/Site/2013-05/img/howto-mp-create.png b/Site/2013-05/img/howto-mp-create.png new file mode 100644 index 00000000..cb5a1bb7 Binary files /dev/null and b/Site/2013-05/img/howto-mp-create.png differ diff --git a/Site/2013-05/img/howto-mp-create@2x.png b/Site/2013-05/img/howto-mp-create@2x.png new file mode 100644 index 00000000..2d6d6d01 Binary files /dev/null and b/Site/2013-05/img/howto-mp-create@2x.png differ diff --git a/Site/2013-05/img/howto-mp-login.png b/Site/2013-05/img/howto-mp-login.png new file mode 100644 index 00000000..4a63363d Binary files /dev/null and b/Site/2013-05/img/howto-mp-login.png differ diff --git a/Site/2013-05/img/howto-mp-login@2x.png b/Site/2013-05/img/howto-mp-login@2x.png new file mode 100644 index 00000000..2739fdaa Binary files /dev/null and b/Site/2013-05/img/howto-mp-login@2x.png differ diff --git a/Site/2013-05/img/howto-mp-type-basic.png b/Site/2013-05/img/howto-mp-type-basic.png new file mode 100644 index 00000000..8eb27173 Binary files /dev/null and b/Site/2013-05/img/howto-mp-type-basic.png differ diff --git a/Site/2013-05/img/howto-mp-type-basic@2x.png b/Site/2013-05/img/howto-mp-type-basic@2x.png new file mode 100644 index 00000000..906f47dc Binary files /dev/null and b/Site/2013-05/img/howto-mp-type-basic@2x.png differ diff --git a/Site/2013-05/img/howto-mp-type-change.png b/Site/2013-05/img/howto-mp-type-change.png new file mode 100644 index 00000000..dc7be3c6 Binary files /dev/null and b/Site/2013-05/img/howto-mp-type-change.png differ diff --git a/Site/2013-05/img/howto-mp-type-change@2x.png b/Site/2013-05/img/howto-mp-type-change@2x.png new file mode 100644 index 00000000..125c8ced Binary files /dev/null and b/Site/2013-05/img/howto-mp-type-change@2x.png differ diff --git a/Site/2013-05/img/howto-twitter-done.png b/Site/2013-05/img/howto-twitter-done.png new file mode 100644 index 00000000..baca4bb7 Binary files /dev/null and b/Site/2013-05/img/howto-twitter-done.png differ diff --git a/Site/2013-05/img/howto-twitter-done@2x.png b/Site/2013-05/img/howto-twitter-done@2x.png new file mode 100644 index 00000000..6f4a4dad Binary files /dev/null and b/Site/2013-05/img/howto-twitter-done@2x.png differ diff --git a/Site/2013-05/img/howto-twitter-paste.png b/Site/2013-05/img/howto-twitter-paste.png new file mode 100644 index 00000000..5bb32411 Binary files /dev/null and b/Site/2013-05/img/howto-twitter-paste.png differ diff --git a/Site/2013-05/img/howto-twitter-paste@2x.png b/Site/2013-05/img/howto-twitter-paste@2x.png new file mode 100644 index 00000000..a22e4ea9 Binary files /dev/null and b/Site/2013-05/img/howto-twitter-paste@2x.png differ diff --git a/Site/2013-05/img/howto-twitter-signup.png b/Site/2013-05/img/howto-twitter-signup.png new file mode 100644 index 00000000..e080d9af Binary files /dev/null and b/Site/2013-05/img/howto-twitter-signup.png differ diff --git a/Site/2013-05/img/howto-twitter-signup@2x.png b/Site/2013-05/img/howto-twitter-signup@2x.png new file mode 100644 index 00000000..e866a586 Binary files /dev/null and b/Site/2013-05/img/howto-twitter-signup@2x.png differ diff --git a/Site/2013-05/img/mac-icon-256.png b/Site/2013-05/img/mac-icon-256.png new file mode 100644 index 00000000..d98bf5e9 Binary files /dev/null and b/Site/2013-05/img/mac-icon-256.png differ diff --git a/Site/2013-05/img/shot-laptop-leaning-iphone-800@2x.png b/Site/2013-05/img/shot-laptop-leaning-iphone-800@2x.png new file mode 100644 index 00000000..0dca10a2 Binary files /dev/null and b/Site/2013-05/img/shot-laptop-leaning-iphone-800@2x.png differ diff --git a/Site/2013-05/img/shot-laptop-leaning-iphone.jpg b/Site/2013-05/img/shot-laptop-leaning-iphone.jpg new file mode 100644 index 00000000..4c0078aa Binary files /dev/null and b/Site/2013-05/img/shot-laptop-leaning-iphone.jpg differ diff --git a/Site/2013-05/index.html b/Site/2013-05/index.html index d6cd1a0c..43197e7d 100644 --- a/Site/2013-05/index.html +++ b/Site/2013-05/index.html @@ -14,7 +14,7 @@ - + @@ -34,21 +34,19 @@ - ●●●| + ●●●| diff --git a/Site/2013-05/privacy.html b/Site/2013-05/privacy.html index 0823a002..5c2d1d7a 100644 --- a/Site/2013-05/privacy.html +++ b/Site/2013-05/privacy.html @@ -14,7 +14,7 @@ - + @@ -35,18 +35,16 @@ ●●●| diff --git a/Site/2013-05/security.html b/Site/2013-05/security.html index c872d145..c0a1dfd7 100644 --- a/Site/2013-05/security.html +++ b/Site/2013-05/security.html @@ -14,12 +14,12 @@ - + - + @@ -35,18 +35,16 @@ ●●●| @@ -57,13 +55,6 @@
- -

Security Overview

diff --git a/Site/2013-05/support.html b/Site/2013-05/support.html index eaabd4bb..a1545f6d 100644 --- a/Site/2013-05/support.html +++ b/Site/2013-05/support.html @@ -14,7 +14,7 @@ - + @@ -35,18 +35,16 @@ ●●●|
diff --git a/Site/2013-05/trouble.html b/Site/2013-05/trouble.html index 783f8a8e..d28ea7b4 100644 --- a/Site/2013-05/trouble.html +++ b/Site/2013-05/trouble.html @@ -14,7 +14,7 @@ - + @@ -35,18 +35,16 @@ ●●●| diff --git a/Site/2013-05/what.html b/Site/2013-05/what.html new file mode 100644 index 00000000..71e631a9 --- /dev/null +++ b/Site/2013-05/what.html @@ -0,0 +1,233 @@ + + + + + + Master Password — Secure your life, forget your passwords. + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+

Master Password is a wholly different way of doing passwords.

+
+ +
+
+ +
+ +
+ +

The Master Password way

+

Stop writing down your passwords.

+

Stop storing your passwords in a "secure" place, such as a vault, a keychain, an app or "the cloud".

+

In fact, just stop thinking about passwords at all.

+

Master Password users have no more passwords. They have a password. Their password is their single master key for unlocking all doors.

+ +

One, two, enter.

+

As a Master Password user, there are about three steps to entering any site:

+
    +
  1. Enter your master password to unlock your Master Password app.
  2. +
  3. Find the name of the site you want to get into, copy its key.
  4. +
  5. Paste the site's key into the site and log in.
  6. +
+

Most browsers will then ask you to "save" the site's password. For most people, this is a good idea and will subsequently allow you to log in without having to use Master Password at all.

+ +

How do I get started?

+

Depending on how many sites you currently hold active accounts on, this is likely going to be your biggest curve.

+

Master Password generates passwords for you to use. That means, you cannot use your old passwords with it (in truth, you could, but that would defeat the purpose - you shouldn't).

+

For every site where you currently hold an account:
+ Sorry, you'll have to log into the site once with your old password and update the password to the new and much stronger password Master Password has generated for you.

+

For every site you sign up with from now on:
+ Simple: stop trying to come up with a good new password for your next account. Just copy/paste Master Password's generated password for this site into the password and confirm password fields.

+ +

I want pictures.

+

All right. Here's Robert on his iPhone:

+

+

He wants to sign up for Twitter. Robert filled in all the fields, except for password. Not wanting to worry about what his twitter secret is going to be, he switches to Master Password.

+

+

Of course, he begins by unlocking his user with his master password. Robert can skip this step by going into Master Password's preferences and setting it to either save his master key or remember his login, but he choses not to.

+ +

+

+ He creates a password for Twitter by using its bare domain name: twitter.com. He knows not to use mobile.twitter.com or Twitter or anything non-standard, because that would be very difficult to remember correctly on a later date. If he has multiple twitter accounts, he could prefix the name with a user name and an @: rmitchell@twitter.com, + superbob@twitter.com.

+

Optional:
+ +

+

If the account Robert's signing up for is with a website that prohibits symbols for some daft reason, Robert can change the type to Basic or something similar instead. Robert can also bump up the complexity to get an even more secure password if he wants.

+

+

+

When Robert created the site in Master Password, it copied the password to his pasteboard. Now, Robert just switches back to Safari and pastes his brand-new password he doesn't care to remember in twitter's password field. All done!

+ +

Why, that sounds more complicated.

+

More complicated than what, exactly? Using robert17 for all your sites? Well, yes. That's also rather the point.

+

The point is to eliminate the many sources of insecurities related to password authentication, and yet keeping the process surprizingly trivial. What you get in exchange for these two extra first-time only steps is very robust, unique passwords which are not hackable even from a site's leaked password hashes, in addition to the freedom to forget all about passwords. Entirely.

+
    +
  • You get to stop worrying about what password you used for your bank or the government tax portal, because they both use rediculous and different password policies.
  • +
  • You get to stop writing down passwords and keeping those notes safe from others as well as safe from loss.
  • +
  • You get to stop messing with password vaults that promise to encrypt your stuff, but can't help you when you're at a friend's house, or after your appartment fire.
  • +
  • You can stop sharing the keys to your digital life with online password websites that promise all the military grade encryption while being gagged and tapped by a government agency.
  • +
+ +

I use this other password manager, and it's awesome.

+

I shall not endeaver to quarrel with the point on the awesome scale of your other password manager. That said, Master Password was designed from the ground up specifically because of the many flaws that existed in all the popular password managers at the time. And the times haven't changed for the better since.

+

I'm going to provide an excessively brief description of the primary flaws other password managers suffer, which Master Password is free from. Please contact me if you have something to add, ask or correct.

+ +

While each of these services have many great pros, I will only mention those that Master Password lacks.

+
    + +
  • Password Vaults: 1Password, Mac OS X Keychain, KeePass, ... +

    Pros: Some allow you the ability to change your master password or reset it if you forgot it.

    +

    Cons: Your vault needs to be backed up, and you can only access your passwords if you can access the vault. Syncing the vault to all your devices is troublesome and generally relies on uploading your secrets to a company's servers. Total data loss is catastrophic.

  • + +
  • Online Vaults: LastPass, Secret Server, Mitto, ... +

    Pros: Some allow you the ability to change your master password or reset it if you forgot it. Some support "two-factor" authentication.

    +

    Cons: Access to your secrets depends on an active data connection. You've given the keys to your global digital identity to some company you probably shouldn't trust as much as you wish you could. Their website stating that they "can't access your data" doesn't change this, nor does it make any assurances about tomorrow.

  • + +
  • Password Generators: SuperGenPass, PasswordMaker, PassHash, ... +

    Pros: They got the same idea as us! Yay!

    +

    Cons: Sadly, nearly all of these, while claiming the same benefits as Master Password, suffer from critical flaws which either defeat their benefits (reverting them to mere password vaults) or use critically weak crypto, with the result of actually making it trivial to reverse your master password - and by extension, access to all your accounts.

  • + +
+ +

What are Master Password's cons? Or is it flawless?

+

Master Password also has cons. Let's be frank and list the cons that the other solutions generally don't suffer:

+

Cons: Changing your master password requires you to update all your site passwords. A compromised or forgotten master password requires you to do the same.

+ +

There are some other cons, which I consider "fake cons", with a justification of why I label them as such:

+
    +
  • My boss gave me this password to use... +

    Master Password's generated passwords only work if you use the password generated for you. You cannot use a password somebody else gave you. Only - you can: Master Password implements a hybrid solution, allowing you to save custom passwords in the app. They are AES encrypted with your master key, but like all vault-based password managers, are not immune to loss if you ever lose your phone and + backups..

  • +
  • I can't reset if I forgot my master password! +

    Uh, no. If you forgot your master password, you're probably an alien replica of yourself. So no, you can't reset. If you're not a replica, just make a new user with a new master password and reset all your site passwords. Remember your master password this time.

  • +
  • I noticed everybody's doing this two-factor thing now. +

    Two factor authentication is defined as authenticating yourself with two methods that are so distinct that a single attack cannot compromise both. Many sites claim to use two-factor authentication but actually rely only on an extra password hidden in an app on your phone or computer. If an attacker can steal your master password, he can probably download the hidden password too. Or read in your two-factor response while you're typing it in. On top of that, you're using a password manager: after your "two-factor" authentication, you get a single password to perform another one-factor authentication with a site. As a hacker, I'd go for the weakest link to break your chain.

  • +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +