Skip to content
  • Hjem
  • Seneste
  • Etiketter
  • Populære
  • Verden
  • Bruger
  • Grupper
Temaer
  • Light
  • Brite
  • 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
Kollaps
FARVEL BIG TECH
  1. Forside
  2. Ikke-kategoriseret
  3. Czech your passwords.

Czech your passwords.

Planlagt Fastgjort Låst Flyttet Ikke-kategoriseret
85 Indlæg 53 Posters 1 Visninger
  • Ældste til nyeste
  • Nyeste til ældste
  • Most Votes
Svar
  • Svar som emne
Login for at svare
Denne tråd er blevet slettet. Kun brugere med emne behandlings privilegier kan se den.
  • jupiter@mastodon.gamedev.placeJ jupiter@mastodon.gamedev.place

    Czech your passwords.

    diffie@mk.absturztau.beD This user is from outside of this forum
    diffie@mk.absturztau.beD This user is from outside of this forum
    diffie@mk.absturztau.be
    wrote sidst redigeret af
    #76

    @jupiter@mastodon.gamedev.place This is at least 9 bits of entropy, if the app doesn't normalize its Unicode strings.

    Example:
    řřřřřřřřř and řřřřřřřřř might seem to be different for some SW. (Idk whether my fedi client normalized the text – I'll edit if it did.)

    Compare plain pre-combined
    ř as U+XXXX and ASCII r with a combining caron coded as U+0072 then U+030c. These should render the same.

    diffie@mk.absturztau.beD 1 Reply Last reply
    0
    • diffie@mk.absturztau.beD diffie@mk.absturztau.be

      @jupiter@mastodon.gamedev.place This is at least 9 bits of entropy, if the app doesn't normalize its Unicode strings.

      Example:
      řřřřřřřřř and řřřřřřřřř might seem to be different for some SW. (Idk whether my fedi client normalized the text – I'll edit if it did.)

      Compare plain pre-combined
      ř as U+XXXX and ASCII r with a combining caron coded as U+0072 then U+030c. These should render the same.

      diffie@mk.absturztau.beD This user is from outside of this forum
      diffie@mk.absturztau.beD This user is from outside of this forum
      diffie@mk.absturztau.be
      wrote sidst redigeret af
      #77

      @jupiter@mastodon.gamedev.place

      Copied and pasted from the post, you can tell they are different in the hexdump.

      Fun fact: When pasted into a Vim, searching for
      řřřřřřřřř highlights only one of the ř-words. But when I round-tripped it through XTerm (with UTF-8 enabled), the strings were normalized!

      řřřřřřřřř and řřřřřřřřř
      00000000: 72cc 8cc5 99c5 99c5 99c5 9972 cc8c 72cc  r..........r..r.
      00000010: 8c72 cc8c 72cc 8c20 616e 6420 c599 c599  .r..r.. and ....
      00000020: c599 c599 c599 c599 c599 c599 c599 0a    ...............

      override@mk.absturztau.beO 1 Reply Last reply
      0
      • diffie@mk.absturztau.beD diffie@mk.absturztau.be

        @qgustavor@urusai.social @jupiter@mastodon.gamedev.place What if the carons are combining (U+0072 then U+030c)? Are these a different character classes?

        qgustavor@urusai.socialQ This user is from outside of this forum
        qgustavor@urusai.socialQ This user is from outside of this forum
        qgustavor@urusai.social
        wrote sidst redigeret af
        #78

        @diffie @jupiter
        Depends on the implementation!

        One: implementations can use Unicode normalisation so it always handles them combined or always separated.

        Two: zxcvbn detects repetition (and penalises it) even strings of two or more repeated substrings!

        Three: for character classes-based algorithms, those are weird! IMHO in most cases those are based on "let me guess what a good password is because management asked for a password strength meter" and thus you have lots of implementations based on regex, but also ranges of ASCII ranges and all sorts of mess code. I wonder if AI still generates this messy code or if they just recommend a properly tested library like zxcvbn. I guess the first.

        diffie@mk.absturztau.beD 1 Reply Last reply
        0
        • diffie@mk.absturztau.beD diffie@mk.absturztau.be

          @jupiter@mastodon.gamedev.place

          Copied and pasted from the post, you can tell they are different in the hexdump.

          Fun fact: When pasted into a Vim, searching for
          řřřřřřřřř highlights only one of the ř-words. But when I round-tripped it through XTerm (with UTF-8 enabled), the strings were normalized!

          řřřřřřřřř and řřřřřřřřř
          00000000: 72cc 8cc5 99c5 99c5 99c5 9972 cc8c 72cc  r..........r..r.
          00000010: 8c72 cc8c 72cc 8c20 616e 6420 c599 c599  .r..r.. and ....
          00000020: c599 c599 c599 c599 c599 c599 c599 0a    ...............

          override@mk.absturztau.beO This user is from outside of this forum
          override@mk.absturztau.beO This user is from outside of this forum
          override@mk.absturztau.be
          wrote sidst redigeret af
          #79

          @diffie @jupiter@mastodon.gamedev.place which makes me wonder, if you allow (for the argument) non-ascii chars in passwords, should you normalize input, and where/when?
          take the case of someone using a website.

          diffie@mk.absturztau.beD 1 Reply Last reply
          0
          • override@mk.absturztau.beO override@mk.absturztau.be

            @diffie @jupiter@mastodon.gamedev.place which makes me wonder, if you allow (for the argument) non-ascii chars in passwords, should you normalize input, and where/when?
            take the case of someone using a website.

            diffie@mk.absturztau.beD This user is from outside of this forum
            diffie@mk.absturztau.beD This user is from outside of this forum
            diffie@mk.absturztau.be
            wrote sidst redigeret af
            #80

            @Override @jupiter@mastodon.gamedev.place … or over-normalize the text. ​​ I noticed that Discord converts my U+00a0 NBSPs to U+0020 plain spaces.

            1 Reply Last reply
            0
            • qgustavor@urusai.socialQ qgustavor@urusai.social

              @diffie @jupiter
              Depends on the implementation!

              One: implementations can use Unicode normalisation so it always handles them combined or always separated.

              Two: zxcvbn detects repetition (and penalises it) even strings of two or more repeated substrings!

              Three: for character classes-based algorithms, those are weird! IMHO in most cases those are based on "let me guess what a good password is because management asked for a password strength meter" and thus you have lots of implementations based on regex, but also ranges of ASCII ranges and all sorts of mess code. I wonder if AI still generates this messy code or if they just recommend a properly tested library like zxcvbn. I guess the first.

              diffie@mk.absturztau.beD This user is from outside of this forum
              diffie@mk.absturztau.beD This user is from outside of this forum
              diffie@mk.absturztau.be
              wrote sidst redigeret af
              #81

              @qgustavor@urusai.social @jupiter@mastodon.gamedev.place I've seen even a password meter which was totally fine with 10s of as and it said it's a strong password, so… yes. ​​

              1 Reply Last reply
              0
              • zl2tod@mastodon.onlineZ zl2tod@mastodon.online

                @jupiter

                What?

                It's Talk Like A Pirate Day again already?

                alesroubicek@indieweb.socialA This user is from outside of this forum
                alesroubicek@indieweb.socialA This user is from outside of this forum
                alesroubicek@indieweb.social
                wrote sidst redigeret af
                #82

                @zl2tod @jupiter Ahoj!

                1 Reply Last reply
                0
                • jupiter@mastodon.gamedev.placeJ jupiter@mastodon.gamedev.place

                  @chemlon
                  Třista třicet tři stříbrných stříkaček stříkalo přes třista třicet tři stříbrných střech.

                  alesroubicek@indieweb.socialA This user is from outside of this forum
                  alesroubicek@indieweb.socialA This user is from outside of this forum
                  alesroubicek@indieweb.social
                  wrote sidst redigeret af
                  #83

                  @jupiter @chemlon Řehoři, tetřev! Tř Tř

                  1 Reply Last reply
                  0
                  • jupiter@mastodon.gamedev.placeJ jupiter@mastodon.gamedev.place

                    Czech your passwords.

                    L This user is from outside of this forum
                    L This user is from outside of this forum
                    luc0x61@mastodon.gamedev.place
                    wrote sidst redigeret af
                    #84

                    @jupiter Hope to never have to login at another keyboard in the world! 😅 or keep the Unicode at hand 😀

                    1 Reply Last reply
                    0
                    • jupiter@mastodon.gamedev.placeJ jupiter@mastodon.gamedev.place

                      Czech your passwords.

                      keinebasisfuerpalantir@rheinneckar.socialK This user is from outside of this forum
                      keinebasisfuerpalantir@rheinneckar.socialK This user is from outside of this forum
                      keinebasisfuerpalantir@rheinneckar.social
                      wrote sidst redigeret af
                      #85

                      @jupiter

                      En France c'est ééééééééé

                      1 Reply Last reply
                      0
                      • simonjust@mstdn.dkS simonjust@mstdn.dk shared this topic
                      Svar
                      • Svar som emne
                      Login for at svare
                      • Ældste til nyeste
                      • Nyeste til ældste
                      • Most Votes


                      • Log ind

                      • Har du ikke en konto? Tilmeld

                      • Login or register to search.
                      Powered by NodeBB Contributors
                      Graciously hosted by data.coop
                      • First post
                        Last post
                      0
                      • Hjem
                      • Seneste
                      • Etiketter
                      • Populære
                      • Verden
                      • Bruger
                      • Grupper