Splunk Enterprise Security

How do I write the regex to find all SCCM logs that contain dest_name="CN ?

infosecdb
Engager

Hi Everyone,

I am trying to concoct a regular expression in the Splunk App for Enterprise Security to find all SCCM logs that contain dest_name="CN. The results of the search will be sent to an alternate SIEM solution.

  1. The search criteria will begin with dest_name="CN
  2. The characters after CN can be any character, any case, and numeral. For example: dest_name="CNWSNCHHHD001" or dest_name="CNWSEC91CD199".
  3. The remaining characters can be any character or number
  4. Log example:

    "09-01-2015 11:18:59" timestamp=1441120739267, vendor_product="SystemCenterEndpointProtection", type="SecurityIncident", resourceid=67132131, dest_name="CNWSNCHHHD001", dest_nt_domain="REDACTED", detectiontime=1441120739267, actiontime=1441120750000, product_version="4.5.0216.0", detectionid="{REDACTED}", detection_source="realtime", user="REDACTED", target_process="REDACTED", file_path="REDACTED", signature="Virus:DOS/JackTheRipper", severity="Severe", category="Virus", action_type="quarantine", action="deferred", action_result="false", action_error_code=-2147024846, pending_action="noaction"
    (Also, sourcetype should be from sccm:malware)

Any assistance to what I may be doing wrong would be greatly appreciated.

Thanks,
Al Wever

0 Karma

PGrantham
Path Finder

In an adhoc search you could just run:

index=<your index> sourcetype=sccm:malware dest_name="CN*"

If you're trying to extract the characters following the CN you could run:

 index=<your index> sourcetype=sccm:malware dest_name="CN*" | rex field=dest_name "CN(?<dest_name_uid>[^\"]+)"  | table dest_name_uid
Get Updates on the Splunk Community!

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...