cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
TG1
Engaged Sweeper II

Looking to capture AppLocker related events in LANSweeper. Not only for asset reference, but so we can setup event log alerts when certain event id's are found. We've already enabled warning event log capture in the scan settings, but We have yet to see AppLocker in the Asset > Event Log > Event Sources list, nor any entries from machines that have confirmed entries in that log.

Four AppLocker logs in question:

 
 

Screenshot 2024-08-22 135130.png

 

4 REPLIES 4
Mister_Nobody
Honored Sweeper II

My report for SRP:

Select Top 10000000 tblAssets.AssetID,
  tblAssets.AssetName,
  tblAssets.IPAddress,
  tblAssets.Username,
  tblADusers.OU,
  tblNtlogSource.Sourcename,
  tblNtlog.Eventcode,
  tblNtlog.TimeGenerated,
  tblNtlogMessage.Message
From tblAssets
  Inner Join tblNtlog On tblAssets.AssetID = tblNtlog.AssetID
  Inner Join tblNtlogMessage On tblNtlogMessage.MessageID = tblNtlog.MessageID
  Inner Join tblNtlogSource On tblNtlogSource.SourcenameID =
      tblNtlog.SourcenameID And (tblNtlogSource.Sourcename =
        'Microsoft-Windows-SoftwareRestrictionPolicies' Or
        tblNtlogSource.Sourcename = 'Software Restriction Policies')
  Left Join tblADusers On tblADusers.Username = tblAssets.Username
Order By tblNtlog.TimeGenerated Desc
TG1
Engaged Sweeper II

Unfortunately won't be able to adapt that to AppLocker. 

Mister_Nobody
Honored Sweeper II

I think you have to create feture request to support collecting Application and Services Logs.

I'm waiting about 10 years...

TG1
Engaged Sweeper II

I'm guessing that was your original community post I stumbled across that was about 10 years ago.

I'll see what I can do.