密码文件

密码文件

我创建了以下形式的用户名/密码组合onetwo:bucklemyshoe,即密码文件包含单行onetwo|bucklemyshoe

每当我尝试连接时,登录页面上都会显示消息:

You were disconnected for the following reason:

invalid challenge response

日志显示以下消息

 Authentication required by password file authenticator module
  sending challenge for username 'onetwo' using hmac+sha256 digest
 Warning: hmac+sha256 challenge for 'onetwo' does not match
 Warning: authentication failed
  invalid challenge response
 Disconnecting client Protocol(ws websocket: 111.111.111.111:14333 <- 222.222.222.222:35555):
  invalid challenge response

Insecure plain-text passwords检查与否没有什么区别。

密码文件的内容不是 xpra 所期望的。实际格式是否记录在某处?是否有实用程序或脚本可以以正确的格式创建它们?

答案1

根据xpra 邮件列表也有人问过这个问题,记录了密码文件格式在维基上:

密码文件

“文件”与“多文件”:

  • “文件”包含单个密码,整个文件就是密码
  • “multifile”包含身份验证值列表,请参阅代理服务器文件身份验证 - 该模块已弃用,取而代之的是更易于配置的“sqlite”。

要制作常规密码文件,只需以明文形式写入密码即可:

echo -n "bucklemyshoe" > yourpasswordfile.txt

相关内容