Wildfly 8基本身份验证

时间:2015-01-28 11:38:52

标签: authentication jax-rs resteasy wildfly

我在Wildfly 8上运行了一个Java-Webapp.I尝试使用resteasy Annotations保护我的restful webservice。我使用命令行工具curl来测试其余的api。

基本身份验证设置似乎有效。 Http请求Webservices注释" @PermitAll"工作得很好。 Curl说:

~ % curl -v http://localhost:8080/ItilityServer-web/rest/account 
> GET /ItilityServer-web/rest/account HTTP/1.1
> User-Agent: curl/7.40.0
> Host: localhost:8080
> Accept: */*
> 
< HTTP/1.1 200 OK
< Connection: keep-alive
< X-Powered-By: Undertow/1
< Server: WildFly/8
< Content-Length: 0
< Date: Wed, 28 Jan 2015 10:47:11 GMT
< 
* Connection #0 to host localhost left intact

但是包含有效用户名和密码的http请求被拒绝,状态代码401未经授权。 Wildfly记录错误无法匹配的密码:

2015-01-28 11:42:43,565 TRACE [org.jboss.security] (default task-5) PBOX000263: Executing query SELECT a.password FROM Account a WHERE a.name = ? with username hans
2015-01-28 11:42:43,566 DEBUG [org.jboss.security] (default task-5) PBOX000283: Bad password for username hans

但事实并非如此。解密的授权详细信息&#34; aGFuczpoZWxtaWhlbG1paGVsbWk =&#34;汉斯:helmihelmihelmi,这个用户名和密码存储在我的数据库中。与security-domain相同的jpql-queries使用会产生一个unsername&#34; hans&#34;和他的密码&#34; helmihelmihelmi&#34;。

这是我的设置:

的web.xml

<web-app 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"
     version="3.0">

<context-param>
    <param-name>resteasy.role.based.security</param-name>
    <param-value>true</param-value>
</context-param>

<login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>Application</realm-name>
</login-config>

<security-role>
    <role-name>store</role-name>
</security-role>

</web-app>

(我不知道安全领域是什么,所以我只是把这个属性留在了login-config标签中)

我在standalone.xml中的安全域

<security-domain name="DBLogin" cache-type="default">
    <authentication>
        <login-module code="Database" flag="required">
            <module-option name="dsJndiName" value="java:jboss/datasources/ExampleDS"/>
            <module-option name="principalsQuery" value="SELECT a.password FROM Account a WHERE a.name = ?"/>
            <module-option name="rolesQuery" value="SELECT a.userRole FROM Account a WHERE a.name = ?"/>
            <module-option name="hashAlgorithm" value="SHA-256"/>
            <module-option name="hashEncoding" value="Base64"/>
            <module-option name="hashCharset" value="UTF-8"/>
            <module-option name="unauthenticatedIdentity" value="guest"/>
        </login-module>
    </authentication>
</security-domain>

Restful webservice

@GET
@RolesAllowed(AuthRole.STORE)
@Produces(MediaType.APPLICATION_JSON)
public Response getAccountByName() {
    Response.ResponseBuilder builder = Response.ok();
    return builder.build();
}

和import.xml在启动时创建用户

insert into Account(id, name, email, password, user_role) values (0, 'hans', 'john.smith@mailinator.com', 'helmihelmihelmi', 'store') 
insert into Store(id, name, zipcode, street, housenumber, town, account_id) values(0, 'Edeka', 72622, 'stephanstraße', 10, 'Reudern', 0);

不知道如何找到解决方案,因为我甚至不知道这个问题。希望有人可以提供帮助。

1 个答案:

答案 0 :(得分:4)

您不能将未加密的密码存储在数据库中。 WildFly希望您使用login-module配置中指定的哈希算法和编码来存储哈希密码。

创建新Account时,请使用

org.jboss.security.auth.spi.Util.createPasswordHash()

获取要存储的哈希密码。

通常,存储原始密码存在安全风险。