如何使用LDAP对用户进行密码身份验证

How to do password authentication for a user using LDAP?

本文关键字:密码 身份验证 用户 何使用 LDAP      更新时间:2023-10-16

我正在编写一个客户端应用程序(使用OpenLDAP库),用户通过LDAP服务器获得身份验证。

下面是一个硬编码的示例程序,它无法比较用户的userPassword。

#include <stdio.h>
#include <ldap.h>
#define LDAP_SERVER "ldap://192.168.1.95:389"
int main( int argc, char **argv ){
    LDAP        *ld;
    int         rc;
    char        bind_dn[100];
    LDAPMessage *result, *e;
    char *dn;
    int has_value;
    sprintf( bind_dn, "cn=%s,dc=ashwin,dc=com", "manager" );
    printf( "Connecting as %s...n", bind_dn );
    if( ldap_initialize( &ld, LDAP_SERVER ) )
    {
        perror( "ldap_initialize" );
        return( 1 );
    }
    rc = ldap_simple_bind_s( ld, bind_dn, "ashwin" );
    if( rc != LDAP_SUCCESS )
    {
        fprintf(stderr, "ldap_simple_bind_s: %sn", ldap_err2string(rc) );
        return( 1 );
    }
    printf( "Successful authenticationn" );
    rc = ldap_search_ext_s(ld, "dc=ashwin,dc=com", LDAP_SCOPE_SUBTREE, "sn=ashwin kumar", NULL, 0, NULL, NULL, NULL, 0, &result);
    if ( rc != LDAP_SUCCESS ) {
        fprintf(stderr, "ldap_search_ext_s: %sn", ldap_err2string(rc));
    }
    for ( e = ldap_first_entry( ld, result ); e != NULL; e = ldap_next_entry( ld, e ) ) {
        if ( (dn = ldap_get_dn( ld, e )) != NULL ) {
            printf( "dn: %sn", dn );
            has_value = ldap_compare_s( ld, dn, "userPassword", "secret" ); 
            switch ( has_value ) { 
                case LDAP_COMPARE_TRUE: 
                    printf( "Works.n"); 
                    break; 
                case LDAP_COMPARE_FALSE: 
                    printf( "Failed.n"); 
                    break; 
                default: 
                    ldap_perror( ld, "ldap_compare_s" ); 
                    return( 1 ); 
            } 
            ldap_memfree( dn );
        }
    }
    ldap_msgfree( result );
    ldap_unbind( ld );
    return( 0 );
}

userPassword如果在LDAP服务器中为plain,则有效。如果是MD5加密,ldap_compare_s失败。这是因为我传递了一个明文密码来进行比较。

我如何让这个示例程序工作?

我这样做对吗?使用ldap_compare_s通过LDAP对用户进行身份验证是否正确?

p。S:这是我第一次使用LDAP。

这并不是在LDAP上执行密码检查的正确方法,您应该尝试使用从第一次搜索中获得的dn和提供的密码进行绑定。

。执行第二次绑定来验证密码。如果绑定失败,则密码不正确。

类似于:

    if ( (dn = ldap_get_dn( ld, e )) != NULL ) {
        printf( "dn: %sn", dn );
        /* rebind */
        ldap_initialize(&ld2, LDAP_SERVER);
        rc = ldap_simple_bind_s(ld2, dn, "secret");
        printf("%dn", rc);
        if (rc != 0) {
            printf("Failed.n");
        } else {
            printf("Works.n");
            ldap_unbind(ld2);
        }
        ldap_memfree( dn );
    }

出于安全考虑,表明用户名不正确(即搜索用户帐户失败)通常被认为是过度披露,应避免。