<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to generate a list of users and Active Directory groups? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339199#M100568</link>
    <description>&lt;P&gt;maybe something like this for starters:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=&amp;lt;yourIndex&amp;gt; sourcetype=&amp;lt;youtSourcetype&amp;gt; CN=Schema objectCategory=* 
    | dedup distinguishedName 
    | stats list(cn) by DC OU 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;start with verbose search so you can see all the fields you would like to report on&lt;BR /&gt;
also, it is not clear from the  question if you are looking for users who use splunk or to all users in your company connected to AD?&lt;BR /&gt;
I would assume you are looking for users who are in splunk since you mentioned SAML. If that is the case, probably use @cusello answer above and join results from ad search (here) by the field user &lt;BR /&gt;
hope it helps&lt;/P&gt;</description>
    <pubDate>Wed, 19 Apr 2017 18:35:33 GMT</pubDate>
    <dc:creator>adonio</dc:creator>
    <dc:date>2017-04-19T18:35:33Z</dc:date>
    <item>
      <title>How to generate a list of users and Active Directory groups?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339195#M100564</link>
      <description>&lt;P&gt;Can someone advice on the Splunk search to generate the list of users and associated Active Directory (AD) groups? We are using SAML authentication based on AD groups.&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 16:21:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339195#M100564</guid>
      <dc:creator>mlevsh</dc:creator>
      <dc:date>2017-04-19T16:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a list of users and Active Directory groups?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339196#M100565</link>
      <description>&lt;P&gt;Hi mlevsh&lt;BR /&gt;
try something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest /services/authentication/users
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 16:27:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339196#M100565</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-04-19T16:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a list of users and Active Directory groups?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339197#M100566</link>
      <description>&lt;P&gt;@cusello Hi Giuseppe, this endpoint shows type of authentication, not the actual AD group&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 17:56:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339197#M100566</guid>
      <dc:creator>mlevsh</dc:creator>
      <dc:date>2017-04-19T17:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a list of users and Active Directory groups?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339198#M100567</link>
      <description>&lt;P&gt;I've had pretty good luck using this Splunk app: &lt;A href="https://splunkbase.splunk.com/app/3177/"&gt;https://splunkbase.splunk.com/app/3177/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Allows you to build lookup tables for users, groups, OUs, etc.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 18:10:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339198#M100567</guid>
      <dc:creator>jpolcari</dc:creator>
      <dc:date>2017-04-19T18:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a list of users and Active Directory groups?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339199#M100568</link>
      <description>&lt;P&gt;maybe something like this for starters:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=&amp;lt;yourIndex&amp;gt; sourcetype=&amp;lt;youtSourcetype&amp;gt; CN=Schema objectCategory=* 
    | dedup distinguishedName 
    | stats list(cn) by DC OU 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;start with verbose search so you can see all the fields you would like to report on&lt;BR /&gt;
also, it is not clear from the  question if you are looking for users who use splunk or to all users in your company connected to AD?&lt;BR /&gt;
I would assume you are looking for users who are in splunk since you mentioned SAML. If that is the case, probably use @cusello answer above and join results from ad search (here) by the field user &lt;BR /&gt;
hope it helps&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 18:35:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339199#M100568</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2017-04-19T18:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a list of users and Active Directory groups?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339200#M100569</link>
      <description>&lt;P&gt;You need this app to mine assets from AD&lt;/P&gt;

&lt;P&gt;&lt;A href="https://splunkbase.splunk.com/app/3059/"&gt;https://splunkbase.splunk.com/app/3059/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 18:47:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339200#M100569</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-04-19T18:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a list of users and Active Directory groups?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339201#M100570</link>
      <description>&lt;P&gt;Do you want this to be based on the SAML response? or their full list of AD Groups in Active Directory?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 18:51:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-list-of-users-and-Active-Directory-groups/m-p/339201#M100570</guid>
      <dc:creator>brreeves_splunk</dc:creator>
      <dc:date>2017-04-19T18:51:00Z</dc:date>
    </item>
  </channel>
</rss>

