mirror of
https://github.com/productiveops/dokemon.git
synced 2026-04-26 08:15:49 +03:00
[GH-ISSUE #42] Maximum password length is much shorter than anticipated #22
Labels
No labels
enhancement
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/dokemon#22
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @turtureanu on GitHub (Nov 2, 2024).
Original GitHub issue: https://github.com/productiveops/dokemon/issues/42
After installing dokemon and navigating to http://localhost:9090 I was greeted with a screen that prompted me to create a user (web/src/app/auth/setup.tsx).
I use a password manager, and I don't like to remember passwords. The advantage of using a password manager is that I can generate really long passwords. The problem here is that I cannot use a long password such as this one:
eTfDc0BHuD4K5JIbeRvAfB0Xykq2XMtk34ORygYybsA2yaKkuHdgcJznSiSNjTZkyKZXaUw8UKjvKOnNThe website just refreshed and it didn't seem to create the user. After creating a user with a much shorter password (10 chars), I tried changing the password, but I got the following error:

After trying to see, if the limit is configured somewhere, I came upon this snippet:
github.com/productiveops/dokemon@e800d3e62b/pkg/server/handler/request_user.go (L11)This does not seem to be by design, so that's why I'm opening this issue.