We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
src/jwt_test.c
src/rest_test.c
test/pam_test.c
Postman
Resources:
linux-pam/tests/
See also:
The text was updated successfully, but these errors were encountered:
Newman is a command-line collection runner for Postman
Sorry, something went wrong.
https://github.com/CyberNinjas/pam_aad/tree/feature-testing
#include <dlfcn.h> #include <stdio.h> #include <stdlib.h> int main(int argc, const char* argv[]) { if ( argc != 2 ) { printf("Usage: ./dlopentest <path_to_pam_module>\n"); exit(1); } void *libhandle = dlopen(argv[1], RTLD_NOW); if ( libhandle == NULL ) { printf("%s",dlerror()); exit(1); } void* sym = dlsym(libhandle,"pam_sm_authenticate"); if ( sym == NULL ) { printf("%s",dlerror()); exit(1); } sym = dlsym(libhandle,"pam_sm_setcred"); if ( sym == NULL ) { printf("%s",dlerror()); exit(1); } dlclose(libhandle); }
Source: https://github.com/CyberNinjas/pam_aad/blob/6b547f4aac02821b6a4840098c71fcd83af389f4/dev/dlopentest.c
e2e46ee
No branches or pull requests
src/jwt_test.c
src/rest_test.c
test/pam_test.c
Postman
Resources:
linux-pam/tests/
See also:
The text was updated successfully, but these errors were encountered: