Detection rules › Kusto

Jira - Project roles changed

Status
available
Severity
medium
Time window
1h
Source
github.com/Azure/Azure-Sentinel

'Detects when project roles were changed.'

MITRE ATT&CK coverage

TacticTechniques
Impact

Rule body

id: fb6a8001-fe87-4177-a8f3-df2302215c4f
name: Jira - Project roles changed
description: |
  'Detects when project roles were changed.'
severity: Medium
status: Available
requiredDataConnectors:
  - connectorId: JiraAuditAPI
    dataTypes:
      - JiraAudit
queryFrequency: 1h
queryPeriod: 1h
triggerOperator: gt
triggerThreshold: 0
tactics:
  - Impact
relevantTechniques:
  - T1531
query: |
  JiraAudit
  | where EventMessage =~ 'Project roles changed'
  | project EventCreationTime, ObjectItemName, UserName, SrcIpAddr, AssociatedItems
  | extend AccountCustomEntity = UserName, IPCustomEntity = SrcIpAddr
entityMappings:
  - entityType: Account
    fieldMappings:
      - identifier: Name
        columnName: AccountCustomEntity
  - entityType: IP
    fieldMappings:
      - identifier: Address
        columnName: IPCustomEntity
version: 1.0.0
kind: Scheduled

Stages and Predicates

Stage 1: source

JiraAudit

Stage 2: where

| where EventMessage =~ 'Project roles changed'

Stage 3: project

| project EventCreationTime, ObjectItemName, UserName, SrcIpAddr, AssociatedItems

Stage 4: extend

| extend AccountCustomEntity = UserName, IPCustomEntity = SrcIpAddr

Indicators

These rows show field, operator, and value matches.

Output fields

These fields are emitted when the rule matches.

FieldSource
AssociatedItemsproject
EventCreationTimeproject
ObjectItemNameproject
SrcIpAddrproject
UserNameproject
AccountCustomEntityextend
IPCustomEntityextend