使用Liferay启动Tomcat 8时存在严重的安全约束

使用Liferay启动Tomcat 8时存在严重的安全约束,第1张

使用Liferay启动Tomcat 8时存在严重的安全约束

这意味着

web.xml
某人仅针对pattern上的POST和GET方法指定了安全性约束
/bg/c/portal/protected
,可能与此类似:

<security-constraint>    <web-resource-collection>        <url-pattern>/bg/c/portal/protected</url-pattern>        <http-method>POST</http-method>        <http-method>GET</http-method>    </web-resource-collection>    <user-data-constraint>        <transport-guarantee>...</transport-guarantee>    </user-data-constraint></security-constraint>

您应该删除

http-method
方括号以使其匹配此方法的所有方法,
url-pattern
或者如果您想为其设置不同的安全性约束而没有任何
http-method
方括号,则创建第二个方括号。

例如,如果您想

/bg/c/portal/protected
POST
GET
方法使用SSL
端点进行安全保护,而对于其他方法则不需要,则应创建如下配置:

<security-constraint>    <web-resource-collection>        <url-pattern>/bg/c/portal/protected</url-pattern>        <http-method>POST</http-method>        <http-method>GET</http-method>    </web-resource-collection>    <user-data-constraint>        <transport-guarantee>CONFIDENTIAL</transport-guarantee>    </user-data-constraint></security-constraint><security-constraint>    <web-resource-collection>        <url-pattern>/bg/c/portal/protected</url-pattern>    </web-resource-collection>    <user-data-constraint>        <transport-guarantee>NONE</transport-guarantee>    </user-data-constraint></security-constraint>

如您现在所见,该模式的所有方法均已涵盖,因此不会引发任何错误。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4897741.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存