-
Notifications
You must be signed in to change notification settings - Fork 256
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
Allow user change password #2729
Comments
I think for such usecases you want to use the university authentication system and pass the user via the The reason I'm hesitant to have this implemented is that changing the password is now a You can easily disable the download of the submissions, that was added for exactly this risk so if this wasn't a problem before it can easily be disabled to prevent that this is an issue now. |
I'm not sure if I'm that hesitant. Sure, it can be a security risk, but if we put it in a whole new controller action, I don't think there is more risk than having an error in the submission code where too can submit as another team? |
Alright, I don’t quite understand where the security issue might arise when allowing users to change their own passwords. |
Is the idea here to allow the user to reset a password (e.g. get a reset link via email) or have the ability to change the pre-configured password? |
What I want to do is to have an interface for users to change their own password after logging in, without the need for any email functionality. If we were to use email, it would likely require a significant change, right? (like setting up a mail server) |
Yeah, that was one reason why I was asking. I think adding simple password change functionality behind a configuration toggle (disabled by default) sounds good to me. |
Yes, I think so too. If it seems feasible, I think I can give it a try. Also, I would like to ask how often the version number of Domjudge is updated. |
We don't have a fixed schedule, but rather see whether we have accumulated enough changes to warrant a new version. |
Description of the enhancement request
Introduce a feature that allows users to change their own passwords, with the option to enable or disable this functionality through settings. This will provide flexibility in cases where a fixed password is required, while allowing or prohibiting individual password changes when necessary.
The goal you want to achieve
The goal is to allow users to securely and conveniently manage their own passwords, while the jury can configure in the settings whether the default behavior is to allow all users to change their own passwords. It should also be possible to restrict certain users from changing their passwords individually.
Expected behaviour
Users should be able to change their passwords via their personal settings page. Administrators should be able to enable or disable password changes for users through system settings.
Any other information that you want to share?
DOMjudge is often used in courses on programming, data structures, and algorithms. In these contexts, student IDs or fixed passwords are typically used for long-term login throughout the semester. However, due to the recent feature in DOMjudge that allows downloading submission code, there have been incidents where some students log into others' accounts to secretly download the correct code. Given the large number of students in such classes, handling password changes individually becomes difficult. Therefore, allowing users to change their own passwords could help mitigate such issues while reducing the burden on administrators.
The text was updated successfully, but these errors were encountered: