Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repetition matcher fails with special UTF-8 characters #17

Open
zekroTJA opened this issue Feb 2, 2023 · 0 comments
Open

Repetition matcher fails with special UTF-8 characters #17

zekroTJA opened this issue Feb 2, 2023 · 0 comments

Comments

@zekroTJA
Copy link

zekroTJA commented Feb 2, 2023

It seems like the repetition matcher fails to identify repetitions when composed of special UTF-8 characters like ü, for example.

Here is an example code snippet demonstrating the issue.

package main

import (
	"fmt"

	"github.com/trustelem/zxcvbn"
)

func main() {
	res := zxcvbn.PasswordStrength("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", nil)
	fmt.Println(res.Guesses)

	res = zxcvbn.PasswordStrength("ööööööööööööööööööööööööööööööööööööö", nil)
	fmt.Println(res.Guesses)

	res = zxcvbn.PasswordStrength("øøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøø", nil)
	fmt.Println(res.Guesses)
}

Demo:
https://go.dev/play/p/bDyahn5GnEU

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant