I’m creating a small windows application that will use Discourse as the SSO provider. The first step in that chain is allowing the app to create a user through the Discourse API.
I’ve got that working, however it seems that the password for the user is passed in plain text and I’m wondering why that is? It seems like that could be a security issue… is the thought just that people should use SSL and that’s good enough to protect the password?
Yes, SSL is considered sufficient to protect secrets in-flight. Until the world sees the light and switches to something like TLS-SRP, sharing secrets over a secured channel are pretty much all we’ve got to work with.
平文のパスワードではなく、暗号化されたパスワードを渡す方法はありませんか?私たちは認証確認のために /session API を使用しているアプリを開発しています。ここではユーザー名とパスワードの提出が必要です。一つ気づいたのですが、ブラウザのデベロッパーツールを見ると、ログイン時に送信する平文のパスワードが実際に確認できてしまいます。もし誰かが私のノートパソコンにアクセスできれば、パスワードがハッキングされる可能性がありますよね。
はい、その通りです。しかし、誰かがあなたのノートパソコンにアクセスできているのであれば、ハッシュ化プロセスを通過する前にパスワードをキャプチャするキーロガーを仕掛けることも可能です。Discourse(およびあらゆる Web アプリケーション)のセキュリティ脅威モデルには、エンドポイントが侵害されていないことが前提として含まれています。