ldap

In apache httpd configuration, what LDAP SASL mechanism is used during ldap authentication?

末鹿安然 提交于 2021-02-18 19:01:07
问题 In apache, SVN repository is configured. During authentication, ldap (auth basic provider) is used. In apache httpd configuration, what LDAP SASL mechanism is used during ldap authentication? 回答1: SASL authentication isn't available with the Apache ldap module. For Apache 2.2, mod_authn_sasl allows you to configure that using the saslauthd daemon (not on Windows). 来源: https://stackoverflow.com/questions/29821289/in-apache-httpd-configuration-what-ldap-sasl-mechanism-is-used-during-ldap-auth

Is there any free ldap server with data? [closed]

早过忘川 提交于 2021-02-17 11:13:50
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Improve this question I need to test an application which uses LDAP for authentication, but still I don't have access to the server I have to use, but I need to test my application. Does somebody know if is there any LDAP server with data that i can use for access?? 回答1: Here you go:

Ldap Apache Directory Studio can not open Root DSE in osx big sur

心已入冬 提交于 2021-02-11 12:19:31
问题 After upgrading my macOsx version to Big Sur(11.1) I am facing weird issue. When I connect the LDAP server I see all information except the DSE root tree not expanding and can not perform any operation for example search/filter. Here its looks like I got the following error message : java.lang.NullPointerException (Hexdump: 30 7E 02 01 06 65 07 0A 01 00 04 00 04 00 A0 70 30 6E 04 17 31 2E 33 2E 36 2E 31 2E 34 2E 31 2E 32 36 30 32 37 2E 31 2E 35 2E 34 01 01 FF 04 50 30 4E 04 4C 64 63 3D 70 6F

Issue with DNS Naming and Certificates LDAP Context

半城伤御伤魂 提交于 2021-02-08 11:08:30
问题 With the last update of Java 1.8.0_181 I have an issue when I try to create a LDAPS connection to Active Directory. Up to version 1.8.0_171 using the following code I could create it without issues Hashtable<String, Object> objEnvironment; objEnvironment = new Hashtable<String, Object>(11); objEnvironment.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory"); objEnvironment.put(Context.PROVIDER_URL, "LDAPS://domain:636"); objEnvironment.put(Context.SECURITY_AUTHENTICATION,

Issue with DNS Naming and Certificates LDAP Context

送分小仙女□ 提交于 2021-02-08 11:06:27
问题 With the last update of Java 1.8.0_181 I have an issue when I try to create a LDAPS connection to Active Directory. Up to version 1.8.0_171 using the following code I could create it without issues Hashtable<String, Object> objEnvironment; objEnvironment = new Hashtable<String, Object>(11); objEnvironment.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory"); objEnvironment.put(Context.PROVIDER_URL, "LDAPS://domain:636"); objEnvironment.put(Context.SECURITY_AUTHENTICATION,

LDAP Finding Members of a group PHP

家住魔仙堡 提交于 2021-02-08 10:35:16
问题 I have a question regarding user membership of groups in Active directory and grabbing such memberships with PHP. My big question/situation is that I have a site I am making and essentially I am trying to assign administrators based off of groups in Active directory and I know how to check member of status on an account but my problem is that there are some groups that aren't displayed there, and one of the groups that is not displayed is the group I need. Is there a way I can check who is a

bind error with ldap authentication using Passport and node.js

风格不统一 提交于 2021-02-08 10:25:58
问题 I have problem to bind to the ldap server. I have following codes: in passport.js module.exports = function() { // Serialize sessions passport.serializeUser(function(user, done) { console.log('userid' + user.id) done(null, user.id); }); // Deserialize sessions passport.deserializeUser(function(id, done) { User.findOne({ _id: id }, '-password', function(err, user) { done(err, user); }); }); passport.use(new LdapStrategy({ usernameField:'username', passwordField:'password', server: { url: 'ldap

Page LDAP query against AD in .NET Core using Novell LDAP

坚强是说给别人听的谎言 提交于 2021-02-07 23:46:31
问题 I am using the Novell LDAP library for making queries to an Active Directory from a .NET Code application. Most of the queries succeed, but some return more than 1000 results, which the AD server refuses. I therefore tried to find out how to page LDAP queries using Novell's library. The solution I put together looks like public IEnumerable<LdapUser> GetUsers() { this.Connect(); try { var cntRead = 0; // Total users read. int? cntTotal = null; // Users available. var curPage = 0; // Current

Page LDAP query against AD in .NET Core using Novell LDAP

删除回忆录丶 提交于 2021-02-07 23:45:47
问题 I am using the Novell LDAP library for making queries to an Active Directory from a .NET Code application. Most of the queries succeed, but some return more than 1000 results, which the AD server refuses. I therefore tried to find out how to page LDAP queries using Novell's library. The solution I put together looks like public IEnumerable<LdapUser> GetUsers() { this.Connect(); try { var cntRead = 0; // Total users read. int? cntTotal = null; // Users available. var curPage = 0; // Current

Connect to DB using LDAP with python cx_Oracle

北战南征 提交于 2021-02-07 10:52:52
问题 I have a set of python scripts that use cx_Oracle to connect to a remote DB. This is a large project, were this connections are used several times. Additionally, I produce an .exe file that is distributed and should be as self-contained as possible. In other words, if I send you the .exe, you should be able to run it without any extra tinkering (I use pyinstaller ) Right now, I get a connection using ip = 'myhost.example.pt' port = 1521 SID = 'MYDB_PRD.EXAMPLE.PT' dsn_tns = cx_Oracle.makedsn