Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Password De-Complexity

Password De-Complexity

Scheduled Pinned Locked Moved The Lounge
algorithmsquestion
88 Posts 29 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Z ZurdoDev

    raddevus wrote:

    more difficult to remember for users.

    That's fine. So, don't make it required. My problem is they are preventing you from using a special character.

    There are only 10 types of people in the world, those who understand binary and those who don't.

    R Offline
    R Offline
    raddevus
    wrote on last edited by
    #13

    Oh, very good point. That's ridiculous that they don't allow it. What? I use my app exclusively for my own passwords and I'm always annoyed when sites tell me that I have to use a special char, because with my app my passwords now look like: 1. cf82bb8b015707c5cef11942b88bb058d3795f4dcae551e65ea72891333a1384 2. ea50612a6d5dde56c7a826cc03317e99c2f2f5547b0bd0b5e985ac27883b8242 Those are extremely strong because they are long and not based upon words. Those silly password checkers will say they are of medium complexity. :sigh: The industry has a lot to learn.

    My book, Launch Your Android App, is available at Amazon.com (only $2.99USD over 350 pages). Get my Android app on Google Play and F*orget All Your Passwords.

    Z H P 3 Replies Last reply
    0
    • R raddevus

      Oh, very good point. That's ridiculous that they don't allow it. What? I use my app exclusively for my own passwords and I'm always annoyed when sites tell me that I have to use a special char, because with my app my passwords now look like: 1. cf82bb8b015707c5cef11942b88bb058d3795f4dcae551e65ea72891333a1384 2. ea50612a6d5dde56c7a826cc03317e99c2f2f5547b0bd0b5e985ac27883b8242 Those are extremely strong because they are long and not based upon words. Those silly password checkers will say they are of medium complexity. :sigh: The industry has a lot to learn.

      My book, Launch Your Android App, is available at Amazon.com (only $2.99USD over 350 pages). Get my Android app on Google Play and F*orget All Your Passwords.

      Z Offline
      Z Offline
      ZurdoDev
      wrote on last edited by
      #14

      raddevus wrote:

      Those silly password checkers will say they are of medium complexity.

      Ya, sure. I was only off by one character when I tried to guess your password. :laugh:

      There are only 10 types of people in the world, those who understand binary and those who don't.

      R K 2 Replies Last reply
      0
      • Z ZurdoDev

        raddevus wrote:

        more difficult to remember for users.

        That's fine. So, don't make it required. My problem is they are preventing you from using a special character.

        There are only 10 types of people in the world, those who understand binary and those who don't.

        W Offline
        W Offline
        W Balboos GHB
        wrote on last edited by
        #15

        Exactly! Why should people with real keyboards suffer because of the witless hordes whose entire life is enshrined in a hand-held device? This also implies that yes, indeed, I've noticed this. There's even a financial institution I used that doesn't allow special characters (like an underscore!) in usernames or passwords. Well - in a world that targets dumbing down as much as possible I raised my kids to be knowers-of-things (didn't let them use calculators until HS, and then, only when essential). Essentially, a greedy concept that my progeny will be lions amongst the sheep.

        Ravings en masse^

        "The difference between genius and stupidity is that genius has its limits." - Albert Einstein

        "If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010

        OriginalGriffO 1 Reply Last reply
        0
        • Z ZurdoDev

          raddevus wrote:

          Those silly password checkers will say they are of medium complexity.

          Ya, sure. I was only off by one character when I tried to guess your password. :laugh:

          There are only 10 types of people in the world, those who understand binary and those who don't.

          R Offline
          R Offline
          raddevus
          wrote on last edited by
          #16

          You have the fantastic ability of generating SHA256 hashes completely from memory. :) There are only more of them than there are stars in the universe so it's easy. :laugh:

          My book, Launch Your Android App, is available at Amazon.com (only $2.99USD over 350 pages). Get my Android app on Google Play and F*orget All Your Passwords.

          Z 1 Reply Last reply
          0
          • Z ZurdoDev

            I've noticed with several sites I have an account with that they no longer allow special characters in passwords. That seems like a move in the wrong direction. Special characters allow passwords to be more complex so I wonder why some are making this change. Has anyone else noticed this?

            There are only 10 types of people in the world, those who understand binary and those who don't.

            F Offline
            F Offline
            F ES Sitecore
            wrote on last edited by
            #17

            When people use funny characters in their password my code doesn't work

            string sql = "insert into users (username, password) values ('" + TextBox19.Text + "', '" + TextBox6.Text + "')";

            How can I stop users using funny characters?

            Z 1 Reply Last reply
            0
            • Z ZurdoDev

              I've noticed with several sites I have an account with that they no longer allow special characters in passwords. That seems like a move in the wrong direction. Special characters allow passwords to be more complex so I wonder why some are making this change. Has anyone else noticed this?

              There are only 10 types of people in the world, those who understand binary and those who don't.

              Richard DeemingR Offline
              Richard DeemingR Offline
              Richard Deeming
              wrote on last edited by
              #18

              Because they want you to read your password over the phone to one of their support drones, and "special" characters make that harder to do? Because their code is vulnerable to SQLi, and they don't want you to enter a password of Robert'); DROP TABLE Students;--? If you ask them, they'll probably tell you it's to increase the security of the site, and they'd lose their certification if they removed the restriction. (Don't bother asking what certification; they won't be able to tell you.) That'll also be the reason why they don't let you paste your password from a password manager; why they restrict the password to a maximum of 8 characters; and why the password isn't case-sensitive. :doh: Whatever the reason, it suggests they're not handling and storing your data properly, and you should probably avoid using that site. If you can't avoid it, make sure you use a unique password that you don't use on any other site, because it's almost certainly going to be stored in plain text. And if at all possible, avoid giving them any personal information, since it's going to end up on a "pastebin" dump before long.


              "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

              "These people looked deep within my soul and assigned me a number based on the order in which I joined" - Homer

              1 Reply Last reply
              0
              • W W Balboos GHB

                Exactly! Why should people with real keyboards suffer because of the witless hordes whose entire life is enshrined in a hand-held device? This also implies that yes, indeed, I've noticed this. There's even a financial institution I used that doesn't allow special characters (like an underscore!) in usernames or passwords. Well - in a world that targets dumbing down as much as possible I raised my kids to be knowers-of-things (didn't let them use calculators until HS, and then, only when essential). Essentially, a greedy concept that my progeny will be lions amongst the sheep.

                Ravings en masse^

                "The difference between genius and stupidity is that genius has its limits." - Albert Einstein

                "If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010

                OriginalGriffO Offline
                OriginalGriffO Offline
                OriginalGriff
                wrote on last edited by
                #19

                And a couple I've noticed that won't allow a hyphen in an email address... :sigh: No prizes for guessing which "special character" is in my domain name?

                Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

                "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
                "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

                W K 2 Replies Last reply
                0
                • OriginalGriffO OriginalGriff

                  And a couple I've noticed that won't allow a hyphen in an email address... :sigh: No prizes for guessing which "special character" is in my domain name?

                  Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

                  W Offline
                  W Offline
                  W Balboos GHB
                  wrote on last edited by
                  #20

                  OriginalGriff wrote:

                  won't allow a hyphen in an email address... :sigh:

                  That is bad (code word for stupid) I suppose it can get worse (polite way of saying stupider): I've a domain name ending in .info - which is rejected as invalid by a number of places. I didn't test to see what top level domains they think are real - but, well, as we well know: There's no limit to or cure for stupid.

                  Ravings en masse^

                  "The difference between genius and stupidity is that genius has its limits." - Albert Einstein

                  "If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010

                  OriginalGriffO 1 Reply Last reply
                  0
                  • R raddevus

                    You have the fantastic ability of generating SHA256 hashes completely from memory. :) There are only more of them than there are stars in the universe so it's easy. :laugh:

                    My book, Launch Your Android App, is available at Amazon.com (only $2.99USD over 350 pages). Get my Android app on Google Play and F*orget All Your Passwords.

                    Z Offline
                    Z Offline
                    ZurdoDev
                    wrote on last edited by
                    #21

                    raddevus wrote:

                    There are only more of them than there are stars in the universe so it's easy

                    Ya, I needed a challenge after I counted all the stars. :^)

                    There are only 10 types of people in the world, those who understand binary and those who don't.

                    R enhzflepE 2 Replies Last reply
                    0
                    • F F ES Sitecore

                      When people use funny characters in their password my code doesn't work

                      string sql = "insert into users (username, password) values ('" + TextBox19.Text + "', '" + TextBox6.Text + "')";

                      How can I stop users using funny characters?

                      Z Offline
                      Z Offline
                      ZurdoDev
                      wrote on last edited by
                      #22

                      I think you may have just explained the problem. :laugh: :laugh:

                      There are only 10 types of people in the world, those who understand binary and those who don't.

                      L 1 Reply Last reply
                      0
                      • R raddevus

                        actually, they've determined that the hackers can easily replicate shoving in those few extra special characters into their password generators and they only serve to make the passwords more difficult to remember for users. The best information on passwords is that they should be : 1. much longer (my application generates 64 char passwords based upon the SHA256 hash) 2. not based upon words -- this protects from any kind of dictionary attack -- which basically all the hacker attacks which attempt to reverse passwords are based upon I've just written an blog article on this recently (pulled from my blog) ==> How Hackers Crack Passwords (part 1)[^] The paradigm shift that people can't get over with C'Ya Pass is that you never have to memorize a password again and they aren't stored anywhere. They're generated every time for your use. I apologize if this sounded a bit like gratuitous self promotion, but I'm really passionate about this whole (stupid) password thing. Passwords are terrible.

                        My book, Launch Your Android App, is available at Amazon.com (only $2.99USD over 350 pages). Get my Android app on Google Play and F*orget All Your Passwords.

                        D Offline
                        D Offline
                        den2k88
                        wrote on last edited by
                        #23

                        Cool, and exactly how one does remember that password? On a device, which may be unavailable at any time? Oh right, you can put it on the "cloud", and how do you protect the access to that account? Basically a slighlty altered and less reliable folded paper with passwords in the wallet.

                        DURA LEX, SED LEX GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- ++>+++ y+++*      Weapons extension: ma- k++ F+2 X If you think 'goto' is evil, try writing an Assembly program without JMP. -- TNCaver When I was six, there were no ones and zeroes - only zeroes. And not all of them worked. -- Ravi Bhavnani

                        R P 2 Replies Last reply
                        0
                        • R raddevus

                          Oh, very good point. That's ridiculous that they don't allow it. What? I use my app exclusively for my own passwords and I'm always annoyed when sites tell me that I have to use a special char, because with my app my passwords now look like: 1. cf82bb8b015707c5cef11942b88bb058d3795f4dcae551e65ea72891333a1384 2. ea50612a6d5dde56c7a826cc03317e99c2f2f5547b0bd0b5e985ac27883b8242 Those are extremely strong because they are long and not based upon words. Those silly password checkers will say they are of medium complexity. :sigh: The industry has a lot to learn.

                          My book, Launch Your Android App, is available at Amazon.com (only $2.99USD over 350 pages). Get my Android app on Google Play and F*orget All Your Passwords.

                          H Offline
                          H Offline
                          HobbyProggy
                          wrote on last edited by
                          #24

                          raddevus wrote:

                          Those are extremely strong because they are long and not based upon words. Those silly password checkers will say they are of medium complexity.

                          They ain't silly... 12 chars with 26 possibilities (9,54e16 combinations) 10 chars with 52 possibilities (1,445e17 combinations) Your length is bullish when it comes to complexity ;)

                          Rules for the FOSW ![^]

                          if(this.signature != "")
                          {
                          MessageBox.Show("This is my signature: " + Environment.NewLine + signature);
                          }
                          else
                          {
                          MessageBox.Show("404-Signature not found");
                          }

                          1 Reply Last reply
                          0
                          • Z ZurdoDev

                            raddevus wrote:

                            There are only more of them than there are stars in the universe so it's easy

                            Ya, I needed a challenge after I counted all the stars. :^)

                            There are only 10 types of people in the world, those who understand binary and those who don't.

                            R Offline
                            R Offline
                            raddevus
                            wrote on last edited by
                            #25

                            RyanDev wrote:

                            Ya, I needed a challenge after I counted all the stars

                            :laugh:

                            My book, Launch Your Android App, is available at Amazon.com (only $2.99USD over 350 pages). Get my Android app on Google Play and F*orget All Your Passwords.

                            1 Reply Last reply
                            0
                            • Z ZurdoDev

                              I've noticed with several sites I have an account with that they no longer allow special characters in passwords. That seems like a move in the wrong direction. Special characters allow passwords to be more complex so I wonder why some are making this change. Has anyone else noticed this?

                              There are only 10 types of people in the world, those who understand binary and those who don't.

                              S Offline
                              S Offline
                              Slacker007
                              wrote on last edited by
                              #26

                              All my passwords are based on a special secret alphabet that I crafted in my voodoo laboratory. Just saying...

                              1 Reply Last reply
                              0
                              • Z ZurdoDev

                                I've noticed with several sites I have an account with that they no longer allow special characters in passwords. That seems like a move in the wrong direction. Special characters allow passwords to be more complex so I wonder why some are making this change. Has anyone else noticed this?

                                There are only 10 types of people in the world, those who understand binary and those who don't.

                                J Offline
                                J Offline
                                Jochen Arndt
                                wrote on last edited by
                                #27

                                Just a few weeks ago a new password was rejected because it contained a - (hex 2D). Using an underscore was OK. So, yes I noticed it (and thought WTF). Maybe the passwords has to be piped between shell commands, then passed as shell command parameters, HTML/XML encoded and decoded, and finally passed to a SQL query. To avoid escaping all the processing specific reserved characters using processing specific escaping it is just simpler to disallow them.

                                D F 2 Replies Last reply
                                0
                                • D den2k88

                                  Cool, and exactly how one does remember that password? On a device, which may be unavailable at any time? Oh right, you can put it on the "cloud", and how do you protect the access to that account? Basically a slighlty altered and less reliable folded paper with passwords in the wallet.

                                  DURA LEX, SED LEX GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- ++>+++ y+++*      Weapons extension: ma- k++ F+2 X If you think 'goto' is evil, try writing an Assembly program without JMP. -- TNCaver When I was six, there were no ones and zeroes - only zeroes. And not all of them worked. -- Ravi Bhavnani

                                  R Offline
                                  R Offline
                                  raddevus
                                  wrote on last edited by
                                  #28

                                  No, there is no cloud with C'Ya Pass. Here's how it works. 1. You add unique site/keys to the app. That is a text-based string that will help you remember what the password is associated with. The app hashes that value. 2. You draw a pattern in the grid. The original hash is salted with the generated value from the grid of the pattern that you drew. Now, each time you select your site/key and draw your exact pattern then the unique hash is generated. Your passwords are not stored anywhere. This is the paradigm shift. They are generated every time you select the site/key and draw the pattern. Your password is cryptographically strong since it is a SHA256 hash. Plus it is long (64 chars) and just random chars and numbers. Thanks for asking.

                                  My book, Launch Your Android App, is available at Amazon.com (only $2.99USD over 350 pages). Get my Android app on Google Play and F*orget All Your Passwords.

                                  D 1 Reply Last reply
                                  0
                                  • Z ZurdoDev

                                    raddevus wrote:

                                    There are only more of them than there are stars in the universe so it's easy

                                    Ya, I needed a challenge after I counted all the stars. :^)

                                    There are only 10 types of people in the world, those who understand binary and those who don't.

                                    enhzflepE Offline
                                    enhzflepE Offline
                                    enhzflep
                                    wrote on last edited by
                                    #29

                                    :laugh: Dont s'pose you changed your surname by deed-poll at marriage and that your wife has a father-in-law called Chuck, does she?

                                    1 Reply Last reply
                                    0
                                    • R raddevus

                                      No, there is no cloud with C'Ya Pass. Here's how it works. 1. You add unique site/keys to the app. That is a text-based string that will help you remember what the password is associated with. The app hashes that value. 2. You draw a pattern in the grid. The original hash is salted with the generated value from the grid of the pattern that you drew. Now, each time you select your site/key and draw your exact pattern then the unique hash is generated. Your passwords are not stored anywhere. This is the paradigm shift. They are generated every time you select the site/key and draw the pattern. Your password is cryptographically strong since it is a SHA256 hash. Plus it is long (64 chars) and just random chars and numbers. Thanks for asking.

                                      My book, Launch Your Android App, is available at Amazon.com (only $2.99USD over 350 pages). Get my Android app on Google Play and F*orget All Your Passwords.

                                      D Offline
                                      D Offline
                                      den2k88
                                      wrote on last edited by
                                      #30

                                      So it is a pattern to be drawn each time, this is fairly cool. It still requires a device with that app, which may be unavailable (ever been mugged? Or with a phone TFU?). A good 10-14 password unique to the site is more than enough. Usually my only problem is remembering if I registered as den2k or den2k88 (many site don't accept user names with less than 6 characters).

                                      DURA LEX, SED LEX GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- ++>+++ y+++*      Weapons extension: ma- k++ F+2 X If you think 'goto' is evil, try writing an Assembly program without JMP. -- TNCaver When I was six, there were no ones and zeroes - only zeroes. And not all of them worked. -- Ravi Bhavnani

                                      R F 2 Replies Last reply
                                      0
                                      • J Jochen Arndt

                                        Just a few weeks ago a new password was rejected because it contained a - (hex 2D). Using an underscore was OK. So, yes I noticed it (and thought WTF). Maybe the passwords has to be piped between shell commands, then passed as shell command parameters, HTML/XML encoded and decoded, and finally passed to a SQL query. To avoid escaping all the processing specific reserved characters using processing specific escaping it is just simpler to disallow them.

                                        D Offline
                                        D Offline
                                        den2k88
                                        wrote on last edited by
                                        #31

                                        You forgot the "signed in triplicate, sent in, sent back, queried, lost, found, subjected to public inquiry, lost again, and finally buried in soft peat for three months and recycled as firelighters" part. Sadly many sites are "managed" just like that.

                                        DURA LEX, SED LEX GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- ++>+++ y+++*      Weapons extension: ma- k++ F+2 X If you think 'goto' is evil, try writing an Assembly program without JMP. -- TNCaver When I was six, there were no ones and zeroes - only zeroes. And not all of them worked. -- Ravi Bhavnani

                                        F 1 Reply Last reply
                                        0
                                        • D den2k88

                                          So it is a pattern to be drawn each time, this is fairly cool. It still requires a device with that app, which may be unavailable (ever been mugged? Or with a phone TFU?). A good 10-14 password unique to the site is more than enough. Usually my only problem is remembering if I registered as den2k or den2k88 (many site don't accept user names with less than 6 characters).

                                          DURA LEX, SED LEX GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- ++>+++ y+++*      Weapons extension: ma- k++ F+2 X If you think 'goto' is evil, try writing an Assembly program without JMP. -- TNCaver When I was six, there were no ones and zeroes - only zeroes. And not all of them worked. -- Ravi Bhavnani

                                          R Offline
                                          R Offline
                                          raddevus
                                          wrote on last edited by
                                          #32

                                          den2k88 wrote:

                                          It still requires a device with that app, which may be unavailable

                                          That is correct. I have it available on Windows and Android and coming soon (within a week) to iOS (iphone/ipad). Also, there is another compelling part to all of this. I've created a bluetooth device that you attach to your computer's (works on Apple, Windows and Linux) USB port. That device has a bluetooth module that you can pair with your phone, device, etc. Then, you can have the app just on your phone and press a button in C'Ya Pass app and it will type the password on your computer. I use it every day and it is so much fun. It allows you to login to the windows login from your phone or device. You can read about the initial project here at CP: Ending the Era of Weak Passwords: Never Type A Password Again (Never Memorize A Password Again)[^] It won 2nd prize in the IoT contest. :) Thanks again for asking.

                                          My book, Launch Your Android App, is available at Amazon.com (only $2.99USD over 350 pages). Get my Android app on Google Play and F*orget All Your Passwords.

                                          D F P 3 Replies Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups