认证测试服务器

发布于 2024-11-17 16:35:47 字数 265 浏览 2 评论 0 原文

我正在搜索使用以下身份验证类型之一的公共 HTTPS 站点的示例 - 这些站点将用作当前正在开发的应用程序的测试服务器。

BASIC 身份验证
DIGEST 身份验证
NTLM 身份验证

测试服务器需要使用 SSL 以及上述身份验证类型之一。有什么网站建议吗?这些网站最好应该提供免费帐户。

谢谢!
克里斯

I'm searching for examples of public HTTPS sites that use one of the following authentication types - these sites will be used as test servers for an application currently under development.

BASIC authentication
DIGEST authentication
NTLM authentication

The test servers need to be using SSL as well as one of the above auth types. Any site suggestions? Preferably the sites should provide free accounts.

Thanks!
Chris

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

暗恋未遂 2024-11-24 16:35:47

httpbin.org 具有 HTTP 基本和摘要式身份验证的公共端点(在每个示例中,替换 :user:passwd 以及您想要检查的测试值 - :qop,对于摘要来说也是如此):

每个端点在 HTTP 和 HTTPS 中都可用。

httpbin.org has public endpoints for HTTP Basic and Digest Authentication (in each example, replace :user and :passwd with the test values you'd like to check against - :qop, too, for Digest):

Each endpoint is available in both HTTP and HTTPS.

遗弃M 2024-11-24 16:35:47

作为测试 HTTP 身份验证的示例:

http://www.httpwatch.com/httpgallery/authentication/authenticatedimage/default.aspx?0.7349707232788205 

为了检查授权是否成功,您可以输入 httpwatch 作为用户名。在密码字段中输入什么并不重要,只需每次都不同即可。


如果上面的链接将来不起作用,我也放这个链接:

http://www.httpwatch.com/httpgallery/authentication/#showExample10

As an example for testing HTTP authentication:

http://www.httpwatch.com/httpgallery/authentication/authenticatedimage/default.aspx?0.7349707232788205 

In order to check a successful authorization you can enter httpwatch as the username. It doesn't matter what you enter for the password field, it just needs to be different every time.


I also put this link if the above one will not work in the future:

http://www.httpwatch.com/httpgallery/authentication/#showExample10
箜明 2024-11-24 16:35:47

要拥有可靠的测试系统,您应该设置自己的 Apache Web 服务器。它可以轻松提供 SSL 加密和基本/摘要身份验证:

http://httpd.apache .org/docs/2.2/ssl/ssl_faq.html

http://httpd.apache.org/docs/current/howto/auth.html

NTLM 模块也可用:

http://modntlm.sourceforge.net/

http://blog.doylet.net/?p=6

否则,您可能会因违反公共网站的使用条款而遇到法律麻烦。

To have a reliable test system, you should setup your own Apache web server. It can easily provide SSL encryption and basic/digest auth:

http://httpd.apache.org/docs/2.2/ssl/ssl_faq.html

http://httpd.apache.org/docs/current/howto/auth.html

An NTLM module is available as well:

http://modntlm.sourceforge.net/

http://blog.doylenet.net/?p=6

Otherwise you could run into legal troubles for violating the terms of use for public web sites.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文