Splunk Enterprise

How to find the last change or modification on multiple AD groups?

vttrl123
New Member

I have a csv file containing the SAM accounts of 1200 AD groups and I need to find out the proper search query to find the last date of their modification or change.

Labels (1)
0 Karma

Richfez
SplunkTrust
SplunkTrust
| inputlookup <lookup or filename>
| stats max(<field that's the date field>)

or

| inputlookup <lookup or filename>
| stats max(<field that's the date field>) BY displayName

 

And if you were wanting a more useful way

base search here that returns regular data
| lookup <lookupName> <fieldInLookup> AS <fieldInData> OUTPUT lastUpdate

Which assuming you fix up the lookup name, double-check the fieldInLookup vs. fieldInData order (I always get those backwards!) and change the fieldname 'lastUpdate' to whatever it is in your lookup, will output the lastUpdate for each ... "field" you match on.  Perhaps displayName or something, whatever it is that should match.

This might help:

https://docs.splunk.com/Documentation/SplunkCloud/8.2.2107/SearchReference/Lookup

 

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...