Is this password scheme legit?Definitely safest password storage scheme?Hash(master + hostname) password scheme for a server poolPasswords In Securing Network DevicesStrong password vs. restriction on number of attemptsSimple-to-implement ad-hoc password validation schemeHow secure is this method of password generation?Group password creation schemeWhat is the weakest scheme in common use for password hashing?

"There were either twelve sexes or none."

Why is getting a PhD considered "financially irresponsible"?

How should i charge 3 lithium ion batteries?

Does EU 261/2004 compensation apply if delayed by the border check?

Unlock your Lock

How to check whether a sublist exist in a huge database lists in a fast way?

How to prevent a hosting company from accessing a VM's encryption keys?

Cooking Scrambled Eggs

Billiard balls collision

Make utility using LINQ

Do clerics commit a sin if they do not recite the liturgy of the hours?

How long do you think advanced cybernetic implants would plausibly last?

Hangman game in Python - need feedback on the quality of code

Joining lists with same elements

I don't have the theoretical background in my PhD topic. I can't justify getting the degree

Can an Arcane Focus be embedded in one's body?

Can RMSE and MAE have the same value?

How to get trace to get a cylinder when I rotate a rectangle?

Number of academics in various EU countries

How to gently end involvement with an online community?

Why is strlen so complex in C?

Who was the most successful German spy against Great Britain in WWII, from the contemporary German perspective?

transparent text, such that floats and footnotes are affected correctly

What is a natural problem in theory of computation?



Is this password scheme legit?


Definitely safest password storage scheme?Hash(master + hostname) password scheme for a server poolPasswords In Securing Network DevicesStrong password vs. restriction on number of attemptsSimple-to-implement ad-hoc password validation schemeHow secure is this method of password generation?Group password creation schemeWhat is the weakest scheme in common use for password hashing?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








8















I received an invitation for an IT security fair (https://www.it-sa.de/en).



They additionally delivered a password "Kryptonizer". That is a little card to hang on your keychain with the following (example values, my translation):




It is often too easy for hackers to acquire personal information. The reason: Passwords that we can easily remember aren't cryptic. They are often common names or words like "Snowden" or "Admin". This card tries to fix this by making easy to remember passwords crpytic.



Input Start ABC DEF GHI JKL MNO PQRS TUV WXYZ
Output 4uR=? x 1 F 3 Y i # 9



Original version in german:




Hintergrund: Passwort-Hackern wird der Zugang zu persönlichen Daten im
Internet häufig viel zu leicht gemacht. Der Grund liegt auf der Hand:
Passwörter, die wir uns merken können, sind meistens nicht besonders
kryptisch, sondern orientieren sich an gängigen Namen oder Wörtern wie
"Snowden" oder "Admin".




Everything from the output is random for every single card (66 different characters to choose from). Now we have to choose an "easy" password (they recommend at least 8 characters):



Input: HELLOWORLD
Output: 4uR=?F133Y9Yi31


They also recommend to use this card for only one password and change it, if you lose the card.



Is this password scheme good? It comes from a big security fair with many experts.



My novice guess is, that you have a reduced entropy because of only 8 different characters (+ 1 start sequence), but as long as your card stays unknown, the attacker can't exploit this fact.










share|improve this question









New contributor



izlin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Can you elaborate on what this card is being used for? It does seem like a rudimentary password hashing scheme designed for manual checks - especially with "simple passwords" you have reduced security. A password that matches the hash can easily be produced for every hash in one pass.

    – Tobi Nary
    9 hours ago











  • This looks like a very weak passwords hashing scheme. Given a hashed password, it won't be too difficult to reverse it into a list of possible plain text passwords (the reversing algorithm is essentially the T9 algorithm.

    – Lie Ryan
    9 hours ago











  • @TobiNary To cite the card (translated) "It is often too easy for hackers to acquire personal information. The reason: Passwords that we can easily remember aren't cryptic. They are often common names or words like "Snowden" or "Admin"", this card tries to fix this by making easy to remember passwords crpytic.

    – izlin
    9 hours ago











  • @izlin do you have the German Text as well? This does seem like first class sarcasm.

    – Tobi Nary
    7 hours ago






  • 1





    @TobiNary I actually explain this very concept right in the beginning of my answer. Yes I absolutely agree that teaching people to use passwords is way better than to rely on what is effectively a crutch. And this may be perfectly fine for a 28-year-old college graduate with a MSc. in Engineering. But for the 57-year-old Karen from Accounting, this proves to be substantially more difficult.

    – MechMK1
    3 hours ago

















8















I received an invitation for an IT security fair (https://www.it-sa.de/en).



They additionally delivered a password "Kryptonizer". That is a little card to hang on your keychain with the following (example values, my translation):




It is often too easy for hackers to acquire personal information. The reason: Passwords that we can easily remember aren't cryptic. They are often common names or words like "Snowden" or "Admin". This card tries to fix this by making easy to remember passwords crpytic.



Input Start ABC DEF GHI JKL MNO PQRS TUV WXYZ
Output 4uR=? x 1 F 3 Y i # 9



Original version in german:




Hintergrund: Passwort-Hackern wird der Zugang zu persönlichen Daten im
Internet häufig viel zu leicht gemacht. Der Grund liegt auf der Hand:
Passwörter, die wir uns merken können, sind meistens nicht besonders
kryptisch, sondern orientieren sich an gängigen Namen oder Wörtern wie
"Snowden" oder "Admin".




Everything from the output is random for every single card (66 different characters to choose from). Now we have to choose an "easy" password (they recommend at least 8 characters):



Input: HELLOWORLD
Output: 4uR=?F133Y9Yi31


They also recommend to use this card for only one password and change it, if you lose the card.



Is this password scheme good? It comes from a big security fair with many experts.



My novice guess is, that you have a reduced entropy because of only 8 different characters (+ 1 start sequence), but as long as your card stays unknown, the attacker can't exploit this fact.










share|improve this question









New contributor



izlin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Can you elaborate on what this card is being used for? It does seem like a rudimentary password hashing scheme designed for manual checks - especially with "simple passwords" you have reduced security. A password that matches the hash can easily be produced for every hash in one pass.

    – Tobi Nary
    9 hours ago











  • This looks like a very weak passwords hashing scheme. Given a hashed password, it won't be too difficult to reverse it into a list of possible plain text passwords (the reversing algorithm is essentially the T9 algorithm.

    – Lie Ryan
    9 hours ago











  • @TobiNary To cite the card (translated) "It is often too easy for hackers to acquire personal information. The reason: Passwords that we can easily remember aren't cryptic. They are often common names or words like "Snowden" or "Admin"", this card tries to fix this by making easy to remember passwords crpytic.

    – izlin
    9 hours ago











  • @izlin do you have the German Text as well? This does seem like first class sarcasm.

    – Tobi Nary
    7 hours ago






  • 1





    @TobiNary I actually explain this very concept right in the beginning of my answer. Yes I absolutely agree that teaching people to use passwords is way better than to rely on what is effectively a crutch. And this may be perfectly fine for a 28-year-old college graduate with a MSc. in Engineering. But for the 57-year-old Karen from Accounting, this proves to be substantially more difficult.

    – MechMK1
    3 hours ago













8












8








8








I received an invitation for an IT security fair (https://www.it-sa.de/en).



They additionally delivered a password "Kryptonizer". That is a little card to hang on your keychain with the following (example values, my translation):




It is often too easy for hackers to acquire personal information. The reason: Passwords that we can easily remember aren't cryptic. They are often common names or words like "Snowden" or "Admin". This card tries to fix this by making easy to remember passwords crpytic.



Input Start ABC DEF GHI JKL MNO PQRS TUV WXYZ
Output 4uR=? x 1 F 3 Y i # 9



Original version in german:




Hintergrund: Passwort-Hackern wird der Zugang zu persönlichen Daten im
Internet häufig viel zu leicht gemacht. Der Grund liegt auf der Hand:
Passwörter, die wir uns merken können, sind meistens nicht besonders
kryptisch, sondern orientieren sich an gängigen Namen oder Wörtern wie
"Snowden" oder "Admin".




Everything from the output is random for every single card (66 different characters to choose from). Now we have to choose an "easy" password (they recommend at least 8 characters):



Input: HELLOWORLD
Output: 4uR=?F133Y9Yi31


They also recommend to use this card for only one password and change it, if you lose the card.



Is this password scheme good? It comes from a big security fair with many experts.



My novice guess is, that you have a reduced entropy because of only 8 different characters (+ 1 start sequence), but as long as your card stays unknown, the attacker can't exploit this fact.










share|improve this question









New contributor



izlin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I received an invitation for an IT security fair (https://www.it-sa.de/en).



They additionally delivered a password "Kryptonizer". That is a little card to hang on your keychain with the following (example values, my translation):




It is often too easy for hackers to acquire personal information. The reason: Passwords that we can easily remember aren't cryptic. They are often common names or words like "Snowden" or "Admin". This card tries to fix this by making easy to remember passwords crpytic.



Input Start ABC DEF GHI JKL MNO PQRS TUV WXYZ
Output 4uR=? x 1 F 3 Y i # 9



Original version in german:




Hintergrund: Passwort-Hackern wird der Zugang zu persönlichen Daten im
Internet häufig viel zu leicht gemacht. Der Grund liegt auf der Hand:
Passwörter, die wir uns merken können, sind meistens nicht besonders
kryptisch, sondern orientieren sich an gängigen Namen oder Wörtern wie
"Snowden" oder "Admin".




Everything from the output is random for every single card (66 different characters to choose from). Now we have to choose an "easy" password (they recommend at least 8 characters):



Input: HELLOWORLD
Output: 4uR=?F133Y9Yi31


They also recommend to use this card for only one password and change it, if you lose the card.



Is this password scheme good? It comes from a big security fair with many experts.



My novice guess is, that you have a reduced entropy because of only 8 different characters (+ 1 start sequence), but as long as your card stays unknown, the attacker can't exploit this fact.







passwords password-cracking






share|improve this question









New contributor



izlin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










share|improve this question









New contributor



izlin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








share|improve this question




share|improve this question








edited 4 hours ago







izlin













New contributor



izlin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








asked 9 hours ago









izlinizlin

1414 bronze badges




1414 bronze badges




New contributor



izlin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




New contributor




izlin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

















  • Can you elaborate on what this card is being used for? It does seem like a rudimentary password hashing scheme designed for manual checks - especially with "simple passwords" you have reduced security. A password that matches the hash can easily be produced for every hash in one pass.

    – Tobi Nary
    9 hours ago











  • This looks like a very weak passwords hashing scheme. Given a hashed password, it won't be too difficult to reverse it into a list of possible plain text passwords (the reversing algorithm is essentially the T9 algorithm.

    – Lie Ryan
    9 hours ago











  • @TobiNary To cite the card (translated) "It is often too easy for hackers to acquire personal information. The reason: Passwords that we can easily remember aren't cryptic. They are often common names or words like "Snowden" or "Admin"", this card tries to fix this by making easy to remember passwords crpytic.

    – izlin
    9 hours ago











  • @izlin do you have the German Text as well? This does seem like first class sarcasm.

    – Tobi Nary
    7 hours ago






  • 1





    @TobiNary I actually explain this very concept right in the beginning of my answer. Yes I absolutely agree that teaching people to use passwords is way better than to rely on what is effectively a crutch. And this may be perfectly fine for a 28-year-old college graduate with a MSc. in Engineering. But for the 57-year-old Karen from Accounting, this proves to be substantially more difficult.

    – MechMK1
    3 hours ago

















  • Can you elaborate on what this card is being used for? It does seem like a rudimentary password hashing scheme designed for manual checks - especially with "simple passwords" you have reduced security. A password that matches the hash can easily be produced for every hash in one pass.

    – Tobi Nary
    9 hours ago











  • This looks like a very weak passwords hashing scheme. Given a hashed password, it won't be too difficult to reverse it into a list of possible plain text passwords (the reversing algorithm is essentially the T9 algorithm.

    – Lie Ryan
    9 hours ago











  • @TobiNary To cite the card (translated) "It is often too easy for hackers to acquire personal information. The reason: Passwords that we can easily remember aren't cryptic. They are often common names or words like "Snowden" or "Admin"", this card tries to fix this by making easy to remember passwords crpytic.

    – izlin
    9 hours ago











  • @izlin do you have the German Text as well? This does seem like first class sarcasm.

    – Tobi Nary
    7 hours ago






  • 1





    @TobiNary I actually explain this very concept right in the beginning of my answer. Yes I absolutely agree that teaching people to use passwords is way better than to rely on what is effectively a crutch. And this may be perfectly fine for a 28-year-old college graduate with a MSc. in Engineering. But for the 57-year-old Karen from Accounting, this proves to be substantially more difficult.

    – MechMK1
    3 hours ago
















Can you elaborate on what this card is being used for? It does seem like a rudimentary password hashing scheme designed for manual checks - especially with "simple passwords" you have reduced security. A password that matches the hash can easily be produced for every hash in one pass.

– Tobi Nary
9 hours ago





Can you elaborate on what this card is being used for? It does seem like a rudimentary password hashing scheme designed for manual checks - especially with "simple passwords" you have reduced security. A password that matches the hash can easily be produced for every hash in one pass.

– Tobi Nary
9 hours ago













This looks like a very weak passwords hashing scheme. Given a hashed password, it won't be too difficult to reverse it into a list of possible plain text passwords (the reversing algorithm is essentially the T9 algorithm.

– Lie Ryan
9 hours ago





This looks like a very weak passwords hashing scheme. Given a hashed password, it won't be too difficult to reverse it into a list of possible plain text passwords (the reversing algorithm is essentially the T9 algorithm.

– Lie Ryan
9 hours ago













@TobiNary To cite the card (translated) "It is often too easy for hackers to acquire personal information. The reason: Passwords that we can easily remember aren't cryptic. They are often common names or words like "Snowden" or "Admin"", this card tries to fix this by making easy to remember passwords crpytic.

– izlin
9 hours ago





@TobiNary To cite the card (translated) "It is often too easy for hackers to acquire personal information. The reason: Passwords that we can easily remember aren't cryptic. They are often common names or words like "Snowden" or "Admin"", this card tries to fix this by making easy to remember passwords crpytic.

– izlin
9 hours ago













@izlin do you have the German Text as well? This does seem like first class sarcasm.

– Tobi Nary
7 hours ago





@izlin do you have the German Text as well? This does seem like first class sarcasm.

– Tobi Nary
7 hours ago




1




1





@TobiNary I actually explain this very concept right in the beginning of my answer. Yes I absolutely agree that teaching people to use passwords is way better than to rely on what is effectively a crutch. And this may be perfectly fine for a 28-year-old college graduate with a MSc. in Engineering. But for the 57-year-old Karen from Accounting, this proves to be substantially more difficult.

– MechMK1
3 hours ago





@TobiNary I actually explain this very concept right in the beginning of my answer. Yes I absolutely agree that teaching people to use passwords is way better than to rely on what is effectively a crutch. And this may be perfectly fine for a 28-year-old college graduate with a MSc. in Engineering. But for the 57-year-old Karen from Accounting, this proves to be substantially more difficult.

– MechMK1
3 hours ago










2 Answers
2






active

oldest

votes


















12
















Full disclosure: I work for a company, which distributes such cards. This answer however is my own personal opinion of them.





The idea of these cards is that some users are just really bad at remembering passwords or pass phrases. The naïve approach would be to tell users "Just get better at remembering passwords", but experience has shown that such advice is counter-productive with some users.



Their memory seems to be hard-wired to only recall simple words, which probably have something to do with their work. So somebody working in a car factory may remember a word such as Engine.



Engine, of course, is a terrible password - both in length and entropy. So the "Kryptonizer" or similarly named cards try to add both of those.



Length is added by the prefix, 4uR=? in this case. It immediately increases the password length by 5 characters, bumping a 6 character password up to an 11 character password. Not perfect, but an improvement.



Entropy is added by substituting each character with a randomly chosen character. Not exactly a 1:1 substitution, but close enough. Since each card is unique, one can't build a pre-made rule on how to mangle each dictionary phrase.



In this example, Engine would turn into 4uR=?1YFFY1. Is this a good password? Probably not great, but certainly a lot better than Engine.



Problems with this scheme



Of course, it's not a perfect system. A good passphrase can't be replaced by a little paper card. Since three input characters map to one output character, the resulting password loses entropy instead of gaining it. The net entropy gain is that attackers can't use dictionary attacks as easily anymore. In order to do that, they would need to gain access to the mapping or perform an exhaustive search. If an attacker knows that such a card was used, they can use this to their advantage to speed up an exhaustive search.



Furthermore, users are expected to keep their card around, and many will probably leave it on their desk, under their keyboard or in similar bad locations. If they lose their card, they will probably lose their password too. They will need a new card, and change their password as well, which is not that good for usability.



Summary



So, is this a good system? Ultimately, I would say you have to judge it in the context of what it is designed to do. It's an aid for a specific group of users, who would otherwise use ungodly terrible passwords. And helping users choose marginally better passwords for a negligible cost is a good thing, in my opinion. Of course, it is not a silver bullet that magically solves the problem of credential storage and generation.



If possible, always use a password manager, let it generate long, high-entropy passwords and store them for you in a safe manner.



If this is not possible (e.g. for OS logins), I recommend either using Diceware or creating a long, nonsensical sentence, such as TheGreenLightFromOurEyesShinesThroughTheMirrorOfTime.. Just ensure that such a sentence isn't taken from a book or movie.






share|improve this answer



























  • You may as well just print a proper randomly-generated 16-character string on the card for them to use as their password.

    – OrangeDog
    14 mins ago











  • @OrangeDog No, because then you have to trust the card designer with your (full) password.

    – Jon Bentley
    7 mins ago











  • @OrangeDog not only that but anybody who sees the card would have your password!

    – Digital Chris
    1 min ago


















5















It's always depends on what you compare it with! What is the realistic alternative, that users would actually use, to using this card?



Clearly, 4uR=?F133Y9Yi31 is a much better password than HELLOWORLD. If you are giving this card to a non-techie whos not going to pick good passwords or use a password manager anyway, then it's an improvement.



On the other hand, using this system is much worse than just picking a random 16 letter password that you'll never remember and storing it in your password manager. An attacker who knows what letters there are on the card (e.g. by looking at leaked passwords from the same user) could easily crack it - suddenly it is only 40 bits of entropy!



So is this a good idea for people who might use a password manager? No, absolutely not. For your grandpa? Maybe! Don't let perfect be the enemy of the good.






share|improve this answer



























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "162"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    noCode: true, onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );






    izlin is a new contributor. Be nice, and check out our Code of Conduct.









    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsecurity.stackexchange.com%2fquestions%2f215919%2fis-this-password-scheme-legit%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    12
















    Full disclosure: I work for a company, which distributes such cards. This answer however is my own personal opinion of them.





    The idea of these cards is that some users are just really bad at remembering passwords or pass phrases. The naïve approach would be to tell users "Just get better at remembering passwords", but experience has shown that such advice is counter-productive with some users.



    Their memory seems to be hard-wired to only recall simple words, which probably have something to do with their work. So somebody working in a car factory may remember a word such as Engine.



    Engine, of course, is a terrible password - both in length and entropy. So the "Kryptonizer" or similarly named cards try to add both of those.



    Length is added by the prefix, 4uR=? in this case. It immediately increases the password length by 5 characters, bumping a 6 character password up to an 11 character password. Not perfect, but an improvement.



    Entropy is added by substituting each character with a randomly chosen character. Not exactly a 1:1 substitution, but close enough. Since each card is unique, one can't build a pre-made rule on how to mangle each dictionary phrase.



    In this example, Engine would turn into 4uR=?1YFFY1. Is this a good password? Probably not great, but certainly a lot better than Engine.



    Problems with this scheme



    Of course, it's not a perfect system. A good passphrase can't be replaced by a little paper card. Since three input characters map to one output character, the resulting password loses entropy instead of gaining it. The net entropy gain is that attackers can't use dictionary attacks as easily anymore. In order to do that, they would need to gain access to the mapping or perform an exhaustive search. If an attacker knows that such a card was used, they can use this to their advantage to speed up an exhaustive search.



    Furthermore, users are expected to keep their card around, and many will probably leave it on their desk, under their keyboard or in similar bad locations. If they lose their card, they will probably lose their password too. They will need a new card, and change their password as well, which is not that good for usability.



    Summary



    So, is this a good system? Ultimately, I would say you have to judge it in the context of what it is designed to do. It's an aid for a specific group of users, who would otherwise use ungodly terrible passwords. And helping users choose marginally better passwords for a negligible cost is a good thing, in my opinion. Of course, it is not a silver bullet that magically solves the problem of credential storage and generation.



    If possible, always use a password manager, let it generate long, high-entropy passwords and store them for you in a safe manner.



    If this is not possible (e.g. for OS logins), I recommend either using Diceware or creating a long, nonsensical sentence, such as TheGreenLightFromOurEyesShinesThroughTheMirrorOfTime.. Just ensure that such a sentence isn't taken from a book or movie.






    share|improve this answer



























    • You may as well just print a proper randomly-generated 16-character string on the card for them to use as their password.

      – OrangeDog
      14 mins ago











    • @OrangeDog No, because then you have to trust the card designer with your (full) password.

      – Jon Bentley
      7 mins ago











    • @OrangeDog not only that but anybody who sees the card would have your password!

      – Digital Chris
      1 min ago















    12
















    Full disclosure: I work for a company, which distributes such cards. This answer however is my own personal opinion of them.





    The idea of these cards is that some users are just really bad at remembering passwords or pass phrases. The naïve approach would be to tell users "Just get better at remembering passwords", but experience has shown that such advice is counter-productive with some users.



    Their memory seems to be hard-wired to only recall simple words, which probably have something to do with their work. So somebody working in a car factory may remember a word such as Engine.



    Engine, of course, is a terrible password - both in length and entropy. So the "Kryptonizer" or similarly named cards try to add both of those.



    Length is added by the prefix, 4uR=? in this case. It immediately increases the password length by 5 characters, bumping a 6 character password up to an 11 character password. Not perfect, but an improvement.



    Entropy is added by substituting each character with a randomly chosen character. Not exactly a 1:1 substitution, but close enough. Since each card is unique, one can't build a pre-made rule on how to mangle each dictionary phrase.



    In this example, Engine would turn into 4uR=?1YFFY1. Is this a good password? Probably not great, but certainly a lot better than Engine.



    Problems with this scheme



    Of course, it's not a perfect system. A good passphrase can't be replaced by a little paper card. Since three input characters map to one output character, the resulting password loses entropy instead of gaining it. The net entropy gain is that attackers can't use dictionary attacks as easily anymore. In order to do that, they would need to gain access to the mapping or perform an exhaustive search. If an attacker knows that such a card was used, they can use this to their advantage to speed up an exhaustive search.



    Furthermore, users are expected to keep their card around, and many will probably leave it on their desk, under their keyboard or in similar bad locations. If they lose their card, they will probably lose their password too. They will need a new card, and change their password as well, which is not that good for usability.



    Summary



    So, is this a good system? Ultimately, I would say you have to judge it in the context of what it is designed to do. It's an aid for a specific group of users, who would otherwise use ungodly terrible passwords. And helping users choose marginally better passwords for a negligible cost is a good thing, in my opinion. Of course, it is not a silver bullet that magically solves the problem of credential storage and generation.



    If possible, always use a password manager, let it generate long, high-entropy passwords and store them for you in a safe manner.



    If this is not possible (e.g. for OS logins), I recommend either using Diceware or creating a long, nonsensical sentence, such as TheGreenLightFromOurEyesShinesThroughTheMirrorOfTime.. Just ensure that such a sentence isn't taken from a book or movie.






    share|improve this answer



























    • You may as well just print a proper randomly-generated 16-character string on the card for them to use as their password.

      – OrangeDog
      14 mins ago











    • @OrangeDog No, because then you have to trust the card designer with your (full) password.

      – Jon Bentley
      7 mins ago











    • @OrangeDog not only that but anybody who sees the card would have your password!

      – Digital Chris
      1 min ago













    12














    12










    12










    Full disclosure: I work for a company, which distributes such cards. This answer however is my own personal opinion of them.





    The idea of these cards is that some users are just really bad at remembering passwords or pass phrases. The naïve approach would be to tell users "Just get better at remembering passwords", but experience has shown that such advice is counter-productive with some users.



    Their memory seems to be hard-wired to only recall simple words, which probably have something to do with their work. So somebody working in a car factory may remember a word such as Engine.



    Engine, of course, is a terrible password - both in length and entropy. So the "Kryptonizer" or similarly named cards try to add both of those.



    Length is added by the prefix, 4uR=? in this case. It immediately increases the password length by 5 characters, bumping a 6 character password up to an 11 character password. Not perfect, but an improvement.



    Entropy is added by substituting each character with a randomly chosen character. Not exactly a 1:1 substitution, but close enough. Since each card is unique, one can't build a pre-made rule on how to mangle each dictionary phrase.



    In this example, Engine would turn into 4uR=?1YFFY1. Is this a good password? Probably not great, but certainly a lot better than Engine.



    Problems with this scheme



    Of course, it's not a perfect system. A good passphrase can't be replaced by a little paper card. Since three input characters map to one output character, the resulting password loses entropy instead of gaining it. The net entropy gain is that attackers can't use dictionary attacks as easily anymore. In order to do that, they would need to gain access to the mapping or perform an exhaustive search. If an attacker knows that such a card was used, they can use this to their advantage to speed up an exhaustive search.



    Furthermore, users are expected to keep their card around, and many will probably leave it on their desk, under their keyboard or in similar bad locations. If they lose their card, they will probably lose their password too. They will need a new card, and change their password as well, which is not that good for usability.



    Summary



    So, is this a good system? Ultimately, I would say you have to judge it in the context of what it is designed to do. It's an aid for a specific group of users, who would otherwise use ungodly terrible passwords. And helping users choose marginally better passwords for a negligible cost is a good thing, in my opinion. Of course, it is not a silver bullet that magically solves the problem of credential storage and generation.



    If possible, always use a password manager, let it generate long, high-entropy passwords and store them for you in a safe manner.



    If this is not possible (e.g. for OS logins), I recommend either using Diceware or creating a long, nonsensical sentence, such as TheGreenLightFromOurEyesShinesThroughTheMirrorOfTime.. Just ensure that such a sentence isn't taken from a book or movie.






    share|improve this answer
















    Full disclosure: I work for a company, which distributes such cards. This answer however is my own personal opinion of them.





    The idea of these cards is that some users are just really bad at remembering passwords or pass phrases. The naïve approach would be to tell users "Just get better at remembering passwords", but experience has shown that such advice is counter-productive with some users.



    Their memory seems to be hard-wired to only recall simple words, which probably have something to do with their work. So somebody working in a car factory may remember a word such as Engine.



    Engine, of course, is a terrible password - both in length and entropy. So the "Kryptonizer" or similarly named cards try to add both of those.



    Length is added by the prefix, 4uR=? in this case. It immediately increases the password length by 5 characters, bumping a 6 character password up to an 11 character password. Not perfect, but an improvement.



    Entropy is added by substituting each character with a randomly chosen character. Not exactly a 1:1 substitution, but close enough. Since each card is unique, one can't build a pre-made rule on how to mangle each dictionary phrase.



    In this example, Engine would turn into 4uR=?1YFFY1. Is this a good password? Probably not great, but certainly a lot better than Engine.



    Problems with this scheme



    Of course, it's not a perfect system. A good passphrase can't be replaced by a little paper card. Since three input characters map to one output character, the resulting password loses entropy instead of gaining it. The net entropy gain is that attackers can't use dictionary attacks as easily anymore. In order to do that, they would need to gain access to the mapping or perform an exhaustive search. If an attacker knows that such a card was used, they can use this to their advantage to speed up an exhaustive search.



    Furthermore, users are expected to keep their card around, and many will probably leave it on their desk, under their keyboard or in similar bad locations. If they lose their card, they will probably lose their password too. They will need a new card, and change their password as well, which is not that good for usability.



    Summary



    So, is this a good system? Ultimately, I would say you have to judge it in the context of what it is designed to do. It's an aid for a specific group of users, who would otherwise use ungodly terrible passwords. And helping users choose marginally better passwords for a negligible cost is a good thing, in my opinion. Of course, it is not a silver bullet that magically solves the problem of credential storage and generation.



    If possible, always use a password manager, let it generate long, high-entropy passwords and store them for you in a safe manner.



    If this is not possible (e.g. for OS logins), I recommend either using Diceware or creating a long, nonsensical sentence, such as TheGreenLightFromOurEyesShinesThroughTheMirrorOfTime.. Just ensure that such a sentence isn't taken from a book or movie.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited 8 hours ago

























    answered 9 hours ago









    MechMK1MechMK1

    7,1473 gold badges25 silver badges47 bronze badges




    7,1473 gold badges25 silver badges47 bronze badges















    • You may as well just print a proper randomly-generated 16-character string on the card for them to use as their password.

      – OrangeDog
      14 mins ago











    • @OrangeDog No, because then you have to trust the card designer with your (full) password.

      – Jon Bentley
      7 mins ago











    • @OrangeDog not only that but anybody who sees the card would have your password!

      – Digital Chris
      1 min ago

















    • You may as well just print a proper randomly-generated 16-character string on the card for them to use as their password.

      – OrangeDog
      14 mins ago











    • @OrangeDog No, because then you have to trust the card designer with your (full) password.

      – Jon Bentley
      7 mins ago











    • @OrangeDog not only that but anybody who sees the card would have your password!

      – Digital Chris
      1 min ago
















    You may as well just print a proper randomly-generated 16-character string on the card for them to use as their password.

    – OrangeDog
    14 mins ago





    You may as well just print a proper randomly-generated 16-character string on the card for them to use as their password.

    – OrangeDog
    14 mins ago













    @OrangeDog No, because then you have to trust the card designer with your (full) password.

    – Jon Bentley
    7 mins ago





    @OrangeDog No, because then you have to trust the card designer with your (full) password.

    – Jon Bentley
    7 mins ago













    @OrangeDog not only that but anybody who sees the card would have your password!

    – Digital Chris
    1 min ago





    @OrangeDog not only that but anybody who sees the card would have your password!

    – Digital Chris
    1 min ago













    5















    It's always depends on what you compare it with! What is the realistic alternative, that users would actually use, to using this card?



    Clearly, 4uR=?F133Y9Yi31 is a much better password than HELLOWORLD. If you are giving this card to a non-techie whos not going to pick good passwords or use a password manager anyway, then it's an improvement.



    On the other hand, using this system is much worse than just picking a random 16 letter password that you'll never remember and storing it in your password manager. An attacker who knows what letters there are on the card (e.g. by looking at leaked passwords from the same user) could easily crack it - suddenly it is only 40 bits of entropy!



    So is this a good idea for people who might use a password manager? No, absolutely not. For your grandpa? Maybe! Don't let perfect be the enemy of the good.






    share|improve this answer





























      5















      It's always depends on what you compare it with! What is the realistic alternative, that users would actually use, to using this card?



      Clearly, 4uR=?F133Y9Yi31 is a much better password than HELLOWORLD. If you are giving this card to a non-techie whos not going to pick good passwords or use a password manager anyway, then it's an improvement.



      On the other hand, using this system is much worse than just picking a random 16 letter password that you'll never remember and storing it in your password manager. An attacker who knows what letters there are on the card (e.g. by looking at leaked passwords from the same user) could easily crack it - suddenly it is only 40 bits of entropy!



      So is this a good idea for people who might use a password manager? No, absolutely not. For your grandpa? Maybe! Don't let perfect be the enemy of the good.






      share|improve this answer



























        5














        5










        5









        It's always depends on what you compare it with! What is the realistic alternative, that users would actually use, to using this card?



        Clearly, 4uR=?F133Y9Yi31 is a much better password than HELLOWORLD. If you are giving this card to a non-techie whos not going to pick good passwords or use a password manager anyway, then it's an improvement.



        On the other hand, using this system is much worse than just picking a random 16 letter password that you'll never remember and storing it in your password manager. An attacker who knows what letters there are on the card (e.g. by looking at leaked passwords from the same user) could easily crack it - suddenly it is only 40 bits of entropy!



        So is this a good idea for people who might use a password manager? No, absolutely not. For your grandpa? Maybe! Don't let perfect be the enemy of the good.






        share|improve this answer













        It's always depends on what you compare it with! What is the realistic alternative, that users would actually use, to using this card?



        Clearly, 4uR=?F133Y9Yi31 is a much better password than HELLOWORLD. If you are giving this card to a non-techie whos not going to pick good passwords or use a password manager anyway, then it's an improvement.



        On the other hand, using this system is much worse than just picking a random 16 letter password that you'll never remember and storing it in your password manager. An attacker who knows what letters there are on the card (e.g. by looking at leaked passwords from the same user) could easily crack it - suddenly it is only 40 bits of entropy!



        So is this a good idea for people who might use a password manager? No, absolutely not. For your grandpa? Maybe! Don't let perfect be the enemy of the good.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 8 hours ago









        AndersAnders

        51.6k22 gold badges147 silver badges173 bronze badges




        51.6k22 gold badges147 silver badges173 bronze badges























            izlin is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            izlin is a new contributor. Be nice, and check out our Code of Conduct.












            izlin is a new contributor. Be nice, and check out our Code of Conduct.











            izlin is a new contributor. Be nice, and check out our Code of Conduct.














            Thanks for contributing an answer to Information Security Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsecurity.stackexchange.com%2fquestions%2f215919%2fis-this-password-scheme-legit%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

            Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

            Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367