gpt4 book ai didi

java - 具有两个上下文的 JBOSS 7。一个使用 SSL Mutual Auth,另一个仅使用 SSL

转载 作者:搜寻专家 更新时间:2023-11-01 02:12:18 24 4
gpt4 key购买 nike

我们在配置 JBoss 时遇到问题。我们正在尝试对其进行配置,使其可以同时使用 Mutual auth 和不使用它。喜欢:

https://example.com/contextA/ (需要 SSL 相互认证) https://example.com/contextB/ (仅 SSL)

这可能吗?

我能做的是让或所有 JBoss 使用或不使用 SSL 相互身份验证。如何将其配置为同时存在?

我的 contextA web.xml:

<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
<display-name>ContextA</display-name>

<security-constraint>
<web-resource-collection>
<web-resource-name>services</web-resource-name>
<url-pattern>/*</url-pattern>
<http-method>GET</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>*</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>

<login-config>
<auth-method>CLIENT-CERT</auth-method>
</login-config>

<security-role>
<role-name />
</security-role>
</web-app>

我的上下文A jboss-web.xml

<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
<security-domain>RequireCertificateDomain</security-domain>
</jboss-web>

上下文B web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

<display-name>ContextB</display-name>

<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<trim-directive-whitespaces>true</trim-directive-whitespaces>
</jsp-property-group>
</jsp-config>

<session-config>
<session-timeout>10</session-timeout>
<cookie-config>
<http-only>true</http-only>
</cookie-config>
</session-config>

<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>

<security-constraint>
<display-name>SecureApplicationConstraint</display-name>
<web-resource-collection>
<web-resource-name>ContextB</web-resource-name>
<description>Auth applications are secured</description>
<url-pattern>/login/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<description>Only Users with roles are allowed</description>
<role-name>USER</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>

<security-constraint>
<display-name>SecureChannelConstraint</display-name>
<web-resource-collection>
<web-resource-name>Entire site is protected through SSL</web-resource-name>
<description />
<url-pattern>/contextB/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<description>Require encrypted channel</description>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>

<login-config>
<auth-method>FORM</auth-method>
<realm-name>ContextBPolicy</realm-name>
<form-login-config>
<form-login-page>/login.jsp</form-login-page>
<form-error-page>/loginError.jsp</form-error-page>
</form-login-config>
</login-config>

<security-role>
<description/>
<role-name>USER</role-name>
</security-role>

</web-app>

上下文B jboss-web.xml

<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
<security-domain>java:/jaas/ContextBPolicy</security-domain>
</jboss-web>

standalone.xml 的内容

<security-domain name="ContextBPolicy">
<authentication>
<login-module code="org.ContextBLoginModule" flag="required"/>
</authentication>
</security-domain>

(...)

<security-domain name="RequireCertificateDomain">
<authentication>
<login-module code="CertificateRoles" flag="required">
<module-option name="securityDomain" value="RequireCertificateDomain"/>
<module-option name="verifier" value="org.jboss.security.auth.certs.AnyCertVerifier"/>
<module-option name="usersProperties" value="file:c:/tmp/my-users.properties"/>
<module-option name="rolesProperties" value="file:c:/tmp/my-roles.properties"/>
</login-module>
</authentication>
<jsse keystore-password="changethis" keystore-url="file:c:/tmp/localhost.jks" truststore-password="changethis" truststore-url="file:c:/tmp/cacerts.jks"/>
</security-domain>

(...)

<subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host" native="false">
<configuration>
<jsp-configuration x-powered-by="false"/>
</configuration>
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/>
<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">
<ssl name="ssl" key-alias="localhost" password="changethis" certificate-key-file="../standalone/configuration/localhost.jks" verify-client="require" ca-certificate-file="../standalone/configuration/cacerts.jks" truststore-type="JKS"/>
</connector>
<virtual-server name="default-host" enable-welcome-root="true">
<alias name="localhost"/>
<alias name="example.com"/>
</virtual-server>
</subsystem>

最佳答案

这是可能的,因为您想为不同的 Web 应用程序配置不同类型的身份验证。

请将verify-client的值修改为want:

<connector name="https" ...>
<ssl .. verify-client="want" .../>
</connector>

已添加

根据与 verify-client 属性相关的 JBoss 文档: http://docs.jboss.org/jbossweb/7.0.x/config/ssl.html

如果您希望 SSL 堆栈在接受连接之前需要来自客户端的有效证书链,请设置为 "true"。如果您希望 SSL 堆栈请求客户端证书,则设置为 “want”,但如果未提供则不会失败。

如果 verify-client=”true” JBoss 需要证书,这是正确的。但是,如果您在 verify-client="want" 时访问证书,JBOSS 应该需要客户端证书。如果兄弟包含客户端证书并且应用程序受客户端证书身份验证(web.xml 中的 CLIENT-CERT)保护,则它应该成功。

关于java - 具有两个上下文的 JBOSS 7。一个使用 SSL Mutual Auth,另一个仅使用 SSL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16350802/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com