ncat ssl 连接与用户名/密码身份验证?
有人可以用 ncat 向我展示如何连接到服务器需要用户名+密码的 https URL 吗?
无需用户名+密码 我可以连接,
ncat --ssl host port
但在需要时如何指定登录凭据?
Can someone show me with ncat, how to connect to a https URL where the server requires a username+password?
Without user+password
I can connect with just
ncat --ssl host port
but how do I specify logon-credentials, when required?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您传递标头
Authorization: Basic BASE64_ENCODED('username:password')
从字面上看
Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQNCg==
You pass the header
Authorization: Basic BASE64_ENCODED('username:password')
Literally
Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQNCg==