LoFP LoFP / false positives are expected from machines where the default installation path was changed. apply additional filters accordingly.

Techniques

Sample rules

Windows WinRAR Launched Outside Default Installation Directory

Description

This Analytics detects the execution of WinRAR or RAR outside the default installation directory. This behavior can be significant as it could indicate attempts to archive collected sensitive data from the endpoint for exfiltration. We recommend reviewing the process path and the parent process path to determine if the execution is legitimate and if possible validate the data being archived.

Detection logic


| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime
  from datamodel=Endpoint.Processes where
  Processes.process_name IN ("Winrar.exe", "rar.exe")
  NOT Processes.process_path IN (
    "*:\\Program Files (x86)\\WinRAR\\*",
    "*:\\Program Files\\WinRAR\\*"
  )
  by Processes.action Processes.dest Processes.original_file_name Processes.parent_process
  Processes.parent_process_exec Processes.parent_process_guid Processes.parent_process_id
  Processes.parent_process_name Processes.parent_process_path Processes.process Processes.process_exec
  Processes.process_guid Processes.process_hash Processes.process_id Processes.process_integrity_level
  Processes.process_name Processes.process_path Processes.user Processes.user_id Processes.vendor_product

| `drop_dm_object_name(Processes)`

| `security_content_ctime(firstTime)`

| `security_content_ctime(lastTime)`

| `windows_winrar_launched_outside_default_installation_directory_filter`