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

TTSSH パスワード変更ダイアログで、「新パスワード」と「新パスワード確認」が一致しなくてもパスワードが変更されることがある #401

Open
taikoyaP opened this issue Dec 13, 2024 · 0 comments
Milestone

Comments

@taikoyaP
Copy link

taikoyaP commented Dec 13, 2024

TTSSHの「パスワード変更」ダイアログは、「新パスワード」と「新パスワード確認」が一致することをチェックしていますが、
一致しなくても処理が進む場合があります。

例として、
新パスワードに「11111111」を、
新パスワード確認に「11111112」を与えると、
パスワードが一致していませんが処理が進みます。

手元にWindowsの開発環境が無いので確認できないのですが、
ttssh2/ttxssh/ssh.c の 7535行目

if (strcmp(new_passwd, retype_passwd) == 1) {

は、おそらく

if (strcmp(new_passwd, retype_passwd) != 0) {

が正しいのではないでしょうか?

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

2 participants