6

我有用 C 编写的程序。它需要 2 个参数用户名/密码并尝试使用 PAM 验证该用户。当我是 root 时它工作正常。当我是“普通”用户时,它适用于该用户,但不适用于另一个用户。我认为,这是由于使用影子密码..

作为我正在使用的服务:

retval = pam_start("test", username, &local_conversation, &local_auth_handle);

我将此添加到 /etc/pam.d/test

#%PAM-1.0
auth    required    pam_unix.so shadow nullok
account required    pam_unix.so
session required    pam_unix.so

请问你能帮帮我吗?非常感谢!

4

2 回答 2

8

应用程序需要能够读取/etc/shadow.

有关执行此操作的一种方法,请参阅我的帖子

编辑:从上面的链接添加帖子,以防链接中断

我用 C++ 编写了身份验证模块,它允许通过 Linux 中的 PAM 检查用户名/密码(我使用的是 Fedora Linux)。我想和你分享我所做的:-)。所以,我们走吧:-)

先决条件:

Install package pam-devel
(This step is necessary when you use shadow password) Create new Linux user and group. Set this group as default for this user. Then

请按照以下步骤操作:转到 /etc 以 root 身份登录 (su) 将组更改为文件影子的新组 (chgrp new_group shadow) 为该组设置“读取”权限 (chmod 0440 shadow)

写下这段代码: (authModule.c) view plaincopy to clipboardprint?

#include <stdio.h>  
#include <security/pam_appl.h>  
#include <unistd.h>  
#include <stdlib.h>  
#include <string.h>  

struct pam_response *reply;  

// //function used to get user input  
int function_conversation(int num_msg, const struct pam_message **msg, struct pam_response **resp, void *appdata_ptr)  
{  
    *resp = reply;  
        return PAM_SUCCESS;  
}  

int authenticate_system(const char *username, const char *password)   
{  
    const struct pam_conv local_conversation = { function_conversation, NULL };  
    pam_handle_t *local_auth_handle = NULL; // this gets set by pam_start  

    int retval;  
    retval = pam_start("su", username, &local_conversation, &local_auth_handle);  

    if (retval != PAM_SUCCESS)  
    {  
            printf("pam_start returned: %d\n ", retval);  
            return 0;  
    }  

    reply = (struct pam_response *)malloc(sizeof(struct pam_response));  

    reply[0].resp = strdup(password);  
    reply[0].resp_retcode = 0;  
    retval = pam_authenticate(local_auth_handle, 0);  

    if (retval != PAM_SUCCESS)  
    {  
            if (retval == PAM_AUTH_ERR)  
            {  
                    printf("Authentication failure.\n");  
            }  
            else  
            {  
                printf("pam_authenticate returned %d\n", retval);  
            }  
            return 0;  
    }  

    printf("Authenticated.\n");  
    retval = pam_end(local_auth_handle, retval);  

    if (retval != PAM_SUCCESS)  
    {  
            printf("pam_end returned\n");  
            return 0;  
    }  

    return 1;  
}  

int main(int argc, char** argv)  
{  
    char* login;  
    char* password;  

    printf("Authentication module\n");  

    if (argc != 3)  
    {  
        printf("Invalid count of arguments %d.\n", argc);  
        printf("./authModule <username> <password>");  
        return 1;  
    }  

    login = argv[1];  
    password = argv[2];  

    if (authenticate_system(login, password) == 1)  
    {  
        printf("Authenticate with %s - %s through system\n", login, password);  
        return 0;  
    }     

    printf("Authentication failed!\n");  
    return 1;  
}  

编译代码:

gcc -o authModule authModule.c -lpam  

运行代码(作为新用户!):

./authModule user password  

就这样!!:-) 希望能帮助到你!

于 2012-06-14T10:58:37.873 回答
0

由于代表太低,我还不能评论 Vladislav 的帖子,但我必须对他的代码说些什么。

当您不以 root 用户身份运行此代码时,这才有效。当您以 root 身份运行它时,已知用户的每个密码都被接受。

有谁知道如何解决这一问题?

编辑: 要解决这个问题,你应该使用sudopam 服务而不是su服务pam_start()

于 2016-04-19T13:48:15.337 回答