FortiSIEM Rules

Agent FIM: Linux Directory Ownership or Permission Changed

Rule ID

PH_Rule_Change_25

Default Status

Enabled

Description

FortiSIEM Linux Agent FIM detected that a directory ownership or permission changed

Severity

7

Category

Change

MITRE ATT&CK® Tactics

Defense Evasion

Defense Evasion consists of techniques that adversaries use to avoid detection throughout their compromise. Techniques used for defense evasion include uninstalling/disabling security software or obfuscating/encrypting data and scripts. Adversaries also leverage and abuse trusted processes to hide and masquerade their malware. Other tactics’ techniques are cross-listed here when those techniques include the added benefit of subverting defenses.

https://attack.mitre.org/tactics/TA0005

MITRE ATT&CK® Techniques


T1222.002

File and Directory Permissions Modification: Linux and Mac File and Directory Permissions Modification

Adversaries may modify file or directory permissions/attributes to evade access control lists (ACLs) and access protected files. Adversaries may use these commands to make themselves the owner of files and directories or change the mode if current permissions allow it. They could subsequently lock others out of the file. Specific file and directory modifications may be a required step for many techniques, such as establishing Persistence via .bash_profile and .bashrc or tainting/hijacking other instrumental binary/configuration files via Hijack Execution Flow.

https://attack.mitre.org/techniques/T1222/002

T1565.001

Data Manipulation: Stored Data Manipulation

Adversaries may insert, delete, or manipulate data at rest in order to manipulate external outcomes or hide activity. Stored data could include a variety of file formats, such as Office files, databases, stored emails, and custom file formats. By manipulating stored data, adversaries may attempt to affect a business process, organizational understanding, and decision making.

https://attack.mitre.org/techniques/T1565/001

Impacts

Server

Data Source

Linux FIM Via FortiSIEM Agent

Detection

Correlation

Remediation Guidance

Make sure it is an authorized change

Time Window

If the following pattern or patterns match an ingested event within the given time window in seconds, trigger an incident.

300 seconds

Trigger Conditions

If the following defined pattern/s occur within a 300 second time window.

FileChange

SubPattern Definitions

SubPattern Name: FileChange

This is the named definition of the event query, this is important if multiple subpatterns are defined to distinguish them.

SubPattern Query

This is the query logic that matches incoming events

eventType = "FSM_LINUX_FILE_ATTRIB_CHANGE" AND targetOsObjType = "Directory"

Group by Attributes

This defines how matching events are aggregated, only events with the same matching attribute values are grouped into one unique incident ID

hostName,targetOsObjName,user,fileOwner,userGrp,userPerm,groupPerm,otherPerm

Aggregate Constraint

This is most typically a numerical constraint that defines when the rule should trigger an incident

COUNT (*) >= 1

Incident Attribute Mapping

This section defines which fields in matching raw events should be mapped to the incident attributes in the resulting incident.

The available raw event attributes to map are limited to the group by attributes and the aggregate event constraint fields for each subpattern

 hostName = FileChange.hostName,
 fileName = FileChange.targetOsObjName,
 user = FileChange.user,
 fileOwner = FileChange.fileOwner,
 userGrp = FileChange.userGrp,
 userPerm = FileChange.userPerm,
 groupPerm = FileChange.groupPerm,
 otherPerm = FileChange.otherPerm