Questions tagged [memberof]

Attribute that specifies class membership of the documented element or class

45 questions
3
votes
0 answers

BookStack + openLDAP => How do I get BookStack roles to load from LDAP Groups?

I need some help please in getting BookStack and OpenLDAP to work to automatically map LDAP groups to BookStack Roles. I have the BookStack authentication via LDAP working but all users seem to only have Viewer permissions. I'm using this…
OokerBerry
  • 51
  • 5
3
votes
1 answer

What exactly does LDAP_MATCHING_RULE_IN_CHAIN do?

I have read about LDAP_MATCHING_RULE_IN_CHAIN do on https://msdn.microsoft.com/en-us/library/aa746475(v=vs.85).aspx a few times and Googled but I can't get a grasp on what it does. This is what MSDN says but I do not get it. What does "walks the…
IMTheNachoMan
  • 5,343
  • 5
  • 40
  • 89
3
votes
2 answers

ldap memberof overlay not working at all even with new entries

I've been trying 2 days not to get memberof overlay of openldap to work and give some actual results. My database config: database bdb suffix "dc=example,dc=net" checkpoint 1024 15 rootdn "cn=root,dc=exmple,dc=net" rootpw …
3
votes
0 answers

find all memberOf groups, including cross-domain, of a group using LDAP

So this is my configuration (simplified for the sake of simplicity): Setup: I have two DCs (numbered list for reference): DC=one,DC=company,DC=com DC=two,DC=company,Dc=com In each of them I have a few…
IMTheNachoMan
  • 5,343
  • 5
  • 40
  • 89
3
votes
1 answer

JavaScript annotated documentation (JSDoc): should @memberOf specify "prototype" as well?

Example: /** * @constructor * @Returns {AStar} */ function AStar() { }; /** * @public * * Should this be: * @memberOf {AStar.prototype} * Or: * @memberOf {AStar} * * @param {Number} startX * @param {Number} startY * @param {Number}…
Shivan Dragon
  • 15,004
  • 9
  • 62
  • 103
2
votes
1 answer

LDAP DirectorySearcher memberOf property only returns 1 group

I am trying to go through all the active users in my AD and pull out various properties. I have this working accept that the memberOf property is only returning 1 of the groups a user is a part of instead of all the various groups a user is a part…
JaredWason
  • 21
  • 2
2
votes
1 answer

Enable openldap memberof module with ansible ldap_attrs

With ansible 2.10 I use the ldap_attrs module to enable the openldap memberof module: - name: Enable memberof module ldap_attrs: dn: cn=module{0},cn=config attributes: olcModuleLoad: memberof.so state: present The first time the…
azmeuk
  • 4,026
  • 3
  • 37
  • 64
2
votes
1 answer

memberof and refint does not work in openLdap

I'm using CentOs 7.x 64 bit version to set up openLdap. I want to use the memberof overlay to show on a user what groups they are members of. My understanding was that with memberof and refint overlays active the Openldap server automatically…
zhqi
  • 211
  • 2
  • 6
2
votes
1 answer

restrict users with ldap in airflow

I've gotten ldap authentication to work within airflow, but it's allowing any user we have in our directory to login. While it's only showing admin privs for members of the airflow-admin AD group, i would expect users that aren't a member of…
Ben A
  • 462
  • 4
  • 13
2
votes
1 answer

PowerShell to Get local user membership remotely

Need some help here. I need to get the local user list of a remote computer and what group they belong to using PowerShell script. I tried: Get-LocalUser Get-LocalGroup Get-LocalGroupMember Also: gwmi win32_UserAccount gwmi win32_group but it is…
1
vote
1 answer

Cannot see displayName of Group returned by Graph API users/{id}/memberOf call (Java)

I have successfully followed this MS Graph Java tutorial all the way through: https://learn.microsoft.com/en-gb/graph/tutorials/java?tabs=aad I have added my own Graph API call that returns the Groups that a given User is a member of using this…
1
vote
1 answer

Using ldapsearch with filter "memberof" and space character in OU

I already searched a lot of pages on the web but did not find an answer yet. I need to query a MS Windows AD server with ldapsearch to get the users/accounts of a specific group. Therefore I try using a filter string similar to…
kyle13311
  • 31
  • 1
  • 3
1
vote
1 answer

Checking for Membership of Groups Based on Wildcard (Powershell)

I'm working on a PowerShell script to bulk amend users but I'm running into a wall with a specific part of it. Currently there are a series of groups within my organisation that begin with "RIS_" - new groups are added and removed frequently so my…
A_K
  • 11
  • 2
1
vote
1 answer

UnboundID LDAP memberof-overlay

I'm trying to get the dynamic memberOf attribute to work in my in-memory-ldap-server. I'm using the standard edition of UnboundID. I tried with the following .ldif-files if it is activated by default: base.ldif: dn: dc=example,dc=com objectclass:…
Jérôme
  • 1,254
  • 2
  • 20
  • 25
1
vote
1 answer

LDAP Finding Members of a group PHP

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…
AndyPet74
  • 659
  • 2
  • 7
  • 24
1
2 3